Browse code

update changelog

Michael DeHaan authored on 2013/02/27 11:03:25
Showing 1 changed files
... ...
@@ -6,7 +6,7 @@ Ansible Changes By Release
6 6
 Core Features
7 7
 
8 8
 * added --check option for "dry run" mode
9
-* added --diff option to show how templates change, or might change
9
+* added --diff option to show how templates or copied files change, or might change
10 10
 * --list-tasks for the playbook will list the tasks without running them
11 11
 * able to set the environment by setting "environment:" as a dictionary on any task (go proxy support!)
12 12
 * added ansible_ssh_user and ansible_ssh_pass for per-host/group username and password
... ...
@@ -14,6 +14,8 @@ Core Features
14 14
 * support for complex arguments to modules (within reason)
15 15
 * can specify ansible_connection=X to define the connection type in inventory variables
16 16
 * a new chroot connection type
17
+* module common code now has basic type checking (and casting) capability 
18
+* module common now supports a 'no_log' attribute to mark a field as not to be syslogged
17 19
 
18 20
 Modules Added:
19 21
 
... ...
@@ -24,10 +26,10 @@ Modules Added:
24 24
 * new uri module -- can get/put/post/etc
25 25
 * CloudFormation module
26 26
 * zfs
27
+* django-manage
27 28
 
28 29
 Bugfixes and Misc Changes:
29 30
 
30
-* ansible module common code (and ONLY that) which is mixed in with modules, is now BSD licensed.  App remains GPLv3.
31 31
 * stderr shown when commands fail to parse
32 32
 * uses yaml.safe_dump in filter plugins
33 33
 * authentication Q&A no longer happens before --syntax-check, but after
... ...
@@ -53,6 +55,9 @@ Facts:
53 53
 
54 54
 Module Changes/Fixes:
55 55
 
56
+* ansible module common code (and ONLY that) which is mixed in with modules, is now BSD licensed.  App remains GPLv3.
57
+* service code works better on platforms that mix upstart, systemd, and system-v
58
+* service enablement idempotence fixes for systemd and upstart
56 59
 * service status 4 is also 'not running'
57 60
 * supervisorctl restart fix
58 61
 * increased error handling for ec2 module
... ...
@@ -79,6 +84,7 @@ Module Changes/Fixes:
79 79
 * fix to apt module so packages not in cache are still removable
80 80
 * charset fix to mail module
81 81
 * postresql db module now does not try to create the 'PUBLIC' user
82
+* SVN module now works correctly with self signed certs
82 83
 
83 84
 Plugins:
84 85