From 786651482bee87a7f22fbb11ef8a9642b8e32541 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 29 Mar 2022 22:03:13 +0000 Subject: [PATCH 1/5] build(deps): bump paramiko from 2.8.0 to 2.10.1 Bumps [paramiko](https://github.com/paramiko/paramiko) from 2.8.0 to 2.10.1. - [Release notes](https://github.com/paramiko/paramiko/releases) - [Changelog](https://github.com/paramiko/paramiko/blob/main/NEWS) - [Commits](https://github.com/paramiko/paramiko/compare/2.8.0...2.10.1) --- updated-dependencies: - dependency-name: paramiko dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 2cc4d46..a510371 100644 --- a/requirements.txt +++ b/requirements.txt @@ -32,7 +32,7 @@ molecule==3.5.2 molecule-docker==1.1.0 packaging==21.2 parameterized==0.8.1 -paramiko==2.8.0 +paramiko==2.10.1 pathspec==0.9.0 pluggy==1.0.0 poyo==0.5.0 From f5867b3c45458d5bd25ba8b6895f0c185aca9cd9 Mon Sep 17 00:00:00 2001 From: Ben Dalling Date: Mon, 4 Apr 2022 19:02:49 +0100 Subject: [PATCH 2/5] fix: Fully qualify the collection name for builtin actions. --- handlers/main.yml | 2 +- molecule/combine_cluster/converge.yml | 8 ++++---- molecule/default/converge.yml | 12 ++++++------ molecule/default/prepare.yml | 4 ++-- molecule/latest/converge.yml | 12 ++++++------ molecule/latest/prepare.yml | 2 +- tasks/assertions.yml | 4 ++-- tasks/configure.yml | 10 +++++----- tasks/hotfixes.yml | 4 ++-- tasks/install/Debian.yml | 6 +++--- tasks/install/RedHat.yml | 6 +++--- tasks/join_cluster.yml | 12 ++++++------ tasks/service.yml | 6 +++--- tasks/variables.yml | 20 ++++++++++---------- 14 files changed, 54 insertions(+), 54 deletions(-) diff --git a/handlers/main.yml b/handlers/main.yml index 511d13b..de36936 100644 --- a/handlers/main.yml +++ b/handlers/main.yml @@ -1,7 +1,7 @@ # handlers file for cassandra --- - name: cassandra_restart_service - service: + ansible.builtin.service: name: cassandra state: restarted enabled: "{{ cassandra_service_enabled }}" diff --git a/molecule/combine_cluster/converge.yml b/molecule/combine_cluster/converge.yml index f92d385..c4aa205 100644 --- a/molecule/combine_cluster/converge.yml +++ b/molecule/combine_cluster/converge.yml @@ -69,19 +69,19 @@ post_tasks: - name: Wait for the Cassandra Listener - wait_for: + ansible.builtin.wait_for: host: "{{ ansible_default_ipv4.address }}" port: 9042 when: not ansible_check_mode - name: Wait for the Cassandra to Gossip - wait_for: + ansible.builtin.wait_for: host: "{{ ansible_default_ipv4.address }}" port: 9160 when: not ansible_check_mode - name: Wait for the Cassandra Service to be Running (Red Hat) - service_facts: + ansible.builtin.service_facts: retries: 100 delay: 3 register: cassandra_services_facts @@ -95,7 +95,7 @@ - ansible_distribution != "Fedora" - name: Wait for the Cassandra Service to be Running (Debian) - service_facts: + ansible.builtin.service_facts: retries: 100 delay: 3 register: cassandra_services_facts diff --git a/molecule/default/converge.yml b/molecule/default/converge.yml index f09785a..3a92bc9 100644 --- a/molecule/default/converge.yml +++ b/molecule/default/converge.yml @@ -64,14 +64,14 @@ pre_tasks: - name: Set Variables for Clustered Nodes - set_fact: + ansible.builtin.set_fact: cassandra_cluster_name: MyCassandraCluster cassandra_join_cluster: True cassandra_seed: "{{ hostvars[groups['cassandra'][0]]['ansible_default_ipv4'].address }}" when: "'clustered' in group_names" - name: Set Variables for Standalone Nodes - set_fact: + ansible.builtin.set_fact: cassandra_cluster_name: Standalone cassandra_seed: "{{ ansible_default_ipv4.address }}" when: "'standalone' is in group_names" @@ -81,19 +81,19 @@ post_tasks: - name: Wait for the Cassandra Listener - wait_for: + ansible.builtin.wait_for: host: "{{ ansible_default_ipv4.address }}" port: 9042 when: not ansible_check_mode - name: Wait for the Cassandra to Gossip - wait_for: + ansible.builtin.wait_for: host: "{{ ansible_default_ipv4.address }}" port: 9160 when: not ansible_check_mode - name: Wait for the Cassandra Service to be Running (Red Hat) - service_facts: + ansible.builtin.service_facts: retries: 100 delay: 3 register: cassandra_services_facts @@ -107,7 +107,7 @@ - ansible_distribution != "Fedora" - name: Wait for the Cassandra Service to be Running (Debian) - service_facts: + ansible.builtin.service_facts: retries: 100 delay: 3 register: cassandra_services_facts diff --git a/molecule/default/prepare.yml b/molecule/default/prepare.yml index 195c8f8..1425937 100644 --- a/molecule/default/prepare.yml +++ b/molecule/default/prepare.yml @@ -14,9 +14,9 @@ tasks: - name: Display Host Information - debug: + ansible.builtin.debug: var: instance_info - name: Display Ansible Facts - debug: + ansible.builtin.debug: var: ansible_facts diff --git a/molecule/latest/converge.yml b/molecule/latest/converge.yml index 3471b68..45c4142 100644 --- a/molecule/latest/converge.yml +++ b/molecule/latest/converge.yml @@ -61,14 +61,14 @@ pre_tasks: - name: Set Variables for Clustered Nodes - set_fact: + ansible.builtin.set_fact: cassandra_cluster_name: MyCassandraCluster cassandra_join_cluster: False cassandra_seed: "{{ hostvars[groups['cassandra'][0]]['ansible_default_ipv4'].address }}" when: "'clustered' in group_names" - name: Set Variables for Standalone Nodes - set_fact: + ansible.builtin.set_fact: cassandra_cluster_name: Standalone cassandra_seed: "{{ ansible_default_ipv4.address }}" when: "'standalone' is in group_names" @@ -78,19 +78,19 @@ post_tasks: - name: Wait for the Cassandra Listener - wait_for: + ansible.builtin.wait_for: host: "{{ ansible_default_ipv4.address }}" port: 9042 when: not ansible_check_mode - name: Wait for the Cassandra to Gossip - wait_for: + ansible.builtin.wait_for: host: "{{ ansible_default_ipv4.address }}" port: 9160 when: not ansible_check_mode - name: Wait for the Cassandra Service to be Running (Red Hat) - service_facts: + ansible.builtin.service_facts: retries: 100 delay: 3 register: cassandra_services_facts @@ -104,7 +104,7 @@ - ansible_distribution != "Fedora" - name: Wait for the Cassandra Service to be Running (Debian) - service_facts: + ansible.builtin.service_facts: retries: 100 delay: 3 register: cassandra_services_facts diff --git a/molecule/latest/prepare.yml b/molecule/latest/prepare.yml index 76da6e7..959ea63 100644 --- a/molecule/latest/prepare.yml +++ b/molecule/latest/prepare.yml @@ -14,5 +14,5 @@ tasks: - name: Display Host Information - debug: + ansible.builtin.debug: var: instance_info diff --git a/tasks/assertions.yml b/tasks/assertions.yml index e90beef..b27fc70 100644 --- a/tasks/assertions.yml +++ b/tasks/assertions.yml @@ -1,13 +1,13 @@ --- - name: Check OS is supported - assert: + ansible.builtin.assert: that: - ansible_os_family | default('') is in ['Debian', "RedHat"] fail_msg: "unsupported OS ({{ ansible_os_family | d(None) }}) or facts not gathered" - name: Check use of deprecated variables - debug: + ansible.builtin.debug: msg: "{{ variable.name }} is deprecated; use {{ variable.replacement }} instead" when: lookup('vars', variable.name, default='') | length loop: "{{ deprecated_variables }}" diff --git a/tasks/configure.yml b/tasks/configure.yml index 1edfecc..cb7911a 100644 --- a/tasks/configure.yml +++ b/tasks/configure.yml @@ -1,7 +1,7 @@ --- - name: Create Custom Directory - file: + ansible.builtin.file: group: "{{ directory.0.spec.group | default('cassandra') }}" mode: "{{ directory.0.spec.mode | default('0700') }}" owner: "{{ directory.0.spec.owner | default('cassandra') }}" @@ -17,7 +17,7 @@ - cassandra_directories is defined - name: Apply Cassandra Configuration - template: + ansible.builtin.template: src: "{{ cassandra_configuration_templ }}" dest: "{{ cassandra_configuration_file }}" owner: root @@ -27,7 +27,7 @@ - cassandra_restart_service - name: Apply Regular Expression Updates to the Configuration - lineinfile: + ansible.builtin.lineinfile: line: "{{ item.line }}" path: "{{ cassandra_configuration_directory }}/{{ item.path }}" regexp: "{{ item.regexp }}" @@ -38,7 +38,7 @@ - cassandra_restart_service - name: Set the DC for Cassandra - lineinfile: + ansible.builtin.lineinfile: dest: "{{ cassandra_configuration_file | dirname }}/cassandra-rackdc.properties" regexp: '^dc=' line: "dc={{ cassandra_dc }}" @@ -49,7 +49,7 @@ - cassandra_restart_service - name: Set the Rack for Cassandra - lineinfile: + ansible.builtin.lineinfile: dest: "{{ cassandra_configuration_file | dirname }}/cassandra-rackdc.properties" regexp: '^rack=' line: "rack={{ cassandra_rack }}" diff --git a/tasks/hotfixes.yml b/tasks/hotfixes.yml index 7dd49f1..bfa57a0 100644 --- a/tasks/hotfixes.yml +++ b/tasks/hotfixes.yml @@ -1,7 +1,7 @@ --- - name: CASSANDRA-15770 Workaround - lineinfile: + ansible.builtin.lineinfile: line: ' start-stop-daemon -K -u cassandra -p "$PIDFILE" -R TERM/30/KILL/5 >/dev/null' path: /etc/init.d/cassandra regexp: '^.*start-stop-daemon -K.*$' @@ -10,7 +10,7 @@ - not ansible_check_mode - name: CASSANDRA-2356 Workaround - shell: rm -rf /var/lib/cassandra/* # noqa 302 + ansible.builtin.shell: rm -rf /var/lib/cassandra/* # noqa 302 when: - cassandra_2356_workaround | bool - not ansible_check_mode diff --git a/tasks/install/Debian.yml b/tasks/install/Debian.yml index b49c471..9e466d5 100644 --- a/tasks/install/Debian.yml +++ b/tasks/install/Debian.yml @@ -1,7 +1,7 @@ --- - name: Add the Apache Apt Keys - apt_key: + ansible.builtin.apt_key: url: https://downloads.apache.org/cassandra/KEYS register: cassandra_remote_status until: cassandra_remote_status is succeeded @@ -11,7 +11,7 @@ - cassandra_configure_apache_repo|bool - name: Configure the Apache Cassandra Apt Repository - apt_repository: + ansible.builtin.apt_repository: filename: /etc/apt/sources.list.d/cassandra.sources repo: "deb http://www.apache.org/dist/cassandra/debian {{ cassandra_repo_apache_release }} main" state: present @@ -19,7 +19,7 @@ - cassandra_configure_apache_repo|bool - name: Install the Cassandra Package (Apt) - apt: + ansible.builtin.apt: name: "{{ cassandra_package }}" cache_valid_time: 600 register: cassandra_remote_status diff --git a/tasks/install/RedHat.yml b/tasks/install/RedHat.yml index 707f1ae..a2b8431 100644 --- a/tasks/install/RedHat.yml +++ b/tasks/install/RedHat.yml @@ -1,7 +1,7 @@ --- - name: Configure the Apache Cassandra YUM Repository - yum_repository: + ansible.builtin.yum_repository: name: cassandra baseurl: "https://www.apache.org/dist/cassandra/redhat/{{ cassandra_repo_apache_release }}/" gpgcheck: true @@ -14,7 +14,7 @@ - name: Install the Cassandra Package (YUM) # Retries are in this as the cache has been seen to still be updating when # this task gets to be executed. - yum: + ansible.builtin.yum: name: "{{ cassandra_package }}" update_cache: true delay: "{{ cassandra_task_delay }}" @@ -29,7 +29,7 @@ - name: Install the Cassandra Package (Package) # Retries are in this as the cache has been seen to still be updating when # this task gets to be executed. - package: + ansible.builtin.package: name: "{{ cassandra_package }}" delay: "{{ cassandra_task_delay }}" retries: "{{ cassandra_task_retries }}" diff --git a/tasks/join_cluster.yml b/tasks/join_cluster.yml index 894b459..12810bb 100644 --- a/tasks/join_cluster.yml +++ b/tasks/join_cluster.yml @@ -2,20 +2,20 @@ # Tasks for adding a standalone cluster to an existing cluster. - name: Get Current Node Count If Available - shell: + ansible.builtin.shell: cmd: nodetool status | awk '/^(U|D)(N|L|J|M)/{print $2}' | wc -l register: cassandra_nodetool_output changed_when: false check_mode: false - name: Store Current Node Count - set_fact: + ansible.builtin.set_fact: cassandra_node_count: "{{ cassandra_nodetool_output.stdout }}" when: - not ansible_check_mode - name: Stop Cassandra (RedHat) - systemd: + ansible.builtin.systemd: name: cassandra state: stopped when: @@ -25,7 +25,7 @@ - ansible_os_family == 'RedHat' - name: Stop Cassandra (Debian) - service: + ansible.builtin.service: name: cassandra state: stopped when: @@ -35,7 +35,7 @@ - ansible_os_family == 'Debian' - name: Clean Cassandra Data Directory - file: + ansible.builtin.file: state: absent path: "{{ cassandra_path }}/" when: @@ -45,7 +45,7 @@ - cassandra_directories is not defined - name: Clean Cassandra Data Directories - file: + ansible.builtin.file: state: absent path: "{{ item }}" with_items: "{{ cassandra_directories.data.paths }}" diff --git a/tasks/service.yml b/tasks/service.yml index e1e5761..4a10bdc 100644 --- a/tasks/service.yml +++ b/tasks/service.yml @@ -1,7 +1,7 @@ --- - name: Systemd Workaround - template: + ansible.builtin.template: src: "{{ cassandra_systemd_template }}" dest: "{{ cassandra_systemd_path }}" owner: root @@ -12,7 +12,7 @@ - cassandra_restart_service - name: Ensure the Service is in the Required State (RedHat) - systemd: + ansible.builtin.systemd: name: cassandra enabled: "{{ cassandra_service_enabled }}" daemon_reload: yes @@ -22,7 +22,7 @@ - ansible_os_family == 'RedHat' - name: Ensure the Service is in the Required State (Debian) - service: + ansible.builtin.service: name: cassandra enabled: "{{ cassandra_service_enabled }}" state: "{{ cassandra_service_state }}" diff --git a/tasks/variables.yml b/tasks/variables.yml index da1f536..520b4de 100644 --- a/tasks/variables.yml +++ b/tasks/variables.yml @@ -1,34 +1,34 @@ --- - name: Include OS specific facts - include_vars: + ansible.builtin.include_vars: file: "{{ ansible_os_family }}.yml" - name: Set cassandra_configuration_file if not defined - set_fact: + ansible.builtin.set_fact: cassandra_configuration_file: "{{ _cassandra_configuration_file }}" when: cassandra_configuration_file is not defined - name: Derive cassandra_configuration_directory - set_fact: + ansible.builtin.set_fact: cassandra_configuration_directory: "{{ cassandra_configuration_file | dirname }}" - name: Set default value for cassandra_memtotal_mb - set_fact: + ansible.builtin.set_fact: cassandra_memtotal_mb: "{{ ansible_memtotal_mb }}" when: - ansible_memtotal_mb is defined - cassandra_memtotal_mb is not defined - name: Set default value for cassandra_processor_vcpus - set_fact: + ansible.builtin.set_fact: cassandra_processor_vcpus: "{{ ansible_processor_vcpus }}" when: - ansible_processor_vcpus is defined - cassandra_processor_vcpus is not defined - name: Calculate cassandra_cms_max_heapsize_mb - set_fact: + ansible.builtin.set_fact: cassandra_cms_max_heapsize_mb: "{{ [ ([cassandra_memtotal_mb * 0.5, 1024] | min), @@ -39,7 +39,7 @@ - cassandra_cms_max_heapsize_mb is not defined - name: Calculate cassandra_max_heapsize_mb - set_fact: + ansible.builtin.set_fact: cassandra_max_heapsize_mb: "{{ [ ([cassandra_memtotal_mb * 0.5, 1024] | min), @@ -50,7 +50,7 @@ - cassandra_max_heapsize_mb is not defined - name: Calculate cassandra_cms_heap_new_size_mb - set_fact: + ansible.builtin.set_fact: cassandra_cms_heap_new_size_mb: "{{ [ (cassandra_processor_vcpus * 100.0), @@ -62,7 +62,7 @@ - cassandra_cms_heap_new_size_mb is not defined - name: Calculate cassandra_heap_new_size_mb - set_fact: + ansible.builtin.set_fact: cassandra_heap_new_size_mb: "{{ [ (cassandra_processor_vcpus * 100.0), @@ -74,7 +74,7 @@ - cassandra_heap_new_size_mb is not defined - name: Debug Custom Facts - debug: + ansible.builtin.debug: msg: { 'ansible_memtotal_mb': "{{ ansible_memtotal_mb }}", 'ansible_processor_vcpus': "{{ ansible_processor_vcpus }}", From 93a6798e7455fe39fa7504bfe4c6d9bc4e887012 Mon Sep 17 00:00:00 2001 From: Ben Dalling Date: Mon, 4 Apr 2022 19:03:08 +0100 Subject: [PATCH 3/5] chg: Update the Python packages. --- requirements.txt | 60 +++++++++++++++++++++++------------------------- 1 file changed, 29 insertions(+), 31 deletions(-) diff --git a/requirements.txt b/requirements.txt index a510371..34046f3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,9 +1,9 @@ -ansible==4.8.0 -ansible-compat==0.5.0 -ansible-core==2.11.6 -ansible-lint==5.2.1 -arrow==1.2.1 -attrs==21.2.0 +ansible==5.5.0 +ansible-compat==2.0.2 +ansible-core==2.12.4 +ansible-lint==6.0.2 +arrow==1.2.2 +attrs==21.4.0 bcrypt==3.2.0 binaryornot==0.4.4 bracex==2.2.1 @@ -11,28 +11,27 @@ Cerberus==1.3.2 certifi==2021.10.8 cffi==1.15.0 chardet==4.0.0 -charset-normalizer==2.0.7 -click==8.0.3 +charset-normalizer==2.0.12 +click==8.1.2 click-help-colors==0.9.1 -colorama==0.4.4 commonmark==0.9.1 cookiecutter==1.7.3 -cryptography==35.0.0 +cryptography==36.0.2 docker==5.0.3 -enrich==1.2.6 +enrich==1.2.7 flake8==4.0.1 gitchangelog==3.0.4 idna==3.3 iniconfig==1.1.1 -Jinja2==3.0.3 +Jinja2==3.1.1 jinja2-time==0.2.0 -MarkupSafe==2.0.1 +MarkupSafe==2.1.1 mccabe==0.6.1 -molecule==3.5.2 +molecule==3.6.1 molecule-docker==1.1.0 -packaging==21.2 +packaging==21.3 parameterized==0.8.1 -paramiko==2.10.1 +paramiko==2.10.3 pathspec==0.9.0 pluggy==1.0.0 poyo==0.5.0 @@ -40,26 +39,25 @@ py==1.11.0 pycodestyle==2.8.0 pycparser==2.21 pyflakes==2.4.0 -Pygments==2.10.0 -PyNaCl==1.4.0 -pyparsing==2.4.7 -pystache==0.5.4 -pytest==6.2.5 -pytest-testinfra==6.4.0 +Pygments==2.11.2 +PyNaCl==1.5.0 +pyparsing==3.0.7 +pytest==7.1.1 +pytest-testinfra==6.6.0 python-dateutil==2.8.2 -python-slugify==5.0.2 -PyYAML==5.4.1 -requests==2.26.0 +python-slugify==6.1.1 +PyYAML==6.0 +requests==2.27.1 resolvelib==0.5.4 -rich==10.13.0 -ruamel.yaml==0.17.17 +rich==12.1.0 +ruamel.yaml==0.17.21 ruamel.yaml.clib==0.2.6 six==1.16.0 subprocess-tee==0.3.5 -tenacity==8.0.1 text-unidecode==1.3 -toml==0.10.2 -urllib3==1.26.7 +tomli==2.0.1 +typing_extensions==4.1.1 +urllib3==1.26.9 wcmatch==8.3 -websocket-client==1.2.1 +websocket-client==1.3.2 yamllint==1.26.3 From 0f0f3ea6f1af07043a4306172f5f0d095f48925b Mon Sep 17 00:00:00 2001 From: Ben Dalling Date: Mon, 4 Apr 2022 19:51:32 +0100 Subject: [PATCH 4/5] chg: Update metadata now that we have tested against Fedora 35. --- meta/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/main.yml b/meta/main.yml index e5bddee..611dd53 100644 --- a/meta/main.yml +++ b/meta/main.yml @@ -52,5 +52,6 @@ galaxy_info: - 32 # https://github.com/ansible/galaxy/issues/2356 - 33 # https://github.com/ansible/galaxy/issues/2533 - 34 + - 35 dependencies: [] From b7fb58f8e4a73789cc1bf1313d9e49b152fe754f Mon Sep 17 00:00:00 2001 From: Ben Dalling Date: Mon, 4 Apr 2022 20:05:54 +0100 Subject: [PATCH 5/5] chg: doc: Release 1.16.14. !minor --- .gitchangelog.rc | 26 ++++++++++++++++++++++++-- CHANGELOG.md | 28 ++++++++++++++++++++++++++++ requirements.txt | 1 + vars/main.yml | 2 +- 4 files changed, 54 insertions(+), 3 deletions(-) diff --git a/.gitchangelog.rc b/.gitchangelog.rc index d78aed6..c7e3912 100644 --- a/.gitchangelog.rc +++ b/.gitchangelog.rc @@ -151,9 +151,31 @@ output_engine = mustache("markdown") include_merge = False log_encoding = 'utf-8' OUTPUT_FILE = "CHANGELOG.md" -INSERT_POINT_REGEX = r'(\#\#\s*)' -revs = ['^1.6.10', 'HEAD'] +INSERT_POINT_REGEX = r'''(?isxu) +^ +( + \s*\#\s+Changelog\s*(\n|\r\n|\r) ## ``Changelog`` line +) + +( ## Match all between changelog and release rev + ( + (?! + (?<=(\n|\r)) ## look back for newline + \#\#\s+%(rev)s ## revision + \s+ + \([0-9]+-[0-9]{2}-[0-9]{2}\)(\n|\r\n|\r) ## date + ) + . + )* +) +(?P\#\#\s+(?P%(rev)s)) +''' % {'rev': r"[0-9]+\.[0-9]+(\.[0-9]+)?"} + +revs = [ + Caret(FileFirstRegexMatch(OUTPUT_FILE, INSERT_POINT_REGEX)), + 'HEAD' +] publish = FileInsertAtFirstRegexMatch( OUTPUT_FILE, INSERT_POINT_REGEX, idx=lambda m: m.start(1) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8419d08..c6fd094 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,33 @@ # Changelog +## 1.6.14 + +### Changes + +* Update metadata now that we have tested against Fedora 35. [Ben Dalling] + +* Update the Python packages. [Ben Dalling] + +### Fix + +* Fully qualify the collection name for builtin actions. [Ben Dalling] + +### Other + +* Build(deps): bump paramiko from 2.8.0 to 2.10.1. [dependabot[bot]] + + Bumps [paramiko](https://github.com/paramiko/paramiko) from 2.8.0 to 2.10.1. + - [Release notes](https://github.com/paramiko/paramiko/releases) + - [Changelog](https://github.com/paramiko/paramiko/blob/main/NEWS) + - [Commits](https://github.com/paramiko/paramiko/compare/2.8.0...2.10.1) + + --- + updated-dependencies: + - dependency-name: paramiko + dependency-type: direct:production + ... + + ## 1.6.13 ### New diff --git a/requirements.txt b/requirements.txt index 34046f3..199c47f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -42,6 +42,7 @@ pyflakes==2.4.0 Pygments==2.11.2 PyNaCl==1.5.0 pyparsing==3.0.7 +pystache==0.6.0 pytest==7.1.1 pytest-testinfra==6.6.0 python-dateutil==2.8.2 diff --git a/vars/main.yml b/vars/main.yml index 2690955..c5c260b 100644 --- a/vars/main.yml +++ b/vars/main.yml @@ -1,3 +1,3 @@ --- # The version of the Cassandra role. -cassandra_role_version: 1.6.13 +cassandra_role_version: 1.6.14