From b3aae33fcd7803ec092acf93b866f9e2bcefe469 Mon Sep 17 00:00:00 2001 From: James Cammarata Date: Tue, 19 Apr 2016 18:05:08 -0400 Subject: [PATCH] Updating CHANGELOG for some 2.1 features. --- CHANGELOG.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 26611cd60d4..dc73f5f757c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,17 @@ Ansible Changes By Release ========================== -## 2.1 TBD - ACTIVE DEVELOPMENT +## 2.1 "The Song Remains the Same" - ACTIVE DEVELOPMENT ###Major Changes: -* added facility for modules to send back 'diff' for display when ansible is called with --diff, updated several modules to return this info -* added ansible-console tool, a REPL shell that allows running adhoc tasks against a chosen inventory (based on https://github.com/dominis/ansible-shell) -* new meta action, `meta: clear_facts` which will remove existing facts for the current host from current memory and facts cache. +* Added the ability to specify includes as "static" (either through a configuration option or on a per-include basis). When includes are static, + they are loaded at compile time and cannot contain dynamic features like loops. +* Added a new option for tasks: `loop_control`. This currently only supports one option - `loop_var`, which allows a different loop variable from `item` to be used. +* Added the ability to send per-item callbacks, rather than a batch update (this more closely resembles the behavior of Ansible 1.x). +* Added facility for modules to send back 'diff' for display when ansible is called with --diff, updated several modules to return this info +* Added ansible-console tool, a REPL shell that allows running adhoc tasks against a chosen inventory (based on https://github.com/dominis/ansible-shell) +* New meta action, `meta: clear_facts` which will remove existing facts for the current host from current memory and facts cache. ####New Modules: - aws