summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--changelogs/.changes.yaml14
-rw-r--r--changelogs/CHANGELOG-v2.8.rst32
-rw-r--r--changelogs/fragments/v2.8.17rc1_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 45f351e6b7..30fdad24d6 100644
--- a/changelogs/.changes.yaml
+++ b/changelogs/.changes.yaml
@@ -1709,6 +1709,20 @@ releases:
- ansible-test-parallels-endpoint.yml
- v2.8.16rc1_summary.yaml
release_date: '2020-09-28'
+ 2.8.17rc1:
+ codename: How Many More Times
+ fragments:
+ - 71535_kubectl_followup.yml
+ - ansible-test-azp-agent-temp-dir.yml
+ - ansible-test-container-ip-lookup.yml
+ - ansible-test-docker-default-network.yml
+ - ansible-test-docker-detection-fix.yml
+ - ansible-test-docker-not-localhost.yml
+ - ansible-test-docker-socket.yml
+ - ansible-test-network-container-search.yml
+ - galaxy_login_bye.yml
+ - v2.8.17rc1_summary.yaml
+ release_date: '2020-10-26'
2.8.2:
codename: How Many More Times
fragments:
diff --git a/changelogs/CHANGELOG-v2.8.rst b/changelogs/CHANGELOG-v2.8.rst
index 226d603b1e..e0ac25aefb 100644
--- a/changelogs/CHANGELOG-v2.8.rst
+++ b/changelogs/CHANGELOG-v2.8.rst
@@ -5,6 +5,38 @@ Ansible 2.8 "How Many More Times" Release Notes
.. contents:: Topics
+v2.8.17rc1
+==========
+
+Release Summary
+---------------
+
+| Release Date: 2020-10-26
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Minor Changes
+-------------
+
+- ansible-test - Add a ``--docker-network`` option to choose the network for running containers when using the ``--docker`` option.
+
+Breaking Changes / Porting Guide
+--------------------------------
+
+- ansible-galaxy login command has been removed (see https://github.com/ansible/ansible/issues/71560)
+
+Bugfixes
+--------
+
+- ansible-test - Always connect additional Docker containers to the network used by the current container (if any).
+- ansible-test - Always map ``/var/run/docker.sock`` into test containers created by the ``--docker`` option if the docker host is not ``localhost``.
+- ansible-test - Attempt to detect the Docker hostname instead of assuming ``localhost``.
+- ansible-test - Correctly detect running in a Docker container on Azure Pipelines.
+- ansible-test - Prefer container IP at ``.NetworkSettings.Networks.{NetworkName}.IPAddress`` over ``.NetworkSettings.IPAddress``.
+- ansible-test - The ``cs`` and ``openshift`` test plugins now search for containers on the current network instead of assuming the ``bridge`` network.
+- ansible-test - Using the ``--remote`` option on Azure Pipelines now works from a job running in a container.
+- kubectl - follow up fix in _build_exec_cmd API (https://github.com/ansible/ansible/issues/72171).
+
v2.8.16
=======
diff --git a/changelogs/fragments/v2.8.17rc1_summary.yaml b/changelogs/fragments/v2.8.17rc1_summary.yaml
new file mode 100644
index 0000000000..987755768b
--- /dev/null
+++ b/changelogs/fragments/v2.8.17rc1_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2020-10-26
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index f8a5b1dc93..23647f34b6 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.8.16.post0'
+__version__ = '2.8.17rc1'
__author__ = 'Ansible, Inc.'
__codename__ = 'How Many More Times'