diff options
author | Michael DeHaan <michael.dehaan@gmail.com> | 2014-08-27 18:26:29 -0400 |
---|---|---|
committer | Michael DeHaan <michael.dehaan@gmail.com> | 2014-08-27 18:26:29 -0400 |
commit | 3e4b7759e46ff4dd605e64f47359593f437a0471 (patch) | |
tree | a29cd836d25311868ce762cbdf327c3c3ec2659d /CHANGELOG.md | |
parent | f8a30faeee70947827df5914ecc78db578499ee6 (diff) | |
download | ansible-3e4b7759e46ff4dd605e64f47359593f437a0471.tar.gz |
Update CHANGELOG.md
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index e199e1563c..11f5a90780 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ New core features: * no_log parameter now surpressess data from callbacks/output as well as syslog * ansible-galaxy install -f requirements.yml allows advanced options and installs from non-galaxy SCM sources and tarballs. * command_warnings feature will warn about when usage of the shell/command module can be simplified to use core modules - this can be enabled in ansible.cfg +* new omit value can be used to leave off a parameter when not set, like so module_name: a=1 b={{ c | default(omit) }}, would not pass value for b (not even an empty value) if c was not set. New Modules: |