mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-22 12:03:58 -07:00
Release 10.1.0.
This commit is contained in:
parent
0a6c57bc4d
commit
770bae70db
28 changed files with 238 additions and 72 deletions
|
@ -758,3 +758,92 @@ releases:
|
|||
- 9082-keycloak_clientscope-fix-attributes-dict-turned-into-list.yml
|
||||
- 9114-redfish-utils-update-remove-default-applytime.yml
|
||||
release_date: '2024-11-11'
|
||||
10.1.0:
|
||||
changes:
|
||||
bugfixes:
|
||||
- dnf_config_manager - fix hanging when prompting to import GPG keys (https://github.com/ansible-collections/community.general/pull/9124,
|
||||
https://github.com/ansible-collections/community.general/issues/8830).
|
||||
- dnf_config_manager - forces locale to ``C`` before module starts. If the
|
||||
locale was set to non-English, the output of the ``dnf config-manager``
|
||||
could not be parsed (https://github.com/ansible-collections/community.general/pull/9157,
|
||||
https://github.com/ansible-collections/community.general/issues/9046).
|
||||
- flatpak - force the locale language to ``C`` when running the flatpak command
|
||||
(https://github.com/ansible-collections/community.general/pull/9187, https://github.com/ansible-collections/community.general/issues/8883).
|
||||
- gio_mime - fix command line when determining version of ``gio`` (https://github.com/ansible-collections/community.general/pull/9171,
|
||||
https://github.com/ansible-collections/community.general/issues/9158).
|
||||
- github_key - in check mode, a faulty call to ```datetime.strftime(...)```
|
||||
was being made which generated an exception (https://github.com/ansible-collections/community.general/issues/9185).
|
||||
- homebrew_cask - allow ``+`` symbol in Homebrew cask name validation regex
|
||||
(https://github.com/ansible-collections/community.general/pull/9128).
|
||||
- keycloak_clientscope_type - sort the default and optional clientscope lists
|
||||
to improve the diff (https://github.com/ansible-collections/community.general/pull/9202).
|
||||
- slack - fail if Slack API response is not OK with error message (https://github.com/ansible-collections/community.general/pull/9198).
|
||||
deprecated_features:
|
||||
- opkg - deprecate value ``""`` for parameter ``force`` (https://github.com/ansible-collections/community.general/pull/9172).
|
||||
- redfish_utils module utils - deprecate method ``RedfishUtils._init_session()``
|
||||
(https://github.com/ansible-collections/community.general/pull/9190).
|
||||
minor_changes:
|
||||
- alternatives - add ``family`` parameter that allows to utilize the ``--family``
|
||||
option available in RedHat version of update-alternatives (https://github.com/ansible-collections/community.general/issues/5060,
|
||||
https://github.com/ansible-collections/community.general/pull/9096).
|
||||
- cloudflare_dns - add support for ``comment`` and ``tags`` (https://github.com/ansible-collections/community.general/pull/9132).
|
||||
- deps module utils - add ``deps.clear()`` to clear out previously declared
|
||||
dependencies (https://github.com/ansible-collections/community.general/pull/9179).
|
||||
- homebrew - greatly speed up module when multiple packages are passed in
|
||||
the ``name`` option (https://github.com/ansible-collections/community.general/pull/9181).
|
||||
- homebrew - remove duplicated package name validation (https://github.com/ansible-collections/community.general/pull/9076).
|
||||
- iso_extract - adds ``password`` parameter that is passed to 7z (https://github.com/ansible-collections/community.general/pull/9159).
|
||||
- launchd - add ``plist`` option for services such as sshd, where the plist
|
||||
filename doesn't match the service name (https://github.com/ansible-collections/community.general/pull/9102).
|
||||
- nmcli - add ``sriov`` parameter that enables support for SR-IOV settings
|
||||
(https://github.com/ansible-collections/community.general/pull/9168).
|
||||
- pipx - add return value ``version`` (https://github.com/ansible-collections/community.general/pull/9180).
|
||||
- pipx_info - add return value ``version`` (https://github.com/ansible-collections/community.general/pull/9180).
|
||||
- proxmox_template - add server side artifact fetching support (https://github.com/ansible-collections/community.general/pull/9113).
|
||||
- redfish_command - add ``update_custom_oem_header``, ``update_custom_oem_params``,
|
||||
and ``update_custom_oem_mime_type`` options (https://github.com/ansible-collections/community.general/pull/9123).
|
||||
- redfish_utils module utils - remove redundant code (https://github.com/ansible-collections/community.general/pull/9190).
|
||||
- rpm_ostree_pkg - added the options ``apply_live`` (https://github.com/ansible-collections/community.general/pull/9167).
|
||||
- rpm_ostree_pkg - added the return value ``needs_reboot`` (https://github.com/ansible-collections/community.general/pull/9167).
|
||||
- scaleway_lb - minor simplification in the code (https://github.com/ansible-collections/community.general/pull/9189).
|
||||
- ssh_config - add ``dynamicforward`` option (https://github.com/ansible-collections/community.general/pull/9192).
|
||||
release_summary: Regular bugfix and feature release.
|
||||
fragments:
|
||||
- 10.1.0.yml
|
||||
- 5932-launchd-plist.yml
|
||||
- 7402-proxmox-template-support-server-side-artifact-fetching.yaml
|
||||
- 9076-remove-duplicated-homebrew-package-name-validation.yml
|
||||
- 9096-alternatives-add-family-parameter.yml
|
||||
- 9123-redfish-command-custom-oem-params.yml
|
||||
- 9124-dnf_config_manager.yml
|
||||
- 9128-homebrew_cask-name-regex-fix.yml
|
||||
- 9132-cloudflare_dns-comment-and-tags.yml
|
||||
- 9157-fix-dnf_config_manager-locale.yml
|
||||
- 9159-iso-extract_add_password.yml
|
||||
- 9167-rpm_ostree_pkg-apply_live.yml
|
||||
- 9168-nmcli-add-sriov-parameter.yml
|
||||
- 9171-gio-mime-fix-version.yml
|
||||
- 9172-opkg-deprecate-force-none.yml
|
||||
- 9179-deps-tests.yml
|
||||
- 9180-pipx-version.yml
|
||||
- 9181-improve-homebrew-module-performance.yml
|
||||
- 9186-fix-broken-check-mode-in-github-key.yml
|
||||
- 9187-flatpak-lang.yml
|
||||
- 9189-scalway-lb-simplify-return.yml
|
||||
- 9190-redfish-utils-unused-code.yml
|
||||
- 9198-fail-if-slack-api-response-is-not-ok-with-error-message.yml
|
||||
- 9202-keycloak_clientscope_type-sort-lists.yml
|
||||
- ssh_config_add_dynamicforward_option.yml
|
||||
modules:
|
||||
- description: Decompresses compressed files.
|
||||
name: decompress
|
||||
namespace: ''
|
||||
- description: Start a VM backup in Proxmox VE cluster.
|
||||
name: proxmox_backup
|
||||
namespace: ''
|
||||
plugins:
|
||||
filter:
|
||||
- description: Produce a list of accumulated sums of the input list contents.
|
||||
name: accumulate
|
||||
namespace: null
|
||||
release_date: '2024-12-02'
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
release_summary: Regular bugfix and feature release.
|
|
@ -1,2 +0,0 @@
|
|||
minor_changes:
|
||||
- launchd - add ``plist`` option for services such as sshd, where the plist filename doesn't match the service name (https://github.com/ansible-collections/community.general/pull/9102).
|
|
@ -1,2 +0,0 @@
|
|||
minor_changes:
|
||||
- proxmox_template - add server side artifact fetching support (https://github.com/ansible-collections/community.general/pull/9113).
|
|
@ -1,2 +0,0 @@
|
|||
minor_changes:
|
||||
- homebrew - remove duplicated package name validation (https://github.com/ansible-collections/community.general/pull/9076).
|
|
@ -1,2 +0,0 @@
|
|||
minor_changes:
|
||||
- alternatives - add ``family`` parameter that allows to utilize the ``--family`` option available in RedHat version of update-alternatives (https://github.com/ansible-collections/community.general/issues/5060, https://github.com/ansible-collections/community.general/pull/9096).
|
|
@ -1,2 +0,0 @@
|
|||
minor_changes:
|
||||
- redfish_command - add ``update_custom_oem_header``, ``update_custom_oem_params``, and ``update_custom_oem_mime_type`` options (https://github.com/ansible-collections/community.general/pull/9123).
|
|
@ -1,2 +0,0 @@
|
|||
bugfixes:
|
||||
- dnf_config_manager - fix hanging when prompting to import GPG keys (https://github.com/ansible-collections/community.general/pull/9124, https://github.com/ansible-collections/community.general/issues/8830).
|
|
@ -1,2 +0,0 @@
|
|||
bugfixes:
|
||||
- homebrew_cask - allow ``+`` symbol in Homebrew cask name validation regex (https://github.com/ansible-collections/community.general/pull/9128).
|
|
@ -1,2 +0,0 @@
|
|||
minor_changes:
|
||||
- cloudflare_dns - add support for ``comment`` and ``tags`` (https://github.com/ansible-collections/community.general/pull/9132).
|
|
@ -1,2 +0,0 @@
|
|||
bugfixes:
|
||||
- dnf_config_manager - forces locale to ``C`` before module starts. If the locale was set to non-English, the output of the ``dnf config-manager`` could not be parsed (https://github.com/ansible-collections/community.general/pull/9157, https://github.com/ansible-collections/community.general/issues/9046).
|
|
@ -1,2 +0,0 @@
|
|||
minor_changes:
|
||||
- iso_extract - adds ``password`` parameter that is passed to 7z (https://github.com/ansible-collections/community.general/pull/9159).
|
|
@ -1,3 +0,0 @@
|
|||
minor_changes:
|
||||
- rpm_ostree_pkg - added the options ``apply_live`` (https://github.com/ansible-collections/community.general/pull/9167).
|
||||
- rpm_ostree_pkg - added the return value ``needs_reboot`` (https://github.com/ansible-collections/community.general/pull/9167).
|
|
@ -1,2 +0,0 @@
|
|||
minor_changes:
|
||||
- nmcli - add ``sriov`` parameter that enables support for SR-IOV settings (https://github.com/ansible-collections/community.general/pull/9168).
|
|
@ -1,2 +0,0 @@
|
|||
bugfixes:
|
||||
- gio_mime - fix command line when determining version of ``gio`` (https://github.com/ansible-collections/community.general/pull/9171, https://github.com/ansible-collections/community.general/issues/9158).
|
|
@ -1,2 +0,0 @@
|
|||
deprecated_features:
|
||||
- opkg - deprecate value ``""`` for parameter ``force`` (https://github.com/ansible-collections/community.general/pull/9172).
|
|
@ -1,2 +0,0 @@
|
|||
minor_changes:
|
||||
- deps module utils - add ``deps.clear()`` to clear out previously declared dependencies (https://github.com/ansible-collections/community.general/pull/9179).
|
|
@ -1,3 +0,0 @@
|
|||
minor_changes:
|
||||
- pipx - add return value ``version`` (https://github.com/ansible-collections/community.general/pull/9180).
|
||||
- pipx_info - add return value ``version`` (https://github.com/ansible-collections/community.general/pull/9180).
|
|
@ -1,2 +0,0 @@
|
|||
minor_changes:
|
||||
- homebrew - greatly speed up module when multiple packages are passed in the ``name`` option (https://github.com/ansible-collections/community.general/pull/9181).
|
|
@ -1,2 +0,0 @@
|
|||
bugfixes:
|
||||
- github_key - in check mode, a faulty call to ```datetime.strftime(...)``` was being made which generated an exception (https://github.com/ansible-collections/community.general/issues/9185).
|
|
@ -1,2 +0,0 @@
|
|||
bugfixes:
|
||||
- flatpak - force the locale language to ``C`` when running the flatpak command (https://github.com/ansible-collections/community.general/pull/9187, https://github.com/ansible-collections/community.general/issues/8883).
|
|
@ -1,2 +0,0 @@
|
|||
minor_changes:
|
||||
- scaleway_lb - minor simplification in the code (https://github.com/ansible-collections/community.general/pull/9189).
|
|
@ -1,4 +0,0 @@
|
|||
minor_changes:
|
||||
- redfish_utils module utils - remove redundant code (https://github.com/ansible-collections/community.general/pull/9190).
|
||||
deprecated_features:
|
||||
- redfish_utils module utils - deprecate method ``RedfishUtils._init_session()`` (https://github.com/ansible-collections/community.general/pull/9190).
|
|
@ -1,2 +0,0 @@
|
|||
bugfixes:
|
||||
- slack - fail if Slack API response is not OK with error message (https://github.com/ansible-collections/community.general/pull/9198).
|
|
@ -1,2 +0,0 @@
|
|||
bugfixes:
|
||||
- keycloak_clientscope_type - sort the default and optional clientscope lists to improve the diff (https://github.com/ansible-collections/community.general/pull/9202).
|
|
@ -1,2 +0,0 @@
|
|||
minor_changes:
|
||||
- ssh_config - add ``dynamicforward`` option (https://github.com/ansible-collections/community.general/pull/9192).
|
Loading…
Add table
Add a link
Reference in a new issue