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-03 20:40:10 +0300
committerGitHub <noreply@github.com>2022-10-03 20:40:10 +0300
commite88427ae6b15e3375e4f07487c0bc54274aac3ae (patch)
tree05c8189d4fc299507dfe0ce12d384cc89181d291
parentf46bbb21406d4f80bc0802515468c9d3577c9b6a (diff)
New release v2.14.0b2 (#78944)v2.14.0b2
-rw-r--r--changelogs/CHANGELOG-v2.14.rst50
-rw-r--r--changelogs/changelog.yaml45
-rw-r--r--changelogs/fragments/v2.14.0b2_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 85 insertions, 15 deletions
diff --git a/changelogs/CHANGELOG-v2.14.rst b/changelogs/CHANGELOG-v2.14.rst
index 00bb7e5a627..56d8cbb3702 100644
--- a/changelogs/CHANGELOG-v2.14.rst
+++ b/changelogs/CHANGELOG-v2.14.rst
@@ -5,6 +5,46 @@ ansible-core 2.14 "C'mon Everybody" Release Notes
.. contents:: Topics
+v2.14.0b2
+=========
+
+Release Summary
+---------------
+
+| Release Date: 2022-10-03
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Minor Changes
+-------------
+
+- ansible-test validate-modules - Added support for validating module documentation stored in a sidecar file alongside the module (``{module}.yml`` or ``{module}.yaml``). Previously these files were ignored and documentation had to be placed in ``{module}.py``.
+- apt_repository will use the trust repo directories in order of preference (more appropriate to less) as they exist on the target.
+
+Breaking Changes / Porting Guide
+--------------------------------
+
+- ansible-test validate-modules - Removed the ``missing-python-doc`` error code in validate modules, ``missing-documentation`` is used instead for missing PowerShell module documentation.
+
+Bugfixes
+--------
+
+- Fix reusing a connection in a task loop that uses a redirected or aliased name - https://github.com/ansible/ansible/issues/78425
+- Fix setting become activation in a task loop - https://github.com/ansible/ansible/issues/78425
+- apt module should not traceback on invalid type given as package. issue 78663.
+- 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
=========
@@ -353,13 +393,3 @@ Bugfixes
- winrm connection now handles default to inventory_hostname correctly.
- yaml inventory plugin - fix the error message for non-string hostnames (https://github.com/ansible/ansible/issues/77519).
- yum - fix traceback when ``releasever`` is specified with ``latest`` (https://github.com/ansible/ansible/issues/78058)
-
-New Plugins
------------
-
-Test
-~~~~
-
-- uri - is the string a valid URI
-- url - is the string a valid URL
-- urn - is the string a valid URN
diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml
index cfe987d2892..45460eab791 100644
--- a/changelogs/changelog.yaml
+++ b/changelogs/changelog.yaml
@@ -707,15 +707,52 @@ releases:
- winrm-kinit-path.yml
- write_file_uri_cleanup.yml
- zap_template_cache.yml
+ release_date: '2022-09-26'
+ 2.14.0b2:
+ changes:
+ breaking_changes:
+ - ansible-test validate-modules - Removed the ``missing-python-doc`` error code
+ in validate modules, ``missing-documentation`` is used instead for missing
+ PowerShell module documentation.
+ bugfixes:
+ - Fix reusing a connection in a task loop that uses a redirected or aliased
+ name - https://github.com/ansible/ansible/issues/78425
+ - Fix setting become activation in a task loop - https://github.com/ansible/ansible/issues/78425
+ - apt module should not traceback on invalid type given as package. issue 78663.
+ - 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
+ minor_changes:
+ - ansible-test validate-modules - Added support for validating module documentation
+ stored in a sidecar file alongside the module (``{module}.yml`` or ``{module}.yaml``).
+ Previously these files were ignored and documentation had to be placed in
+ ``{module}.py``.
+ - apt_repository will use the trust repo directories in order of preference
+ (more appropriate to less) as they exist on the target.
+ release_summary: '| Release Date: 2022-10-03
+
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+ '
+ codename: C'mon Everybody
+ fragments:
+ - 78881-fix-known-hosts-wrong-changed-status.yaml
+ - apt_notb.yml
+ - apt_repo_trust_prefs.yml
+ - become-loop-setting.yml
+ - plugin_loader_fix.yml
+ - v2.14.0b2_summary.yaml
+ - validate-modules-sidecar.yml
plugins:
test:
- description: is the string a valid URI
- name: uri
+ name: ansible.builtin.uri
namespace: null
- description: is the string a valid URL
- name: url
+ name: ansible.builtin.url
namespace: null
- description: is the string a valid URN
- name: urn
+ name: ansible.builtin.urn
namespace: null
- release_date: '2022-09-26'
+ release_date: '2022-10-03'
diff --git a/changelogs/fragments/v2.14.0b2_summary.yaml b/changelogs/fragments/v2.14.0b2_summary.yaml
new file mode 100644
index 00000000000..c480eeff989
--- /dev/null
+++ b/changelogs/fragments/v2.14.0b2_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2022-10-03
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 2793402445e..9138ff8ce53 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.0b1.post0'
+__version__ = '2.14.0b2'
__author__ = 'Ansible, Inc.'
__codename__ = "C'mon Everybody"