Skip to content
This repository has been archived by the owner on Feb 22, 2024. It is now read-only.

Commit

Permalink
Merge branch 'release/1.6.9' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
dallinb committed Jun 16, 2021
2 parents 6b97170 + b5e66d3 commit 1979fd5
Show file tree
Hide file tree
Showing 7 changed files with 46 additions and 5 deletions.
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion meta/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ galaxy_info:

license: GPLv3

min_ansible_version: 2.10.0
min_ansible_version: 2.10.7

galaxy_tags:
- apache
Expand Down
1 change: 1 addition & 0 deletions molecule/latest/tests/test_supported_platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[flake8]
max-line-length = 120
2 changes: 1 addition & 1 deletion tasks/configure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion vars/main.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
---
# The version of the Cassandra role.
cassandra_role_version: 1.6.8
cassandra_role_version: 1.6.9

0 comments on commit 1979fd5

Please sign in to comment.