From f76c57b1ec9fd994d759c058eb16c4456790b6a6 Mon Sep 17 00:00:00 2001 From: AlanCoding Date: Thu, 18 Jun 2020 15:10:10 -0400 Subject: [PATCH 1/3] Bump AWX version, after notable inventory deprecation --- CHANGELOG.md | 5 +++++ VERSION | 2 +- awxkit/VERSION | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0d4a1b10b..a74e91c2ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ This is a list of high-level changes for each release of AWX. A full list of commits can be found at `https://github.com/ansible/awx/releases/tag/`. +## 13.0.0 (Jun 19, 2020) +- Removed scripts as a means of running inventory updates of built-in types (https://github.com/ansible/awx/pull/6911) +- Ansible 2.8 is now unsupported. Some inventory source types are known to no longer work. +- Fixed an issue where the vmware inventory source ssl_verify source variable was not recognized (https://github.com/ansible/awx/pull/7360) + ## 12.0.0 (Jun 9, 2020) - Removed memcached as a dependency of AWX (https://github.com/ansible/awx/pull/7240) - Moved to a single container image build instead of separate awx_web and awx_task images. The container image is just `awx` (https://github.com/ansible/awx/pull/7228) diff --git a/VERSION b/VERSION index 4044f90867..02161ca86e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -12.0.0 +13.0.0 diff --git a/awxkit/VERSION b/awxkit/VERSION index 4044f90867..02161ca86e 100644 --- a/awxkit/VERSION +++ b/awxkit/VERSION @@ -1 +1 @@ -12.0.0 +13.0.0 From d8b9d483134ca5d4330768f3c973d9ac41db1c63 Mon Sep 17 00:00:00 2001 From: Jeff Bradberry Date: Tue, 23 Jun 2020 10:09:32 -0400 Subject: [PATCH 2/3] Add a note about import/export --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a74e91c2ad..dd371e1683 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,11 @@ This is a list of high-level changes for each release of AWX. A full list of commits can be found at `https://github.com/ansible/awx/releases/tag/`. -## 13.0.0 (Jun 19, 2020) +## 13.0.0 (Jun 23, 2020) - Removed scripts as a means of running inventory updates of built-in types (https://github.com/ansible/awx/pull/6911) - Ansible 2.8 is now unsupported. Some inventory source types are known to no longer work. - Fixed an issue where the vmware inventory source ssl_verify source variable was not recognized (https://github.com/ansible/awx/pull/7360) +- Added import and export subcommands to the awx-cli tool, replacing send and receive from the old tower-cli (https://github.com/ansible/awx/pull/6125). ## 12.0.0 (Jun 9, 2020) - Removed memcached as a dependency of AWX (https://github.com/ansible/awx/pull/7240) From d016de81033c3f1cee35c51060c3cda4757cbe9e Mon Sep 17 00:00:00 2001 From: Ryan Petrello Date: Tue, 23 Jun 2020 11:24:22 -0400 Subject: [PATCH 3/3] adding a few CHANGELOG items --- CHANGELOG.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dd371e1683..7fa6ea830a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,10 +3,12 @@ This is a list of high-level changes for each release of AWX. A full list of commits can be found at `https://github.com/ansible/awx/releases/tag/`. ## 13.0.0 (Jun 23, 2020) -- Removed scripts as a means of running inventory updates of built-in types (https://github.com/ansible/awx/pull/6911) -- Ansible 2.8 is now unsupported. Some inventory source types are known to no longer work. -- Fixed an issue where the vmware inventory source ssl_verify source variable was not recognized (https://github.com/ansible/awx/pull/7360) - Added import and export subcommands to the awx-cli tool, replacing send and receive from the old tower-cli (https://github.com/ansible/awx/pull/6125). +- Removed scripts as a means of running inventory updates of built-in types (https://github.com/ansible/awx/pull/6911) +- Ansible 2.8 is now partially unsupported; some inventory source types are known to no longer work. +- Fixed an issue where the vmware inventory source ssl_verify source variable was not recognized (https://github.com/ansible/awx/pull/7360) +- Fixed a bug that caused redis' listen socket to have too-permissive file permissions (https://github.com/ansible/awx/pull/7317) +- Fixed a bug that caused rsyslogd's configuration file to have world-readable file permissions, potentially leaking secrets (CVE-2020-10782) ## 12.0.0 (Jun 9, 2020) - Removed memcached as a dependency of AWX (https://github.com/ansible/awx/pull/7240)