diff --git a/CHANGES/1160.misc b/CHANGES/1160.misc deleted file mode 100644 index 7f874962c..000000000 --- a/CHANGES/1160.misc +++ /dev/null @@ -1 +0,0 @@ -Add CentOS 9 on packages-upgrade diff --git a/CHANGES/1175.bugfix b/CHANGES/1175.bugfix deleted file mode 100644 index 09031e4d3..000000000 --- a/CHANGES/1175.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed requirements.in file diff --git a/CHANGES/1182.bugfix b/CHANGES/1182.bugfix deleted file mode 100644 index f339be9fc..000000000 --- a/CHANGES/1182.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix gnutls error on the webserver `Peer's certificate does not allow digital signatures. Key usage violation detected.` by adding the key_usage digitalSignature to the CSR. diff --git a/CHANGES/1186.bugfix b/CHANGES/1186.bugfix deleted file mode 100644 index 957597550..000000000 --- a/CHANGES/1186.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix an issue where by the pulp_webserver role would fail on "Copy Snippets" if it were run after pulp_devel is run. diff --git a/CHANGES/1202.bugfix b/CHANGES/1202.bugfix deleted file mode 100644 index 8358737b0..000000000 --- a/CHANGES/1202.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix failure on the task `pulp_webserver : Copy snippets from the pulp_database_config host` when there is extra output on stdout in the prior task `pulp_webserver: Identify Nginx snippets on the pulp_database_config`. diff --git a/CHANGES/1203.misc b/CHANGES/1203.misc deleted file mode 100644 index 7d0340ff6..000000000 --- a/CHANGES/1203.misc +++ /dev/null @@ -1 +0,0 @@ -Ensure LDAP support for galaxy diff --git a/docs/CHANGES.md b/docs/CHANGES.md index 0842672f1..4c452ce7c 100644 --- a/docs/CHANGES.md +++ b/docs/CHANGES.md @@ -13,6 +13,32 @@ Changelog +3.20.0 (2022-06-24) +=================== + + +Bugfixes +-------- + +- Fixed requirements.in file + [#1175](https://github.com/pulp/pulp_installer/issues/1175) +- Fix gnutls error on the webserver `Peer's certificate does not allow digital signatures. Key usage violation detected.` by adding the key_usage digitalSignature to the CSR. + [#1182](https://github.com/pulp/pulp_installer/issues/1182) +- Fix an issue where by the pulp_webserver role would fail on "Copy Snippets" if it were run after pulp_devel is run. + [#1186](https://github.com/pulp/pulp_installer/issues/1186) +- Fix failure on the task `pulp_webserver : Copy snippets from the pulp_database_config host` when there is extra output on stdout in the prior task `pulp_webserver: Identify Nginx snippets on the pulp_database_config`. + [#1202](https://github.com/pulp/pulp_installer/issues/1202) + + +Misc +---- + +- [#1160](https://github.com/pulp/pulp_installer/issues/1160), [#1203](https://github.com/pulp/pulp_installer/issues/1203) + + +---- + + 3.19.5 (2022-06-15) Bugfixes diff --git a/docs/index.md b/docs/index.md index c9b9b4744..0e73d2d15 100644 --- a/docs/index.md +++ b/docs/index.md @@ -5,11 +5,11 @@ The Pulp 3 Ansible installer is a collection of Ansible roles that you can use t Each Ansible role installs and configures a component of Pulp. -This version of the installer, 3.19.5, installs the latest release of pulpcore 3.19.z. +This version of the installer, 3.20.0, installs the latest release of pulpcore 3.20.z. -If run against an older version of Pulp 3, it will upgrade it to 3.19.z. +If run against an older version of Pulp 3, it will upgrade it to 3.20.z. -If run again, the installed version of pulpcore 3.19 is not updated unless `pulpcore_update` is set to `true`. +If run again, the installed version of pulpcore 3.20 is not updated unless `pulpcore_update` is set to `true`. --- **Didn't find what you need to get started?** diff --git a/galaxy.yml b/galaxy.yml index 53b0c4f1a..4a353fab1 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -10,7 +10,7 @@ namespace: pulp name: pulp_installer # The version of the collection. Must be compatible with semantic versioning -version: 3.19.5 +version: 3.20.0 # The path to the Markdown (.md) readme file. This path is relative to the root of the collection readme: README.md diff --git a/molecule/release-static/group_vars/all b/molecule/release-static/group_vars/all index 49392a24b..14129458b 100644 --- a/molecule/release-static/group_vars/all +++ b/molecule/release-static/group_vars/all @@ -16,7 +16,7 @@ pulp_install_plugins: extras: - VitaminC - VitaminD - version: "1.10.2" + version: "1.10.3" # pulp-gem: # pulp-maven: # pulp-npm: diff --git a/roles/pulp_common/vars/main.yml b/roles/pulp_common/vars/main.yml index 64bb69d5b..2f1bef693 100644 --- a/roles/pulp_common/vars/main.yml +++ b/roles/pulp_common/vars/main.yml @@ -40,7 +40,7 @@ __pulp_common_pulp_settings_defaults: __pulp_common_merged_pulp_settings: "{{ __pulp_common_pulp_settings_defaults | combine(pulp_settings, recursive=True) }}" -__pulpcore_version: '{{ pulpcore_version | default("3.19") }}' +__pulpcore_version: '{{ pulpcore_version | default("3.20") }}' __pulp_old_artifact_dir: "{{ pulp_user_home | regex_replace('\\/$', '') }}/artifact" __pulp_artifact_dir: "{{ pulp_media_root | regex_replace('\\/$', '') }}/artifact"