Note that, while we're no longer including them as part of the `execute_release_2.2.0_tasks` task, we're keeping the tasks to remove duplicate poll voters and poll options just in case there are some unexpected issues when adding a unique database index while upgrading to version 2.3.0. We'll remove them in version 2.4.0.
11 lines
416 B
Ruby
11 lines
416 B
Ruby
namespace :consul do
|
|
desc "Runs tasks needed to upgrade to the latest version"
|
|
task execute_release_tasks: ["settings:rename_setting_keys",
|
|
"settings:add_new_settings",
|
|
"cache:clear",
|
|
"execute_release_2.3.0_tasks"]
|
|
|
|
desc "Runs tasks needed to upgrade from 2.2.2 to 2.3.0"
|
|
task "execute_release_2.3.0_tasks": []
|
|
end
|