From 17900a9b027930f5297d2b75d929a509aa6926be Mon Sep 17 00:00:00 2001 From: Vladimir Severov Date: Fri, 30 Jul 2021 20:17:12 +0300 Subject: [PATCH] Release 1.11.0 (#376) --- CHANGELOG.md | 4 ++++ README.md | 2 +- library/cartridge_validate_config.py | 4 ++++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c473987a..b6a1cbd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ Please update `ansible-galaxy install` command in README.md to use the newest tag with new release --> +## [1.11.0] - 2021-07-30 + ### Added - Step `cleanup_instance_files` to clean up data of stopped instance @@ -17,6 +19,7 @@ README.md to use the newest tag with new release - Add `instances_from_same_machine` variable in preparation - Add `check_new_topology` step to compare inventory and real cluster topology - Availability to disable instances via `disabled` flag +- Add `backup`, `backup_start`, `backup_stop` and `restore` steps to back up and restore instances ### Changed @@ -26,6 +29,7 @@ README.md to use the newest tag with new release - Long facts caching when playbook has two or more role imports - Now select control instance task ignores bad instances from membership +- Fix instance joining when leader is not first ## [1.10.0] - 2021-06-04 diff --git a/README.md b/README.md index 99fefd64..9b4ee9b1 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Note that running the role may require First, you need to install this role using `ansible-galaxy`: ```bash -$ ansible-galaxy install tarantool.cartridge,1.10.0 +$ ansible-galaxy install tarantool.cartridge,1.11.0 ``` ## Quick start diff --git a/library/cartridge_validate_config.py b/library/cartridge_validate_config.py index fc6b5a4c..44805a06 100644 --- a/library/cartridge_validate_config.py +++ b/library/cartridge_validate_config.py @@ -668,6 +668,10 @@ def validate_config(params): "Use 'cartridge_failover_params' instead." ) + warnings.append( + "Since 2.0.0 all variables without prefix will be prefixed with 'tc_', " + "prefix 'cartridge_' will be replaced by 'tc_'." + ) return helpers.ModuleRes(changed=False, warnings=warnings)