summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--changelogs/.changes.yaml19
-rw-r--r--changelogs/CHANGELOG-v2.7.rst39
-rw-r--r--changelogs/fragments/v2.7.0rc2_summary.yaml3
-rw-r--r--lib/ansible/release.py2
4 files changed, 61 insertions, 2 deletions
diff --git a/changelogs/.changes.yaml b/changelogs/.changes.yaml
index 03f17bae8e..6e80808605 100644
--- a/changelogs/.changes.yaml
+++ b/changelogs/.changes.yaml
@@ -411,3 +411,22 @@ releases:
modules:
- online_user_facts
release_date: '2018-09-06'
+ 2.7.0rc2:
+ codename: In the Light
+ fragments:
+ - 45501-get_url-better_checksums.yaml
+ - aws_cloudfront_distribution_fix_nonexistent_method_name.yaml
+ - azure-storage-cloud-environment.yaml
+ - azure_autoscale.yaml
+ - get-url-fix-idempotency.yaml
+ - loop_undefined_delegate_to.yaml
+ - nxos_ambiguous_command_check.yaml
+ - script-module-no-file-path.yaml
+ - v2.7.0rc2_summary.yaml
+ - vmware_wait_for_task_fix.yaml
+ - win_group_membership-com-marshal.yaml
+ - win_say-fix.yaml
+ plugins:
+ strategy:
+ - host_pinned
+ release_date: '2018-09-13'
diff --git a/changelogs/CHANGELOG-v2.7.rst b/changelogs/CHANGELOG-v2.7.rst
index 6282e9ee8b..1bf874c6a4 100644
--- a/changelogs/CHANGELOG-v2.7.rst
+++ b/changelogs/CHANGELOG-v2.7.rst
@@ -5,6 +5,43 @@ Ansible 2.7 "In the Light" Release Notes
.. contents:: Topics
+v2.7.0rc2
+=========
+
+Release Summary
+---------------
+
+| Release Date: 2018-09-13
+| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
+
+
+Minor Changes
+-------------
+
+- Fix timer in exponential backoff algorithm in vmware.py.
+
+Bugfixes
+--------
+
+- Add ambiguous command check as the error message is not persistent on nexus devices (https://github.com/ansible/ansible/pull/45337).
+- cloudfront_distribution - replace call to nonexistent method 'validate_distribution_id_from_caller_reference' with 'validate_distribution_from_caller_reference' and set the distribution_id variable to the distribution's 'Id' key.
+- fix azure storage blob cannot create blob container in non-public azure cloud environment. (https://github.com/ansible/ansible/issues/35223)
+- fix azure_rm_autoscale module can use dict to identify target (https://github.com/ansible/ansible/pull/45477)
+- get_url - Don't re-download files unnecessarily when force=no (https://github.com/ansible/ansible/issues/45491)
+- get_url - support remote checksum files with paths specified with leading dots (`./path/to/file`)
+- loop - Ensure that a loop with a when condition that evaluates to false and delegate_to, will short circuit if the loop references an undefined variable. This matches the behavior in the same scenario without delegate_to (https://github.com/ansible/ansible/issues/45189)
+- script inventory plugin - Don't pass file_name to DataLoader.load, which will prevent misleading error messages (https://github.com/ansible/ansible/issues/34164)
+- win_group_membership - fix intermittent issue where it failed to convert the ADSI object to the .NET object after using it once
+- win_say - fix syntax error in module and get tests working
+
+New Plugins
+-----------
+
+Strategy
+~~~~~~~~
+
+- host_pinned - Executes tasks on each host without interruption
+
v2.7.0rc1
=========
@@ -307,7 +344,7 @@ Minor Changes
- passwordstore - Add backup option when overwriting password (off by default)
- puppet - Add support for --debug, --verbose, --summarize https://github.com/ansible/ansible/issues/37986
- puppet - Add support for setting logdest to both stdout and syslog via 'all'
-- replace copy.deepcopy in high workload areas with a custom function to improve speed of fact-cache updates and reduce memory usage (https://github.com/ansible/ansible/pull/44337)
+- replace copy.deepcopy in high workload areas with a custom function to improve performance (https://github.com/ansible/ansible/pull/44337)
- roles - removed deprecated functionality for non YAML role specs (https://github.com/ansible/ansible/pull/44320)
- roles - removed deprecated special casing functionality of connection, port, and remote_user for role params (https://github.com/ansible/ansible/pull/44320)
- service - removed deprecated state=running (https://github.com/ansible/ansible/pull/44320)
diff --git a/changelogs/fragments/v2.7.0rc2_summary.yaml b/changelogs/fragments/v2.7.0rc2_summary.yaml
new file mode 100644
index 0000000000..1c80ad6c14
--- /dev/null
+++ b/changelogs/fragments/v2.7.0rc2_summary.yaml
@@ -0,0 +1,3 @@
+release_summary: |
+ | Release Date: 2018-09-13
+ | `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__
diff --git a/lib/ansible/release.py b/lib/ansible/release.py
index 6ed1f00f3a..d1158f2df1 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.7.0rc1.post0'
+__version__ = '2.7.0rc2'
__author__ = 'Ansible, Inc.'
__codename__ = 'In the Light'