From 5d9d0fe39b1d69affb8795604f200ead5c1d71da Mon Sep 17 00:00:00 2001 From: Christian Adams Date: Mon, 25 Apr 2022 10:36:03 -0400 Subject: [PATCH] New release v2.13.0b1 (#77629) --- changelogs/CHANGELOG-v2.13.rst | 23 ++++++++++++++++++++ changelogs/changelog.yaml | 24 +++++++++++++++++++++ changelogs/fragments/v2.13.0b1_summary.yaml | 3 +++ lib/ansible/release.py | 2 +- 4 files changed, 51 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/v2.13.0b1_summary.yaml diff --git a/changelogs/CHANGELOG-v2.13.rst b/changelogs/CHANGELOG-v2.13.rst index 5894e9992aa..be99432d986 100644 --- a/changelogs/CHANGELOG-v2.13.rst +++ b/changelogs/CHANGELOG-v2.13.rst @@ -5,6 +5,28 @@ ansible-core 2.13 "Nobody's Fault but Mine" Release Notes .. contents:: Topics +v2.13.0b1 +========= + +Release Summary +--------------- + +| Release Date: 2022-04-25 +| `Porting Guide `__ + + +Minor Changes +------------- + +- ansible-test - Update ``default`` containers to version 5.9.0. + +Bugfixes +-------- + +- ansible - Exclude Python 2.6 from Python interpreter discovery. +- arg_spec - Fix incorrect ``no_log`` warning when a parameter alias is used (https://github.com/ansible/ansible/pull/77576) +- variablemanager, more efficient read of vars files + v2.13.0b0 ========= @@ -259,6 +281,7 @@ Bugfixes - gather_facts - Fact gathering now continues even if it fails to read a file - gather_facts action now handles the move of base connection plugin types into collections to add/prevent subset argument correctly - gather_facts/setup will not fail anymore if capsh is present but not executable +- git module fix docs and proper use of ssh wrapper script and GIT_SSH_COMMAND depending on version. - git module is more consistent and clearer about which ssh options are added to git calls. - git module no longer uses wrapper script for ssh options. - hacking - fix incorrect usage of deprecated fish-shell redirection operators that failed to honor ``--quiet`` flag when sourced (https://github.com/ansible/ansible/pull/77180). diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 1f0de6f568b..f5e29e5ea45 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -184,6 +184,8 @@ releases: - gather_facts action now handles the move of base connection plugin types into collections to add/prevent subset argument correctly - gather_facts/setup will not fail anymore if capsh is present but not executable + - git module fix docs and proper use of ssh wrapper script and GIT_SSH_COMMAND + depending on version. - git module is more consistent and clearer about which ssh options are added to git calls. - git module no longer uses wrapper script for ssh options. @@ -720,3 +722,25 @@ releases: - win_LinkUtil-ignore-LIB.yml - winrm-kinit-path.yml release_date: '2022-04-11' + 2.13.0b1: + changes: + bugfixes: + - ansible - Exclude Python 2.6 from Python interpreter discovery. + - arg_spec - Fix incorrect ``no_log`` warning when a parameter alias is used + (https://github.com/ansible/ansible/pull/77576) + - variablemanager, more efficient read of vars files + minor_changes: + - ansible-test - Update ``default`` containers to version 5.9.0. + release_summary: '| Release Date: 2022-04-25 + + | `Porting Guide `__ + + ' + codename: Nobody's Fault but Mine + fragments: + - 77576-arg_spec-no_log-aliases.yml + - ansible-test-default-container-update-5.9.0.yaml + - python-2.6-discovery.yml + - v2.13.0b1_summary.yaml + - vm_more_efficient.yml + release_date: '2022-04-25' diff --git a/changelogs/fragments/v2.13.0b1_summary.yaml b/changelogs/fragments/v2.13.0b1_summary.yaml new file mode 100644 index 00000000000..80011d51c10 --- /dev/null +++ b/changelogs/fragments/v2.13.0b1_summary.yaml @@ -0,0 +1,3 @@ +release_summary: | + | Release Date: 2022-04-25 + | `Porting Guide `__ diff --git a/lib/ansible/release.py b/lib/ansible/release.py index debd7c696ed..c574ec84c72 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.0b0.post0' +__version__ = '2.13.0b1' __author__ = 'Ansible, Inc.' __codename__ = "Nobody's Fault but Mine"