From 4f96015ce0dea22f95e46306fac46015a3b4ca52 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Mon, 15 Jul 2024 12:28:43 -0700 Subject: [PATCH] New release v2.17.2 (#83611) --- changelogs/CHANGELOG-v2.17.rst | 23 +++++------------------ changelogs/changelog.yaml | 11 +++++++++++ changelogs/fragments/2.17.2_summary.yaml | 3 +++ lib/ansible/release.py | 2 +- 4 files changed, 20 insertions(+), 19 deletions(-) create mode 100644 changelogs/fragments/2.17.2_summary.yaml diff --git a/changelogs/CHANGELOG-v2.17.rst b/changelogs/CHANGELOG-v2.17.rst index 02cd03a5317..1ac8c02f1fd 100644 --- a/changelogs/CHANGELOG-v2.17.rst +++ b/changelogs/CHANGELOG-v2.17.rst @@ -4,36 +4,23 @@ ansible-core 2.17 "Gallows Pole" Release Notes .. contents:: Topics -v2.17.2rc2 -========== - -Release Summary ---------------- - -| Release Date: 2024-07-09 -| `Porting Guide `__ - -Bugfixes --------- - -- dnf - reverted incomplete fix from 2.17.2rc1 (https://github.com/ansible/ansible/pull/83504) -- package_facts - ignore warnings sent by apk on stderr (https://github.com/ansible/ansible/issues/83501). - -v2.17.2rc1 -========== +v2.17.2 +======= Release Summary --------------- -| Release Date: 2024-07-08 +| Release Date: 2024-07-15 | `Porting Guide `__ Bugfixes -------- - Fix a traceback when an environment variable contains certain special characters (https://github.com/ansible/ansible/issues/83498) +- dnf - reverted incomplete fix from 2.17.2rc1 (https://github.com/ansible/ansible/pull/83504) - dnf, dnf5 - fix for installing a set of packages by specifying them using a wildcard character (https://github.com/ansible/ansible/issues/83373) - linear strategy now provides a properly templated task name to the v2_runner_on_started callback event. +- package_facts - ignore warnings sent by apk on stderr (https://github.com/ansible/ansible/issues/83501). - replace - Updated before/after example (https://github.com/ansible/ansible/issues/83390). - templating hostvars under native jinja will not cause serialization errors anymore. diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 973b24ed64f..c4da406c90c 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -731,6 +731,17 @@ releases: - PowerShell-AddType-temp.yml - correct-callback-fqcn-old-style-action-invocation.yml release_date: '2024-06-10' + 2.17.2: + changes: + release_summary: '| Release Date: 2024-07-15 + + | `Porting Guide `__ + + ' + codename: Gallows Pole + fragments: + - 2.17.2_summary.yaml + release_date: '2024-07-15' 2.17.2rc1: changes: bugfixes: diff --git a/changelogs/fragments/2.17.2_summary.yaml b/changelogs/fragments/2.17.2_summary.yaml new file mode 100644 index 00000000000..2b7c9660b22 --- /dev/null +++ b/changelogs/fragments/2.17.2_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2024-07-15 + | `Porting Guide `__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index 8d0a86fe74f..8d3f49b603f 100644 --- a/lib/ansible/release.py +++ b/lib/ansible/release.py @@ -17,6 +17,6 @@ from __future__ import annotations -__version__ = '2.17.2rc2.post0' +__version__ = '2.17.2' __author__ = 'Ansible, Inc.' __codename__ = "Gallows Pole"