summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--changelogs/CHANGELOG-v2.14.rst24
-rw-r--r--changelogs/changelog.yaml28
-rw-r--r--changelogs/fragments/v2.14.1rc1_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 56 insertions, 1 deletions
diff --git a/changelogs/CHANGELOG-v2.14.rst b/changelogs/CHANGELOG-v2.14.rst
index c849089bb2..d82dbe35ba 100644
--- a/changelogs/CHANGELOG-v2.14.rst
+++ b/changelogs/CHANGELOG-v2.14.rst
@@ -5,6 +5,30 @@ ansible-core 2.14 "C'mon Everybody" Release Notes
.. contents:: Topics
+v2.14.1rc1
+==========
+
+Release Summary
+---------------
+
+| Release Date: 2022-11-28
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Minor Changes
+-------------
+
+- ansible-test - Improve consistency of executed ``pylint`` commands by making the plugins ordered.
+
+Bugfixes
+--------
+
+- Fixes leftover _valid_attrs usage.
+- ansible-galaxy - make initial call to Galaxy server on-demand only when installing, getting info about, and listing roles.
+- copy module will no longer move 'non files' set as src when remote_src=true.
+- jinja2_native: preserve quotes in strings (https://github.com/ansible/ansible/issues/79083)
+- updated error messages to include 'acl' and not just mode changes when failing to set required permissions on remote.
+
v2.14.0
=======
diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml
index a687b456cb..56da0e5c71 100644
--- a/changelogs/changelog.yaml
+++ b/changelogs/changelog.yaml
@@ -843,3 +843,31 @@ releases:
- ansible-test-pylint-2.15.5.yml
- v2.14.0rc2_summary.yaml
release_date: '2022-10-31'
+ 2.14.1rc1:
+ changes:
+ bugfixes:
+ - Fixes leftover _valid_attrs usage.
+ - ansible-galaxy - make initial call to Galaxy server on-demand only when installing,
+ getting info about, and listing roles.
+ - copy module will no longer move 'non files' set as src when remote_src=true.
+ - 'jinja2_native: preserve quotes in strings (https://github.com/ansible/ansible/issues/79083)'
+ - updated error messages to include 'acl' and not just mode changes when failing
+ to set required permissions on remote.
+ minor_changes:
+ - ansible-test - Improve consistency of executed ``pylint`` commands by making
+ the plugins ordered.
+ release_summary: '| Release Date: 2022-11-28
+
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+ '
+ codename: C'mon Everybody
+ fragments:
+ - 79083-jinja2_native-preserve-quotes-in-strings.yml
+ - 79376-replace-valid-attrs-with-fattributes.yaml
+ - ansible-galaxy-install-delay-initial-api-call.yml
+ - ansible-test-pylint-command.yml
+ - dont_move_non_files.yml
+ - mention_acl.yml
+ - v2.14.1rc1_summary.yaml
+ release_date: '2022-11-28'
diff --git a/changelogs/fragments/v2.14.1rc1_summary.yaml b/changelogs/fragments/v2.14.1rc1_summary.yaml
new file mode 100644
index 0000000000..cf48fe481b
--- /dev/null
+++ b/changelogs/fragments/v2.14.1rc1_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2022-11-28
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 6416c75ccb..23b6c95ab4 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.0.post0'
+__version__ = '2.14.1rc1'
__author__ = 'Ansible, Inc.'
__codename__ = "C'mon Everybody"