Skip to contentVersion 0.1.0-alpha.5
Added
- The whole ansible-core 2.19 grammar loads, and whatever this release cannot run is refused by name before the first connection. (#98)
- Plays compile into a flat list of steps, with blocks kept as spans. (#101)
- Roles load from the standard paths, with dependencies, argument specs and
import_tasks. (#102)
--tags, --skip-tags and the listing commands, with output identical to Ansible’s. (#103)
- Blocks with
rescue and always, and the ansible_failed_task and ansible_failed_result facts. (#104)
- Handlers, run at every flush point. (#105)
until, retries and delay, no_log, and environment. (#107)
serial batches, with the run stopping when a batch loses every host. (#108)
include_tasks, include_role and include_vars, resolved while the play runs. (#109)
run_once and delegate_to, with the delegated task running over the delegate’s own connection. (#115)
Changed
- Every host reads one shared
hostvars map instead of its own copy. (#116)
Fixed
- The host that runs a
run_once task is elected once for the whole batch. (#118)