summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToshio Kuratomi <a.badger@gmail.com>2019-10-10 15:17:53 -0700
committerToshio Kuratomi <a.badger@gmail.com>2019-10-10 15:17:53 -0700
commit40f415ba352df83614b8f83fb7395ef370d5f3a5 (patch)
tree3471c51a47509494849d495cc1d8564ad1099f61
parent5b6e8590cf31547cc190e902c8e497723dfad373 (diff)
downloadansible-40f415ba352df83614b8f83fb7395ef370d5f3a5.tar.gz
New release v2.9.0rc3v2.9.0rc3
-rw-r--r--changelogs/.changes.yaml16
-rw-r--r--changelogs/CHANGELOG-v2.9.rst30
-rw-r--r--changelogs/fragments/v2.9.0rc3_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 50 insertions, 1 deletions
diff --git a/changelogs/.changes.yaml b/changelogs/.changes.yaml
index 3f671a5190..db81b66a84 100644
--- a/changelogs/.changes.yaml
+++ b/changelogs/.changes.yaml
@@ -1267,3 +1267,19 @@ releases:
- nxos_l3_interfaces29.yaml
- v2.9.0rc2_summary.yaml
release_date: '2019-10-03'
+ 2.9.0rc3:
+ codename: Immigrant Song
+ fragments:
+ - 59464-playbook-dir-envvar.yml
+ - 63249-fix-sts-assume-role-test.yml
+ - adhoc_default_collection.yml
+ - ansible-galaxy-support-for-automation-hub.yml
+ - ansible-test-collections-ansible-adhoc.yml
+ - ansible-test-integration-temp-dir.yml
+ - ansible-test-ssh-keygen-fix.yml
+ - ansible-test-virtualenv-python-search.yml
+ - config_encoding_resilience.yml
+ - cronvar-correct-binary-name.yaml
+ - galaxy_api_config.yaml
+ - v2.9.0rc3_summary.yaml
+ release_date: '2019-10-10'
diff --git a/changelogs/CHANGELOG-v2.9.rst b/changelogs/CHANGELOG-v2.9.rst
index 92d1a07d4a..798d314ca3 100644
--- a/changelogs/CHANGELOG-v2.9.rst
+++ b/changelogs/CHANGELOG-v2.9.rst
@@ -5,6 +5,36 @@ Ansible 2.9 "Immigrant Song" Release Notes
.. contents:: Topics
+v2.9.0rc3
+=========
+
+Release Summary
+---------------
+
+| Release Date: 2019-10-10
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Minor Changes
+-------------
+
+- Add 'auth_url' field to galaxy server config stanzas in ansible.cfg The url should point to the token_endpoint of a Keycloak server.
+
+Bugfixes
+--------
+
+- CLI - the `ANSIBLE_PLAYBOOK_DIR` envvar or `playbook_dir` config can now substitute for the --playbook-dir arg on CLIs that support it (https://github.com/ansible/ansible/issues/59464)
+- Fix https://github.com/ansible/galaxy-dev/issues/96 Add support for automation-hub authentication to ansible-galaxy
+- adhoc CLI - when playbook-dir is specified and inside a collection, use default collection logic to resolve modules/actions
+- ansible-galaxy - Stop appendding '/api' to configured galaxy urls. Special case migrated configs.
+- ansible-test now creates its integration test temporary directory within the collection so ansible-playbook can properly detect the default collection
+- ansible-test now properly searches for ``pythonX.Y`` instead of ``python`` when looking for the real python that created a ``virtualenv``
+- ansible-test now properly sets ``ANSIBLE_PLAYBOOK_DIR`` for integration tests so unqualified collection references work for adhoc ``ansible`` usage
+- ansible-test now updates SSH keys it generates with newer versions of ssh-keygen to function with Paramiko
+- config - encoding failures on config values should be non-fatal (https://github.com/ansible/ansible/issues/63310)
+- cronvar - use correct binary name (https://github.com/ansible/ansible/issues/63274)
+- sts_assume_role - fix assertion text in integration test
+
v2.9.0rc2
=========
diff --git a/changelogs/fragments/v2.9.0rc3_summary.yaml b/changelogs/fragments/v2.9.0rc3_summary.yaml
new file mode 100644
index 0000000000..4cdaeb939b
--- /dev/null
+++ b/changelogs/fragments/v2.9.0rc3_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2019-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 96c867a974..d6491cbae6 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.9.0rc2.post0'
+__version__ = '2.9.0rc3'
__author__ = 'Ansible, Inc.'
__codename__ = 'Immigrant Song'