From d412bb245cbd45afe6d7d5ee9630b7b2c28f206f Mon Sep 17 00:00:00 2001 From: jamesmarshall24 Date: Mon, 10 Oct 2022 10:51:34 -0400 Subject: New release v2.14.0b3 (#79076) --- changelogs/CHANGELOG-v2.14.rst | 39 +++++++++++++++++++++-------- changelogs/changelog.yaml | 33 +++++++++++++++++++++--- changelogs/fragments/v2.14.0b3_summary.yaml | 3 +++ lib/ansible/release.py | 2 +- 4 files changed, 62 insertions(+), 15 deletions(-) create mode 100644 changelogs/fragments/v2.14.0b3_summary.yaml diff --git a/changelogs/CHANGELOG-v2.14.rst b/changelogs/CHANGELOG-v2.14.rst index 56d8cbb370..6ad65a600f 100644 --- a/changelogs/CHANGELOG-v2.14.rst +++ b/changelogs/CHANGELOG-v2.14.rst @@ -5,6 +5,35 @@ ansible-core 2.14 "C'mon Everybody" Release Notes .. contents:: Topics +v2.14.0b3 +========= + +Release Summary +--------------- + +| Release Date: 2022-10-10 +| `Porting Guide `__ + + +Bugfixes +-------- + +- Do not crash when templating an expression with a test or filter that is not a valid Ansible filter name (https://github.com/ansible/ansible/issues/78912, https://github.com/ansible/ansible/pull/78913). +- handlers - fix an issue where the ``flush_handlers`` meta task could not be used with FQCN: ``ansible.builtin.meta`` (https://github.com/ansible/ansible/issues/79023) +- keyword inheritance - Ensure that we do not squash keywords in validate (https://github.com/ansible/ansible/issues/79021) +- omit on keywords was resetting to default value, ignoring inheritance. +- service_facts - Use python re to parse service output instead of grep (https://github.com/ansible/ansible/issues/78541) + +New Plugins +----------- + +Test +~~~~ + +- uri - is the string a valid URI +- url - is the string a valid URL +- urn - is the string a valid URN + v2.14.0b2 ========= @@ -35,16 +64,6 @@ Bugfixes - known_hosts - do not return changed status when a non-existing key is removed (https://github.com/ansible/ansible/issues/78598) - plugin loader, fix detection for existing configuration before initializing for a plugin -New Plugins ------------ - -Test -~~~~ - -- ansible.builtin.uri - is the string a valid URI -- ansible.builtin.url - is the string a valid URL -- ansible.builtin.urn - is the string a valid URN - v2.14.0b1 ========= diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 45460eab79..a1b61f347b 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -744,15 +744,40 @@ releases: - plugin_loader_fix.yml - v2.14.0b2_summary.yaml - validate-modules-sidecar.yml + release_date: '2022-10-03' + 2.14.0b3: + changes: + bugfixes: + - Do not crash when templating an expression with a test or filter that is not + a valid Ansible filter name (https://github.com/ansible/ansible/issues/78912, + https://github.com/ansible/ansible/pull/78913). + - 'handlers - fix an issue where the ``flush_handlers`` meta task could not + be used with FQCN: ``ansible.builtin.meta`` (https://github.com/ansible/ansible/issues/79023)' + - keyword inheritance - Ensure that we do not squash keywords in validate (https://github.com/ansible/ansible/issues/79021) + - omit on keywords was resetting to default value, ignoring inheritance. + - service_facts - Use python re to parse service output instead of grep (https://github.com/ansible/ansible/issues/78541) + release_summary: '| Release Date: 2022-10-10 + + | `Porting Guide `__ + + ' + codename: C'mon Everybody + fragments: + - 78541-service-facts-re.yml + - 78913-template-missing-filter-test.yml + - 79021-dont-squash-in-validate.yml + - 79023-fix-flush_handlers-fqcn.yml + - fix_omit_key.yml + - v2.14.0b3_summary.yaml plugins: test: - description: is the string a valid URI - name: ansible.builtin.uri + name: uri namespace: null - description: is the string a valid URL - name: ansible.builtin.url + name: url namespace: null - description: is the string a valid URN - name: ansible.builtin.urn + name: urn namespace: null - release_date: '2022-10-03' + release_date: '2022-10-10' diff --git a/changelogs/fragments/v2.14.0b3_summary.yaml b/changelogs/fragments/v2.14.0b3_summary.yaml new file mode 100644 index 0000000000..a282c2f5bd --- /dev/null +++ b/changelogs/fragments/v2.14.0b3_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2022-10-10 + | `Porting Guide `__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index 197abe39ce..9a68c3d973 100644 --- a/lib/ansible/release.py +++ b/lib/ansible/release.py @@ -19,6 +19,6 @@ from __future__ import (absolute_import, division, print_function) __metaclass__ = type -__version__ = '2.14.0b2.post0' +__version__ = '2.14.0b3' __author__ = 'Ansible, Inc.' __codename__ = "C'mon Everybody" -- cgit v1.2.1