summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Coca <brian.coca+git@gmail.com>2016-02-29 15:56:39 -0500
committerBrian Coca <brian.coca+git@gmail.com>2016-02-29 15:56:39 -0500
commit8766a9dbafc31e304a07dc87b91d30df428d0a2b (patch)
treebef72dfefe441e4818985ac925ba849891289dd6
parent1b11b396ca3e8446715ea2b60853a8f260efa4a2 (diff)
downloadansible-8766a9dbafc31e304a07dc87b91d30df428d0a2b.tar.gz
added new gather behaviour to porting guide
also removed redundant header from changelog from merge
-rw-r--r--CHANGELOG.md1
-rw-r--r--docsite/rst/porting_guide_2.0.rst2
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 58b51a8fff..3676a04952 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -27,7 +27,6 @@ Ansible Changes By Release
* callbacks now have access to the options with which the CLI was called
* debug is now controlable with verbosity
-## 2.0 "Over the Hills and Far Away"
## 2.0.1 "Over the Hills and Far Away"
* Fixes a major compatibility break in the synchronize module shipped with
diff --git a/docsite/rst/porting_guide_2.0.rst b/docsite/rst/porting_guide_2.0.rst
index 8c95c9a4d0..ee6e65c150 100644
--- a/docsite/rst/porting_guide_2.0.rst
+++ b/docsite/rst/porting_guide_2.0.rst
@@ -83,6 +83,8 @@ uses key=value escaping which has not changed. The other option is to check for
* Extras callbacks must be whitelisted in ansible.cfg. Copying is no longer necessary but whitelisting in ansible.cfg must be completed.
* dnf module has been rewritten. Some minor changes in behavior may be observed.
* win_updates has been rewritten and works as expected now.
+* from 2.0.1 onwards, the implicit setup task from gather_facts now correctly inherits everything from play, but this might cause issues for those setting
+ `environment` at the play level and depending on `ansible_env` existing. Previouslly this was ignored but now might issue an 'Undefined' error.
Deprecated
----------