Release 4.6.0.

This commit is contained in:
Felix Fontein 2022-03-15 12:36:20 +01:00
commit 24f6493cd4
26 changed files with 143 additions and 90 deletions

View file

@ -1,4 +0,0 @@
bugfixes:
- mksysb - fixed bug for parameter ``backup_dmapi_fs`` was passing the wrong CLI argument (https://github.com/ansible-collections/community.general/pull/3295).
minor_changes:
- mksysb - revamped the module using ``ModuleHelper`` (https://github.com/ansible-collections/community.general/pull/3295).

View file

@ -1 +0,0 @@
release_summary: Regular feature and bugfix release.

View file

@ -1,3 +0,0 @@
minor_changes:
- nmcli - remove nmcli modify dependency on ``type`` parameter (https://github.com/ansible-collections/community.general/issues/2858).
- nmcli - add missing connection aliases ``802-3-ethernet`` and ``802-11-wireless`` (https://github.com/ansible-collections/community.general/pull/4108).

View file

@ -1,2 +0,0 @@
minor_changes:
- zypper - add support for ``--clean-deps`` option to remove packages that depend on a package being removed (https://github.com/ansible-collections/community.general/pull/4195).

View file

@ -1,2 +0,0 @@
minor_changes:
- redis - add authentication parameters ``login_user``, ``tls``, ``validate_certs``, and ``ca_certs`` (https://github.com/ansible-collections/community.general/pull/4207).

View file

@ -1,2 +0,0 @@
minor_changes:
- syslog_json - add option to skip logging of ``gather_facts`` playbook tasks; use v2 callback API (https://github.com/ansible-collections/community.general/pull/4223).

View file

@ -1,3 +0,0 @@
bugfixes:
- pacman - fix ``upgrade=yes``
(https://github.com/ansible-collections/community.general/pull/4275, https://github.com/ansible-collections/community.general/issues/4274).

View file

@ -1,2 +0,0 @@
bugfixes:
- terraform - fix ``variable`` handling to allow complex values (https://github.com/ansible-collections/community.general/pull/4281).

View file

@ -1,3 +0,0 @@
bugfixes:
- pacman - fix URL based package installation
(https://github.com/ansible-collections/community.general/pull/4286, https://github.com/ansible-collections/community.general/issues/4285).

View file

@ -1,2 +0,0 @@
bugfixes:
- proxmox_kvm - fix error when checking whether Proxmox VM exists (https://github.com/ansible-collections/community.general/pull/4287).

View file

@ -1,5 +0,0 @@
---
bugfixes:
- filesize - add support for busybox dd implementation, that is used by default on Alpine linux
(https://github.com/ansible-collections/community.general/pull/4288,
https://github.com/ansible-collections/community.general/issues/4259).

View file

@ -1,2 +0,0 @@
minor_changes:
- npm - add ability to use ``production`` flag when ``ci`` is set (https://github.com/ansible-collections/community.general/pull/4299).

View file

@ -1,2 +0,0 @@
minor_changes:
- pipx - added options ``editable`` and ``pip_args`` (https://github.com/ansible-collections/community.general/issues/4300).

View file

@ -1,2 +0,0 @@
minor_changes:
- jira - when creating a comment, ``fields`` now is used for additional data (https://github.com/ansible-collections/community.general/pull/4304).

View file

@ -1,2 +0,0 @@
bugfixes:
- "proxmox_kvm - fix error in check when creating or cloning (https://github.com/ansible-collections/community.general/pull/4306)."

View file

@ -1,9 +0,0 @@
bugfixes:
- pacman - Use ``--groups`` instead of ``--group``
(https://github.com/ansible-collections/community.general/pull/4312).
known_issues:
- pacman - binaries specified in the ``executable`` parameter must support
``--print-format`` in order to be used by this module.
In particular, AUR helper ``yay`` is known not to currently support it
(https://github.com/ansible-collections/community.general/pull/4312).

View file

@ -1,3 +0,0 @@
minor_changes:
- pacman - add ``remove_nosave`` parameter to avoid saving modified configuration files as ``.pacsave`` files.
(https://github.com/ansible-collections/community.general/pull/4316, https://github.com/ansible-collections/community.general/issues/4315).

View file

@ -1,12 +0,0 @@
bugfixes:
- pacman - when the ``update_cache`` option is combined with another option
such as ``upgrade``, report ``changed`` based on the actions performed by
the latter option. This was the behavior in community.general 4.4.0 and before.
In community.general 4.5.0, a task combining these options would always
report ``changed``
(https://github.com/ansible-collections/community.general/pull/4318).
known_issues:
- pacman - ``update_cache`` cannot differentiate between up to date and
outdated package lists and will report ``changed`` in both situations
(https://github.com/ansible-collections/community.general/pull/4318).

View file

@ -1,7 +0,0 @@
bugfixes:
- "pacman - make sure that ``packages`` is always returned when ``name`` or ``upgrade`` is specified, also if nothing is done
(https://github.com/ansible-collections/community.general/pull/4329)."
deprecated_features:
- "pacman - from community.general 5.0.0 on, the ``changed`` status of ``update_cache`` will no longer be ignored if ``name`` or ``upgrade`` is specified.
To keep the old behavior, add something like ``register: result`` and ``changed_when: result.packages | length > 0`` to your task
(https://github.com/ansible-collections/community.general/pull/4329)."

View file

@ -1,2 +0,0 @@
bugfixes:
- linode inventory plugin - fix configuration handling relating to inventory filtering (https://github.com/ansible-collections/community.general/pull/4336).

View file

@ -1,4 +0,0 @@
minor_changes:
- "pacman - now implements proper change detection for ``update_cache=true``. Adds ``cache_updated`` return value to when ``update_cache=true``
to report this result independently of the module's overall changed return value
(https://github.com/ansible-collections/community.general/pull/4337)."

View file

@ -1,8 +0,0 @@
---
bugfixes:
- proxmox inventory plugin - fixed the ``description`` field being ignored if
it contained a comma
(https://github.com/ansible-collections/community.general/issues/4348).
- proxmox inventory plugin - always convert strings that follow the
``key=value[,key=value[...]]`` form into dictionaries
(https://github.com/ansible-collections/community.general/pull/4349).

View file

@ -1,4 +0,0 @@
---
minor_changes:
- proxmox inventory plugin - add support for client-side jinja filters
(https://github.com/ansible-collections/community.general/issues/3553).

View file

@ -1,4 +0,0 @@
---
minor_changes:
- ldap_entry - add support for recursive deletion
(https://github.com/ansible-collections/community.general/issues/3613).