Changelog fragment copy edits. (#36555)

* Changelog fragment copy edits.

* Typo fixes.

* Typo fix 2.
pull/36558/head
scottb 7 years ago committed by Matt Davis
parent df78df5d90
commit 138ed416eb

@ -1,2 +1,2 @@
bugfixes:
- azure_rm modules - internal changes to use API profiles and kwargs for future Azure Stack support and better stability between SDK updates. (https://github.com/ansible/ansible/pull/35538)
- azure_rm modules - updated with internal changes to use API profiles and kwargs for future Azure Stack support and better stability between SDK updates. (https://github.com/ansible/ansible/pull/35538)

@ -1,2 +1,2 @@
bugfixes:
- fix memory bloat on nested includes by preventing blocks from self-parenting (https://github.com/ansible/ansible/pull/36075)
- fixed memory bloat on nested includes by preventing blocks from self-parenting (https://github.com/ansible/ansible/pull/36075)

@ -1,2 +1,2 @@
bugfixes:
- ensure displayed messages under peristent connections are returned to the controller (https://github.com/ansible/ansible/pull/36064)
- updated to ensure displayed messages under peristent connections are returned to the controller (https://github.com/ansible/ansible/pull/36064)

@ -1,2 +1,2 @@
bugfixes:
- eos_vrf and eos_eapi - fix vrf parsing (https://github.com/ansible/ansible/pull/35791)
- eos_vrf and eos_eapi - fixed vrf parsing (https://github.com/ansible/ansible/pull/35791)

@ -1,3 +1,3 @@
bugfixes:
- |
include_role - Improve performance and recursion depth (https://github.com/ansible/ansible/pull/36470)
include_role - improved performance and recursion depth (https://github.com/ansible/ansible/pull/36470)

@ -1,2 +1,2 @@
bugfixes:
- interface_file - accept interfaces without address family or method (https://github.com/ansible/ansible/pull/34200)
- interface_file - now accepts interfaces without address family or method (https://github.com/ansible/ansible/pull/34200)

@ -1,2 +1,2 @@
bugfixes:
- lineinfile - fix insertion if pattern already exists (https://github.com/ansible/ansible/pull/33393)
- lineinfile - fixed insertion if pattern already exists (https://github.com/ansible/ansible/pull/33393)

@ -1,2 +1,2 @@
bugfixes:
- nxos_igmp_interface - fix response handling for different nxos versions (https://github.com/ansible/ansible/pull/35959)
- nxos_igmp_interface - fixed response handling for different nxos versions (https://github.com/ansible/ansible/pull/35959)

@ -1,2 +1,2 @@
bugfixes:
- nxos_interface_ospf - various bugfixes (https://github.com/ansible/ansible/pull/35988)
- nxos_interface_ospf - added various bugfixes (https://github.com/ansible/ansible/pull/35988)

@ -1,2 +1,2 @@
bugfixes:
- openshift modules - update to client version 0.4.0 (https://github.com/ansible/ansible/pull/35127)
- openshift modules - updated to client version 0.4.0 (https://github.com/ansible/ansible/pull/35127)

@ -1,10 +1,10 @@
major_changes:
- New simpler and more intuitive 'loop' keyword for task loops. The ``with_<lookup>`` loops will likely be deprecated in the near future and eventually removed.
- |
Added fact namespacing, from now on facts will be available under ``ansible_facts`` namespace (i.e. ``ansible_facts.os_distribution``)
w/o the ``ansible_`` prefix. They will continue to be added into the main namespace directly, but now with a configuration toggle to
enable this, currently on by default, in the future it will be off.
- Added a configuration file to filter modules that a site administrator wants to exclude from being used.
Added fact namespacing; from now on facts will be available under ``ansible_facts`` namespace (for example: ``ansible_facts.os_distribution``)
without the ``ansible_`` prefix. They will continue to be added into the main namespace directly, but now with a configuration toggle to
enable this. This is currently on by default, but in the future it will default to off.
- Added a configuration file that a site administrator can use to specify modules to exclude from being used.
minor_changes:
- |
Added a few new magic vars corresponding to configuration/command
@ -21,29 +21,33 @@ minor_changes:
Administrator users without disabling UAC on Windows hosts
- |
The jenkins\_plugin and yum\_repository plugins had their ``params``
option removed due to circumventing Ansible's option processing.
- combine filter now accepts a list of dicts as well as dicts directly
option removed because they circumvented Ansible's option processing.
- The combine filter now accepts a list of dicts as well as dicts directly
- |
New CLI options for ansible-inventory, ansible-console and ansible to
allow specifying a playbook\_dir to be used for relative search
paths.
- |
``stat`` and ``win_stat`` have changed the default value of
`The `stat`` and ``win_stat`` modules have changed the default value of
``get_md5`` to ``False`` which will result in the ``md5`` return
value not being returned. This option will be removed altogether in
Ansible 2.9. use ``get_checksum: True`` with
Ansible 2.9. Use ``get_checksum: True`` with
``checksum_algorithm: md5`` to return an md5 hash of the file under
the ``checksum`` return value.
- |
``osx_say`` module was renamed into ``say``.
The ``osx_say`` module was renamed into ``say``.
- |
Task debugger functionality was moved into ``StrategyBase``, and
extended to allow explicit invocation from use of the ``debugger``
keyword. The ``debug`` strategy is still functional, and is now just
a trigger to enable this functionality
a trigger to enable this functionality.
- |
Reorganized the documentation into distinct guides for different
target audiences.
The documentation has undergone a major overhaul. Content has been moved into
targeted guides; the table of contents has been cleaned up and streamlined;
the CSS theme has been updated to a custom version of the most recent
ReadTheDocs theme, and the underlying directory structure for the RST files
has been reorganized.
- |
The ANSIBLE\_REMOTE\_TMP environment variable has been added to
supplement (and override) ANSIBLE\_REMOTE\_TEMP. This matches with
@ -52,35 +56,35 @@ minor_changes:
deprecated_features:
- |
Previously deprecated 'hostfile' config settings have been
're-deprecated' as previously code did not warn about deprecated
're-deprecated' because previously code did not warn about deprecated
configuration settings.
- |
Using Ansible provided Jinja tests as filters is deprecated and will
be removed in Ansible 2.9
Using Ansible-provided Jinja tests as filters is deprecated and will
be removed in Ansible 2.9.
- |
``stat`` and ``win_stat`` have deprecated ``get_md5`` and the ``md5``
return value and these options will become undocumented in Ansible
The ``stat`` and ``win_stat`` modules have deprecated ``get_md5`` and the ``md5``
return values. These options will become undocumented in Ansible
2.9 and removed in a later version.
- The ``redis_kv`` lookup in favor of new ``redis`` lookup
- The ``redis_kv`` lookup has been deprecated in favor of new ``redis`` lookup
- |
Passing arbitrary parameters that begin with ``HEADER_`` to the uri
module, used for passing http headers, is deprecated. Use the
``headers`` parameter with a dictionary of header names to value
instead. This will be removed in Ansible-2.9
instead. This will be removed in Ansible 2.9
- |
Passing arbitrary parameters to the zfs module to set zfs properties
is deprecated. Use the ``extra_zfs_properties`` parameter with a
dictionary of property names to values instead. This will be removed
in Ansible-2.9.
in Ansible 2.9.
- |
Use of the AnsibleModule parameter, check\_invalid\_arguments, in custom modules is deprecated. In the future, all parameters will be
Use of the AnsibleModule parameter ``check\_invalid\_arguments`` in custom modules is deprecated. In the future, all parameters will be
checked to see whether they are listed in the arg spec and an error raised if they are not listed. This behaviour is the current and
future default so most custom modules can simply remove check\_invalid\_arguments if they set it to the default of True.
check\_invalid\_arguments will be removed in Ansible-2.9.
- nxos\_ip\_interface module is deprecated in Ansible 2.5. Use nxos\_l3\_interface module instead.
- nxos\_portchannel module is deprecated in Ansible 2.5. Use nxos\_linkagg module instead.
- nxos\_switchport module is deprecated in Ansible 2.5. Use nxos\_l2\_interface module instead.
- ec2\_ami\_find has been deprecated, use ec2\_ami\_facts.
future default so most custom modules can simply remove ``check\_invalid\_arguments`` if they set it to the default value of True.
The ``check\_invalid\_arguments`` parameter will be removed in Ansible 2.9.
- The nxos\_ip\_interface module is deprecated in Ansible 2.5. Use nxos\_l3\_interface module instead.
- The nxos\_portchannel module is deprecated in Ansible 2.5. Use nxos\_linkagg module instead.
- The nxos\_switchport module is deprecated in Ansible 2.5. Use nxos\_l2\_interface module instead.
- The ec2\_ami\_find has been deprecated; use ec2\_ami\_facts instead.
- |
panos\_security\_policy: Use panos\_security\_rule - the old module uses deprecated API calls
- vsphere\_guest is deprecated in Ansible 2.5 and will be removed in Ansible-2.9. Use vmware\_guest module instead.
@ -94,10 +98,10 @@ removed_features:
cl\_ : cl\_interface, cl\_interface\_policy, cl\_bridge,
cl\_img\_install, cl\_ports, cl\_license, cl\_bond. Use ``nclu``
instead
- docker, use docker\_container and docker\_image instead.
- docker. Use docker\_container and docker\_image instead.
- ec2\_vpc.
- ec2\_ami\_search, use ec2\_ami\_facts instead.
- nxos\_mtu, use nxos\_system's ``system_mtu`` option. To specify an interface's MTU use nxos\_interface.
- nxos\_mtu. Use nxos\_system's ``system_mtu`` option instead. To specify an interface's MTU use nxos\_interface.
- |
panos\_nat\_policy: Use panos\_nat\_rule the old module uses deprecated API calls
new_lookup_plugins:
@ -129,8 +133,8 @@ new_connection_plugins:
- netconf
- |
network\_cli
- While neither network\_cli nor netconf are technically new plugins, these connections may now be used directly with network modules. See
`Network Best Practices for Ansible 2.5 <http://docs.ansible.com/ansible/devel/network_best_practices_2.5.html>`__ for more details.
- The existing network\_cli and netconf connection plugins can now be used directly with network modules. See
`Network Best Practices for Ansible 2.5 <http://docs.ansible.com/ansible/devel/network_best_practices_2.5.html>`_ for more details.
new_filter_plugins:
- parse\_xml

@ -1,6 +1,6 @@
bugfixes:
- fix templating issues in loop_control (https://github.com/ansible/ansible/pull/36124)
- ansible-config - fix traceback when no config file is present (https://github.com/ansible/ansible/issues/35965)
- misc fixes to Linux virtualization facts (https://github.com/ansible/ansible/issues/36038)
- fix failure when remote_tmp is a subdir of a system tempdir (https://github.com/ansible/ansible/pull/36143)
- ios_ping - allow for count > 70 (https://github.com/ansible/ansible/pull/36142)
- fixed templating issues in loop_control (https://github.com/ansible/ansible/pull/36124)
- ansible-config - fixed traceback when no config file is present (https://github.com/ansible/ansible/issues/35965)
- added various fixes to Linux virtualization facts (https://github.com/ansible/ansible/issues/36038)
- fixed failure when remote_tmp is a subdir of a system tempdir (https://github.com/ansible/ansible/pull/36143)
- ios_ping - updated to allow for count > 70 (https://github.com/ansible/ansible/pull/36142)

@ -1,2 +1,2 @@
bugfixes:
- vmware_guest_snapshot - always check for root snapshot (https://github.com/ansible/ansible/pull/36001)
- vmware_guest_snapshot - updated to always check for root snapshot (https://github.com/ansible/ansible/pull/36001)

@ -1,2 +1,2 @@
bugfixes:
- vyos - fixes to check mode support (https://github.com/ansible/ansible/pull/35977)
- vyos - added fixes to check mode support (https://github.com/ansible/ansible/pull/35977)

@ -1,3 +1,3 @@
bugfixes:
- vyos_l3_interface - add support for localhost (https://github.com/ansible/ansible/pull/36141)
- vyos_l3_interface - added support for localhost (https://github.com/ansible/ansible/pull/36141)

@ -1,2 +1,2 @@
bugfixes:
- win_domain_controller - only specify ReadOnlyReplica when necessary (https://github.com/ansible/ansible/pull/36017)
- win_domain_controller - updated to only specify ReadOnlyReplica when necessary (https://github.com/ansible/ansible/pull/36017)

@ -1,2 +1,2 @@
bugfixes:
- win_updates - fix regresion with string category names(https://github.com/ansible/ansible/pull/36015)
- win_updates - fixed regression with string category names (https://github.com/ansible/ansible/pull/36015)
Loading…
Cancel
Save