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:
authorRicardo Carrillo Cruz <ricarril@redhat.com>2022-10-31 16:32:58 +0300
committerGitHub <noreply@github.com>2022-10-31 16:32:58 +0300
commit485a9e9c9db44b51750b6dd7aff304f998f63733 (patch)
tree6cfa38bf02db65872026417487c5508ea2466560
parentcb6e106d7d8b6dabfdd658d0d5284bc808af33cb (diff)
New release v2.13.6rc1 (#79258)v2.13.6rc1
-rw-r--r--changelogs/CHANGELOG-v2.13.rst21
-rw-r--r--changelogs/changelog.yaml30
-rw-r--r--changelogs/fragments/v2.13.6rc1_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 55 insertions, 1 deletions
diff --git a/changelogs/CHANGELOG-v2.13.rst b/changelogs/CHANGELOG-v2.13.rst
index db1b91e1074..0d4662cec90 100644
--- a/changelogs/CHANGELOG-v2.13.rst
+++ b/changelogs/CHANGELOG-v2.13.rst
@@ -5,6 +5,27 @@ ansible-core 2.13 "Nobody's Fault but Mine" Release Notes
.. contents:: Topics
+v2.13.6rc1
+==========
+
+Release Summary
+---------------
+
+| Release Date: 2022-10-31
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Bugfixes
+--------
+
+- BSD network facts - Do not assume column indexes, look for ``netmask`` and ``broadcast`` for determining the correct columns when parsing ``inet`` line (https://github.com/ansible/ansible/issues/79117)
+- ansible-galaxy - make initial call to Galaxy server on-demand only when installing, getting info about, and listing roles.
+- ansible-test - Add ``wheel < 0.38.0`` constraint for Python 3.6 and earlier.
+- copy module will no longer move 'non files' set as src when remote_src=true.
+- file lookup now handles missing files more gracefully.
+- service_facts - Use python re to parse service output instead of grep (https://github.com/ansible/ansible/issues/78541)
+- updated error messages to include 'acl' and not just mode changes when failing to set required permissions on remote.
+
v2.13.5
=======
diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml
index c6806b11be6..b2f12fb2da4 100644
--- a/changelogs/changelog.yaml
+++ b/changelogs/changelog.yaml
@@ -1097,3 +1097,33 @@ releases:
- plugin_loader_fix.yml
- v2.13.5rc1_summary.yaml
release_date: '2022-10-03'
+ 2.13.6rc1:
+ changes:
+ bugfixes:
+ - BSD network facts - Do not assume column indexes, look for ``netmask`` and
+ ``broadcast`` for determining the correct columns when parsing ``inet`` line
+ (https://github.com/ansible/ansible/issues/79117)
+ - ansible-galaxy - make initial call to Galaxy server on-demand only when installing,
+ getting info about, and listing roles.
+ - ansible-test - Add ``wheel < 0.38.0`` constraint for Python 3.6 and earlier.
+ - copy module will no longer move 'non files' set as src when remote_src=true.
+ - file lookup now handles missing files more gracefully.
+ - service_facts - Use python re to parse service output instead of grep (https://github.com/ansible/ansible/issues/78541)
+ - updated error messages to include 'acl' and not just mode changes when failing
+ to set required permissions on remote.
+ release_summary: '| Release Date: 2022-10-31
+
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+ '
+ codename: Nobody's Fault but Mine
+ fragments:
+ - 78541-service-facts-re.yml
+ - 79117-bsd-ifconfig-inet-fix.yml
+ - 79187--wheel-0.38.0.yml
+ - ansible-galaxy-install-delay-initial-api-call.yml
+ - dont_move_non_files.yml
+ - file_lookup_fix.yml
+ - mention_acl.yml
+ - v2.13.6rc1_summary.yaml
+ release_date: '2022-10-31'
diff --git a/changelogs/fragments/v2.13.6rc1_summary.yaml b/changelogs/fragments/v2.13.6rc1_summary.yaml
new file mode 100644
index 00000000000..07859282091
--- /dev/null
+++ b/changelogs/fragments/v2.13.6rc1_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2022-10-31
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index f57f5aea859..916c635af43 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.13.5.post0'
+__version__ = '2.13.6rc1'
__author__ = 'Ansible, Inc.'
__codename__ = "Nobody's Fault but Mine"