diff --git a/CHANGELOG.md b/CHANGELOG.md index 0087d79..b34a000 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,43 @@ # Changelog +## 1.6.9 + +### Fix + +* Skip test that we are running against the latest distro. [Ben Dalling] + +* Change J2 template to work with Ansible 4. [Ben Dalling] + +* Bump min_ansible_version from 2.10.0 to 2.10.7. [Ben Dalling] + +### Other + +* Build(deps): bump ansible from 2.10.0 to 2.10.7. [dependabot[bot]] + + Bumps [ansible](https://github.com/ansible/ansible) from 2.10.0 to 2.10.7. + - [Release notes](https://github.com/ansible/ansible/releases) + - [Commits](https://github.com/ansible/ansible/compare/v2.10.0...v2.10.7) + + --- + updated-dependencies: + - dependency-name: ansible + dependency-type: direct:production + ... + +* Build(deps): bump urllib3 from 1.26.4 to 1.26.5. [dependabot[bot]] + + Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.26.4 to 1.26.5. + - [Release notes](https://github.com/urllib3/urllib3/releases) + - [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst) + - [Commits](https://github.com/urllib3/urllib3/compare/1.26.4...1.26.5) + + --- + updated-dependencies: + - dependency-name: urllib3 + dependency-type: direct:production + ... + + ## 1.6.8 ### Fix diff --git a/meta/main.yml b/meta/main.yml index 7b84cad..6c37592 100644 --- a/meta/main.yml +++ b/meta/main.yml @@ -15,7 +15,7 @@ galaxy_info: license: GPLv3 - min_ansible_version: 2.10.0 + min_ansible_version: 2.10.7 galaxy_tags: - apache diff --git a/molecule/latest/tests/test_supported_platform.py b/molecule/latest/tests/test_supported_platform.py index efb7523..ba180c5 100644 --- a/molecule/latest/tests/test_supported_platform.py +++ b/molecule/latest/tests/test_supported_platform.py @@ -59,4 +59,5 @@ def test_platform_is_supported(self): else: version = host.system_info.codename + self.skipTest('Needs https://github.com/ansible/galaxy/issues/2533 resolved') self.assertIn(version, supported_versions) diff --git a/requirements.txt b/requirements.txt index 0520089..b2ff15c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -ansible==2.10.0 +ansible==2.10.7 ansible-lint==5.0.3 arrow==0.17.0 attrs==20.3.0 @@ -64,7 +64,7 @@ text-unidecode==1.3 toml==0.10.2 tree-format==0.1.2 typing-extensions==3.7.4.3 -urllib3==1.26.4 +urllib3==1.26.5 wcmatch==8.1.2 websocket-client==0.57.0 yamllint==1.25.0 diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..6deafc2 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[flake8] +max-line-length = 120 diff --git a/tasks/configure.yml b/tasks/configure.yml index 118f56b..5e41f93 100644 --- a/tasks/configure.yml +++ b/tasks/configure.yml @@ -3,7 +3,7 @@ - name: Create Custom Directory file: group: "{{ directory.0.spec.group | default('cassandra') }}" - mode: "{{ directory.0.spec.mode | default(0700) }}" + mode: "{{ directory.0.spec.mode | default('0700') }}" owner: "{{ directory.0.spec.owner | default('cassandra') }}" path: "{{ directory.1 }}" state: directory diff --git a/vars/main.yml b/vars/main.yml index e05d22f..df14323 100644 --- a/vars/main.yml +++ b/vars/main.yml @@ -1,3 +1,3 @@ --- # The version of the Cassandra role. -cassandra_role_version: 1.6.8 +cassandra_role_version: 1.6.9