Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ansible/ansible.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjamesmarshall24 <james.marshall@redhat.com>2022-10-10 17:51:34 +0300
committerGitHub <noreply@github.com>2022-10-10 17:51:34 +0300
commitd412bb245cbd45afe6d7d5ee9630b7b2c28f206f (patch)
tree9c6b8d96353535eec0248e299c3507b934e3af48
parent45f9af1fd470be579a4391a688db8dde362e15b1 (diff)
New release v2.14.0b3 (#79076)v2.14.0b3
-rw-r--r--changelogs/CHANGELOG-v2.14.rst39
-rw-r--r--changelogs/changelog.yaml33
-rw-r--r--changelogs/fragments/v2.14.0b3_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 62 insertions, 15 deletions
diff --git a/changelogs/CHANGELOG-v2.14.rst b/changelogs/CHANGELOG-v2.14.rst
index 56d8cbb3702..6ad65a600f9 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 <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+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 45460eab791..a1b61f347b1 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 <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+ '
+ 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 00000000000..a282c2f5bd5
--- /dev/null
+++ b/changelogs/fragments/v2.14.0b3_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2022-10-10
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 197abe39ce1..9a68c3d9734 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"