diff options
author | Toshio Kuratomi <a.badger@gmail.com> | 2017-12-19 14:36:02 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-19 14:36:02 -0800 |
commit | cc7a5228b02344658dac69c38ccb7d6580d2b4c6 (patch) | |
tree | f075ee623c53d5b196264235cb0da8e37c203fbf /CHANGELOG.md | |
parent | 7bc754674cf263ad685e4998dfab00375142d76a (diff) | |
download | ansible-cc7a5228b02344658dac69c38ccb7d6580d2b4c6.tar.gz |
Deprecate check_invalid_arguments (#34004)
* Deprecate check_invalid_arguments
Check_invalid_arguments is a piece of functionality from the early days
of Ansible that should not be used. We'll remove it in Ansible 2.9.
Deprecating it for now.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 39e8c62033..70ddf1a0cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,19 @@ Ansible Changes By Release and 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 +* 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 +* 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. +* 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. ### Minor Changes * added a few new magic vars corresponding to configuration/command line options: |