ansible/CHANGELOG.md

72 lines
3.4 KiB
Markdown
Raw Normal View History

2012-04-26 03:23:50 +02:00
Ansible Changes By Release
==========================
2012-04-26 03:30:04 +02:00
0.4 "Unchained" ------- in progress, ETA May 2012
2012-04-26 03:23:50 +02:00
2012-04-26 03:30:04 +02:00
* custom facts provided by the setup module mean no dependency on Ruby, facter, or ohai
* sudo improvements, now works much more smoothly
2012-04-28 17:29:02 +02:00
* OS X support in progress for ansible on the host and clients (modules still TBA)
2012-04-26 03:30:04 +02:00
* list of hosts in playbooks can be expressed as a YAML list in addition to ; delimited
* tweaks to SELinux implementation for file module
2012-04-27 05:12:09 +02:00
* first_available_file feature, see selective_file_sources.yml in examples/playbooks for info
* fixes for yum module corner cases on EL5
2012-04-28 17:29:02 +02:00
* --extra-vars="a=2 b=3" etc, now available to inject parameters into playbooks from CLI
2012-04-27 05:12:09 +02:00
* file module now correctly returns the mode in octal
2012-04-27 07:27:47 +02:00
* modules can no longer include stderr output (paramiko limitation from sudo)
2012-04-28 17:29:02 +02:00
* 'group_names' is now a variable made available to templates
2012-05-02 05:03:00 +02:00
* variables in the 'all' section can be used to define other variables based on those values
* fix for symlink handling in the file module
* groups and users module takes an optional system=yes|no on creation (default no)
* async handling improvements
* service takes an enable=yes|no which works with chkconfig or updates-rc.d as appropriate
2012-05-02 05:05:40 +02:00
* inventory_hostname variable available that contains the value of the host as ansible knows it
* service module works better on Ubuntu
* git module now does resets and such to work more smoothly on updates
* fix to internals of hacking/test-module development script
* ansible-pull script and example playbook (extreme scaling, remediation)
2012-05-07 00:34:07 +02:00
* service fixes to better detect status using return codes of the service script
* ansible INI style format can do groups of groups [groupname:children] and group vars [groupname:vars]
* sudo to a particular user with -U/--sudo-user, or using 'sudo_user: foo' in a playbook
2012-05-08 05:48:18 +02:00
* internal inventory API now more object oriented, parsers decoupled
* --override-hosts removed (see following change...)
* able to pass host specifier or group name in to "hosts:" with --extra-vars
* git module supports branch=
* unicode now ok in templates (assumes utf8)
* modules all now log to syslog
2012-04-26 03:23:50 +02:00
0.3 "Baluchitherium" -- April 23, 2012
* Packaging for Debian, Gentoo, and Arch
* Improvements to the apt and yum modules
* A virt module
* SELinux support for the file module
* Ability to use facts from other systems in templates (aka exported
resources like support)
* Built in Ansible facts so you don't need ohai, facter, or Ruby
* tempdir selections that work with noexec mounted /tmp
* templates happen locally, not remotely, so no dependency on
python-jinja2 for remote computers
* advanced inventory format in YAML allows more control over variables
per host and per group
* variables in playbooks can be structured/nested versus just a flat namespace
* manpage upgrades (docs)
* various bugfixes
* can specify a default --user for playbooks rather than specifying it
in the playbook file
* able to specify ansible port in ansible host file (see docs)
* refactored Inventory API to make it easier to write scripts using Ansible
* looping capability for playbooks (with_items)
* support for using sudo with a password
* module arguments can be unicode
* A local connection type, --connection=local, for use with cron or
in kickstarts
* better module debugging with -D
* fetch module for pulling in files from remote hosts
* command task supports creates=foo for idempotent semantics, won't
run if file foo already exists
0.0.2 and 0.0.1
* Initial stages of project