mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Release 3.3.0.
This commit is contained in:
parent
d827601c95
commit
36f64367cf
33 changed files with 174 additions and 86 deletions
|
@ -6,6 +6,74 @@ Community General Release Notes
|
||||||
|
|
||||||
This changelog describes changes after version 2.0.0.
|
This changelog describes changes after version 2.0.0.
|
||||||
|
|
||||||
|
v3.3.0
|
||||||
|
======
|
||||||
|
|
||||||
|
Release Summary
|
||||||
|
---------------
|
||||||
|
|
||||||
|
Regular feature and bugfix release.
|
||||||
|
|
||||||
|
Minor Changes
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- Avoid internal ansible-core module_utils in favor of equivalent public API available since at least Ansible 2.9 (https://github.com/ansible-collections/community.general/pull/2877).
|
||||||
|
- datadog_event - adding parameter ``api_host`` to allow selecting a datadog API endpoint instead of using the default one (https://github.com/ansible-collections/community.general/issues/2774, https://github.com/ansible-collections/community.general/pull/2775).
|
||||||
|
- flatpak - allows installing or uninstalling a list of packages (https://github.com/ansible-collections/community.general/pull/2521).
|
||||||
|
- gem - add ``bindir`` option to specify an installation path for executables such as ``/home/user/bin`` or ``/home/user/.local/bin`` (https://github.com/ansible-collections/community.general/pull/2837).
|
||||||
|
- gem - add ``norc`` option to avoid loading any ``.gemrc`` file (https://github.com/ansible-collections/community.general/pull/2837).
|
||||||
|
- gitlab_project - projects can be created under other user's namespaces with the new ``username`` option (https://github.com/ansible-collections/community.general/pull/2824).
|
||||||
|
- gitlab_user - add functionality for adding external identity providers to a GitLab user (https://github.com/ansible-collections/community.general/pull/2691).
|
||||||
|
- gitlab_user - allow to reset an existing password with the new ``reset_password`` option (https://github.com/ansible-collections/community.general/pull/2691).
|
||||||
|
- gitlab_user - specifying a password is no longer necessary (https://github.com/ansible-collections/community.general/pull/2691).
|
||||||
|
- jenkins_build - support stopping a running jenkins build (https://github.com/ansible-collections/community.general/pull/2850).
|
||||||
|
- jenkins_plugin - add fallback url(s) for failure of plugin installation/download (https://github.com/ansible-collections/community.general/pull/1334).
|
||||||
|
- nmcli - add ``disabled`` value to ``method6`` option (https://github.com/ansible-collections/community.general/issues/2730).
|
||||||
|
- nmcli - add ``routing_rules4`` and ``may_fail4`` options (https://github.com/ansible-collections/community.general/issues/2730).
|
||||||
|
- nrdp callback plugin - parameters are now converted to strings, except ``validate_certs`` which is converted to boolean (https://github.com/ansible-collections/community.general/pull/2878).
|
||||||
|
- redhat_subscription - add ``server_prefix`` and ``server_port`` parameters (https://github.com/ansible-collections/community.general/pull/2779).
|
||||||
|
- redis - allow to use the term ``replica`` instead of ``slave``, which has been the official Redis terminology since 2018 (https://github.com/ansible-collections/community.general/pull/2867).
|
||||||
|
- snap - added ``enabled`` and ``disabled`` states (https://github.com/ansible-collections/community.general/issues/1990).
|
||||||
|
- splunk callback plugin - add ``batch`` option for user-configurable correlation ID's (https://github.com/ansible-collections/community.general/issues/2790).
|
||||||
|
- terraform - add ``check_destroy`` optional parameter to check for deletion of resources before it is applied (https://github.com/ansible-collections/community.general/pull/2874).
|
||||||
|
- timezone - print error message to debug instead of warning when timedatectl fails (https://github.com/ansible-collections/community.general/issues/1942).
|
||||||
|
|
||||||
|
Deprecated Features
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
- ali_instance_info - marked removal version of deprecated parameters ``availability_zone`` and ``instance_names`` (https://github.com/ansible-collections/community.general/issues/2429).
|
||||||
|
- serverless - deprecating parameter ``functions`` because it was not used in the code (https://github.com/ansible-collections/community.general/pull/2845).
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
--------
|
||||||
|
|
||||||
|
- _mount module utils - fixed the sanity checks (https://github.com/ansible-collections/community.general/pull/2883).
|
||||||
|
- archive - fixed ``exclude_path`` values causing incorrect archive root (https://github.com/ansible-collections/community.general/pull/2816).
|
||||||
|
- archive - fixed improper file names for single file zip archives (https://github.com/ansible-collections/community.general/issues/2818).
|
||||||
|
- archive - fixed incorrect ``state`` result value documentation (https://github.com/ansible-collections/community.general/pull/2816).
|
||||||
|
- gitlab_project - user projects are created using namespace ID now, instead of user ID (https://github.com/ansible-collections/community.general/pull/2881).
|
||||||
|
- ini_file - fix Unicode processing for Python 2 (https://github.com/ansible-collections/community.general/pull/2875).
|
||||||
|
- ipa_sudorule - call ``sudorule_add_allow_command`` method instead of ``sudorule_add_allow_command_group`` (https://github.com/ansible-collections/community.general/issues/2442).
|
||||||
|
- java_keystore - add parameter ``keystore_type`` to control output file format and override ``keytool``'s default, which depends on Java version (https://github.com/ansible-collections/community.general/issues/2515).
|
||||||
|
- jenkins_build - examine presence of ``build_number`` before deleting a jenkins build (https://github.com/ansible-collections/community.general/pull/2850).
|
||||||
|
- modprobe - added additional checks to ensure module load/unload is effective (https://github.com/ansible-collections/community.general/issues/1608).
|
||||||
|
- nmcli - fixes team-slave configuration by adding connection.slave-type (https://github.com/ansible-collections/community.general/issues/766).
|
||||||
|
- npm - when the ``version`` option is used the comparison of installed vs missing will use name@version instead of just name, allowing version specific updates (https://github.com/ansible-collections/community.general/issues/2021).
|
||||||
|
- proxmox_kvm - fix parsing of Proxmox VM information with device info not containing a comma, like disks backed by ZFS zvols (https://github.com/ansible-collections/community.general/issues/2840).
|
||||||
|
- scaleway plugin inventory - fix ``JSON object must be str, not 'bytes'`` with Python 3.5 (https://github.com/ansible-collections/community.general/issues/2769).
|
||||||
|
- yum_versionlock - fix idempotency when using wildcard (asterisk) in ``name`` option (https://github.com/ansible-collections/community.general/issues/2761).
|
||||||
|
|
||||||
|
New Modules
|
||||||
|
-----------
|
||||||
|
|
||||||
|
Identity
|
||||||
|
~~~~~~~~
|
||||||
|
|
||||||
|
keycloak
|
||||||
|
^^^^^^^^
|
||||||
|
|
||||||
|
- keycloak_authentication - Configure authentication in Keycloak
|
||||||
|
|
||||||
v3.2.0
|
v3.2.0
|
||||||
======
|
======
|
||||||
|
|
||||||
|
|
|
@ -1286,3 +1286,109 @@ releases:
|
||||||
name: random_string
|
name: random_string
|
||||||
namespace: null
|
namespace: null
|
||||||
release_date: '2021-06-08'
|
release_date: '2021-06-08'
|
||||||
|
3.3.0:
|
||||||
|
changes:
|
||||||
|
bugfixes:
|
||||||
|
- _mount module utils - fixed the sanity checks (https://github.com/ansible-collections/community.general/pull/2883).
|
||||||
|
- archive - fixed ``exclude_path`` values causing incorrect archive root (https://github.com/ansible-collections/community.general/pull/2816).
|
||||||
|
- archive - fixed improper file names for single file zip archives (https://github.com/ansible-collections/community.general/issues/2818).
|
||||||
|
- archive - fixed incorrect ``state`` result value documentation (https://github.com/ansible-collections/community.general/pull/2816).
|
||||||
|
- gitlab_project - user projects are created using namespace ID now, instead
|
||||||
|
of user ID (https://github.com/ansible-collections/community.general/pull/2881).
|
||||||
|
- ini_file - fix Unicode processing for Python 2 (https://github.com/ansible-collections/community.general/pull/2875).
|
||||||
|
- ipa_sudorule - call ``sudorule_add_allow_command`` method instead of ``sudorule_add_allow_command_group``
|
||||||
|
(https://github.com/ansible-collections/community.general/issues/2442).
|
||||||
|
- java_keystore - add parameter ``keystore_type`` to control output file format
|
||||||
|
and override ``keytool``'s default, which depends on Java version (https://github.com/ansible-collections/community.general/issues/2515).
|
||||||
|
- jenkins_build - examine presence of ``build_number`` before deleting a jenkins
|
||||||
|
build (https://github.com/ansible-collections/community.general/pull/2850).
|
||||||
|
- modprobe - added additional checks to ensure module load/unload is effective
|
||||||
|
(https://github.com/ansible-collections/community.general/issues/1608).
|
||||||
|
- nmcli - fixes team-slave configuration by adding connection.slave-type (https://github.com/ansible-collections/community.general/issues/766).
|
||||||
|
- npm - when the ``version`` option is used the comparison of installed vs missing
|
||||||
|
will use name@version instead of just name, allowing version specific updates
|
||||||
|
(https://github.com/ansible-collections/community.general/issues/2021).
|
||||||
|
- proxmox_kvm - fix parsing of Proxmox VM information with device info not containing
|
||||||
|
a comma, like disks backed by ZFS zvols (https://github.com/ansible-collections/community.general/issues/2840).
|
||||||
|
- scaleway plugin inventory - fix ``JSON object must be str, not 'bytes'`` with
|
||||||
|
Python 3.5 (https://github.com/ansible-collections/community.general/issues/2769).
|
||||||
|
- yum_versionlock - fix idempotency when using wildcard (asterisk) in ``name``
|
||||||
|
option (https://github.com/ansible-collections/community.general/issues/2761).
|
||||||
|
deprecated_features:
|
||||||
|
- ali_instance_info - marked removal version of deprecated parameters ``availability_zone``
|
||||||
|
and ``instance_names`` (https://github.com/ansible-collections/community.general/issues/2429).
|
||||||
|
- serverless - deprecating parameter ``functions`` because it was not used in
|
||||||
|
the code (https://github.com/ansible-collections/community.general/pull/2845).
|
||||||
|
minor_changes:
|
||||||
|
- Avoid internal ansible-core module_utils in favor of equivalent public API
|
||||||
|
available since at least Ansible 2.9 (https://github.com/ansible-collections/community.general/pull/2877).
|
||||||
|
- datadog_event - adding parameter ``api_host`` to allow selecting a datadog
|
||||||
|
API endpoint instead of using the default one (https://github.com/ansible-collections/community.general/issues/2774,
|
||||||
|
https://github.com/ansible-collections/community.general/pull/2775).
|
||||||
|
- flatpak - allows installing or uninstalling a list of packages (https://github.com/ansible-collections/community.general/pull/2521).
|
||||||
|
- gem - add ``bindir`` option to specify an installation path for executables
|
||||||
|
such as ``/home/user/bin`` or ``/home/user/.local/bin`` (https://github.com/ansible-collections/community.general/pull/2837).
|
||||||
|
- gem - add ``norc`` option to avoid loading any ``.gemrc`` file (https://github.com/ansible-collections/community.general/pull/2837).
|
||||||
|
- gitlab_project - projects can be created under other user's namespaces with
|
||||||
|
the new ``username`` option (https://github.com/ansible-collections/community.general/pull/2824).
|
||||||
|
- gitlab_user - add functionality for adding external identity providers to
|
||||||
|
a GitLab user (https://github.com/ansible-collections/community.general/pull/2691).
|
||||||
|
- gitlab_user - allow to reset an existing password with the new ``reset_password``
|
||||||
|
option (https://github.com/ansible-collections/community.general/pull/2691).
|
||||||
|
- gitlab_user - specifying a password is no longer necessary (https://github.com/ansible-collections/community.general/pull/2691).
|
||||||
|
- jenkins_build - support stopping a running jenkins build (https://github.com/ansible-collections/community.general/pull/2850).
|
||||||
|
- jenkins_plugin - add fallback url(s) for failure of plugin installation/download
|
||||||
|
(https://github.com/ansible-collections/community.general/pull/1334).
|
||||||
|
- nmcli - add ``disabled`` value to ``method6`` option (https://github.com/ansible-collections/community.general/issues/2730).
|
||||||
|
- nmcli - add ``routing_rules4`` and ``may_fail4`` options (https://github.com/ansible-collections/community.general/issues/2730).
|
||||||
|
- nrdp callback plugin - parameters are now converted to strings, except ``validate_certs``
|
||||||
|
which is converted to boolean (https://github.com/ansible-collections/community.general/pull/2878).
|
||||||
|
- redhat_subscription - add ``server_prefix`` and ``server_port`` parameters
|
||||||
|
(https://github.com/ansible-collections/community.general/pull/2779).
|
||||||
|
- redis - allow to use the term ``replica`` instead of ``slave``, which has
|
||||||
|
been the official Redis terminology since 2018 (https://github.com/ansible-collections/community.general/pull/2867).
|
||||||
|
- snap - added ``enabled`` and ``disabled`` states (https://github.com/ansible-collections/community.general/issues/1990).
|
||||||
|
- splunk callback plugin - add ``batch`` option for user-configurable correlation
|
||||||
|
ID's (https://github.com/ansible-collections/community.general/issues/2790).
|
||||||
|
- terraform - add ``check_destroy`` optional parameter to check for deletion
|
||||||
|
of resources before it is applied (https://github.com/ansible-collections/community.general/pull/2874).
|
||||||
|
- timezone - print error message to debug instead of warning when timedatectl
|
||||||
|
fails (https://github.com/ansible-collections/community.general/issues/1942).
|
||||||
|
release_summary: Regular feature and bugfix release.
|
||||||
|
fragments:
|
||||||
|
- 1334-jenkins-plugin-fallback-urls.yaml
|
||||||
|
- 1942_timezone.yml
|
||||||
|
- 2411-snap-revamp-enabled-disabled-states.yml
|
||||||
|
- 2516_fix_2515_keystore_type_jks.yml
|
||||||
|
- 2521-flatpak-list.yml
|
||||||
|
- 2691-gitlab_user-support-identity-provider.yml
|
||||||
|
- 2732-nmcli_add_options.yml
|
||||||
|
- 2771-scaleway_inventory_json_accept_byte_array.yml
|
||||||
|
- 2774-datadog_event_api_parameter.yml
|
||||||
|
- 2779_redhat_subscription-add_server_prefix_and_server_port.yml
|
||||||
|
- 2787-yum_versionlock-fix_idempotency_when_using_wildcard.yml
|
||||||
|
- 2790-callback_splunk-batch-option.yml
|
||||||
|
- 2816-archive-refactor.yml
|
||||||
|
- 2821-ipa_sudorule.yml
|
||||||
|
- 2824-gitlab_project-project-under-user.yml
|
||||||
|
- 2827-nmcli_fix_team_slave.yml
|
||||||
|
- 2830-npm-version-update.yml
|
||||||
|
- 2841-proxmox_kvm_zfs_devstr.yml
|
||||||
|
- 2843-modprobe-failure-conditions.yml
|
||||||
|
- 2844-ali_instance_info-deprecate-params.yml
|
||||||
|
- 2845-serverless-deprecate-functions-param.yml
|
||||||
|
- 2850-jenkins_build-support-stop-jenkins-build.yml
|
||||||
|
- 2867-redis-terminology.yml
|
||||||
|
- 2874-terraform-check-destroy.yml
|
||||||
|
- 2875-ini_file-unicode.yml
|
||||||
|
- 2878-validate-certs-bool.yml
|
||||||
|
- 2881-gitlab_project-fix_workspace_user.yaml
|
||||||
|
- 2883-_mount-fixed-sanity-checks.yml
|
||||||
|
- 3.3.0.yml
|
||||||
|
- ansible-core-_text.yml
|
||||||
|
- gem_module_add_bindir_option.yml
|
||||||
|
modules:
|
||||||
|
- description: Configure authentication in Keycloak
|
||||||
|
name: keycloak_authentication
|
||||||
|
namespace: identity.keycloak
|
||||||
|
release_date: '2021-06-29'
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
minor_changes:
|
|
||||||
- jenkins_plugin - add fallback url(s) for failure of plugin installation/download (https://github.com/ansible-collections/community.general/pull/1334).
|
|
|
@ -1,3 +0,0 @@
|
||||||
---
|
|
||||||
minor_changes:
|
|
||||||
- timezone - print error message to debug instead of warning when timedatectl fails (https://github.com/ansible-collections/community.general/issues/1942).
|
|
|
@ -1,2 +0,0 @@
|
||||||
minor_changes:
|
|
||||||
- snap - added ``enabled`` and ``disabled`` states (https://github.com/ansible-collections/community.general/issues/1990).
|
|
|
@ -1,4 +0,0 @@
|
||||||
---
|
|
||||||
bugfixes:
|
|
||||||
- "java_keystore - add parameter ``keystore_type`` to control output file format and override ``keytool``'s
|
|
||||||
default, which depends on Java version (https://github.com/ansible-collections/community.general/issues/2515)."
|
|
|
@ -1,2 +0,0 @@
|
||||||
minor_changes:
|
|
||||||
- flatpak - allows installing or uninstalling a list of packages (https://github.com/ansible-collections/community.general/pull/2521).
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
minor_changes:
|
|
||||||
- "gitlab_user - specifying a password is no longer necessary (https://github.com/ansible-collections/community.general/pull/2691)."
|
|
||||||
- "gitlab_user - allow to reset an existing password with the new ``reset_password`` option (https://github.com/ansible-collections/community.general/pull/2691)."
|
|
||||||
- "gitlab_user - add functionality for adding external identity providers to a GitLab user (https://github.com/ansible-collections/community.general/pull/2691)."
|
|
|
@ -1,3 +0,0 @@
|
||||||
minor_changes:
|
|
||||||
- nmcli - add ``routing_rules4`` and ``may_fail4`` options (https://github.com/ansible-collections/community.general/issues/2730).
|
|
||||||
- nmcli - add ``disabled`` value to ``method6`` option (https://github.com/ansible-collections/community.general/issues/2730).
|
|
|
@ -1,3 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- scaleway plugin inventory - fix ``JSON object must be str, not 'bytes'`` with Python 3.5
|
|
||||||
(https://github.com/ansible-collections/community.general/issues/2769).
|
|
|
@ -1,2 +0,0 @@
|
||||||
minor_changes:
|
|
||||||
- "datadog_event - adding parameter ``api_host`` to allow selecting a datadog API endpoint instead of using the default one (https://github.com/ansible-collections/community.general/issues/2774, https://github.com/ansible-collections/community.general/pull/2775)."
|
|
|
@ -1,2 +0,0 @@
|
||||||
minor_changes:
|
|
||||||
- redhat_subscription - add ``server_prefix`` and ``server_port`` parameters (https://github.com/ansible-collections/community.general/pull/2779).
|
|
|
@ -1,3 +0,0 @@
|
||||||
---
|
|
||||||
bugfixes:
|
|
||||||
- yum_versionlock - fix idempotency when using wildcard (asterisk) in ``name`` option (https://github.com/ansible-collections/community.general/issues/2761).
|
|
|
@ -1,3 +0,0 @@
|
||||||
---
|
|
||||||
minor_changes:
|
|
||||||
- splunk callback plugin - add ``batch`` option for user-configurable correlation ID's (https://github.com/ansible-collections/community.general/issues/2790).
|
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
bugfixes:
|
|
||||||
- archive - fixed incorrect ``state`` result value documentation (https://github.com/ansible-collections/community.general/pull/2816).
|
|
||||||
- archive - fixed ``exclude_path`` values causing incorrect archive root (https://github.com/ansible-collections/community.general/pull/2816).
|
|
||||||
- archive - fixed improper file names for single file zip archives (https://github.com/ansible-collections/community.general/issues/2818).
|
|
|
@ -1,4 +0,0 @@
|
||||||
---
|
|
||||||
bugfixes:
|
|
||||||
- "ipa_sudorule - call ``sudorule_add_allow_command`` method instead of ``sudorule_add_allow_command_group``
|
|
||||||
(https://github.com/ansible-collections/community.general/issues/2442)."
|
|
|
@ -1,3 +0,0 @@
|
||||||
---
|
|
||||||
minor_changes:
|
|
||||||
- gitlab_project - projects can be created under other user's namespaces with the new ``username`` option (https://github.com/ansible-collections/community.general/pull/2824).
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- nmcli - fixes team-slave configuration by adding connection.slave-type (https://github.com/ansible-collections/community.general/issues/766).
|
|
|
@ -1,4 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- "npm - when the ``version`` option is used the comparison of installed vs missing will
|
|
||||||
use name@version instead of just name, allowing version specific updates
|
|
||||||
(https://github.com/ansible-collections/community.general/issues/2021)."
|
|
|
@ -1,4 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- "proxmox_kvm - fix parsing of Proxmox VM information with device info not containing
|
|
||||||
a comma, like disks backed by ZFS zvols
|
|
||||||
(https://github.com/ansible-collections/community.general/issues/2840)."
|
|
|
@ -1,3 +0,0 @@
|
||||||
---
|
|
||||||
bugfixes:
|
|
||||||
- modprobe - added additional checks to ensure module load/unload is effective (https://github.com/ansible-collections/community.general/issues/1608).
|
|
|
@ -1,2 +0,0 @@
|
||||||
deprecated_features:
|
|
||||||
- ali_instance_info - marked removal version of deprecated parameters ``availability_zone`` and ``instance_names`` (https://github.com/ansible-collections/community.general/issues/2429).
|
|
|
@ -1,2 +0,0 @@
|
||||||
deprecated_features:
|
|
||||||
- serverless - deprecating parameter ``functions`` because it was not used in the code (https://github.com/ansible-collections/community.general/pull/2845).
|
|
|
@ -1,4 +0,0 @@
|
||||||
minor_changes:
|
|
||||||
- jenkins_build - support stopping a running jenkins build (https://github.com/ansible-collections/community.general/pull/2850).
|
|
||||||
bugfixes:
|
|
||||||
- jenkins_build - examine presence of ``build_number`` before deleting a jenkins build (https://github.com/ansible-collections/community.general/pull/2850).
|
|
|
@ -1,2 +0,0 @@
|
||||||
minor_changes:
|
|
||||||
- "redis - allow to use the term ``replica`` instead of ``slave``, which has been the official Redis terminology since 2018 (https://github.com/ansible-collections/community.general/pull/2867)."
|
|
|
@ -1,2 +0,0 @@
|
||||||
minor_changes:
|
|
||||||
- terraform - add ``check_destroy`` optional parameter to check for deletion of resources before it is applied (https://github.com/ansible-collections/community.general/pull/2874).
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- "ini_file - fix Unicode processing for Python 2 (https://github.com/ansible-collections/community.general/pull/2875)."
|
|
|
@ -1,2 +0,0 @@
|
||||||
minor_changes:
|
|
||||||
- "nrdp callback plugin - parameters are now converted to strings, except ``validate_certs`` which is converted to boolean (https://github.com/ansible-collections/community.general/pull/2878)."
|
|
|
@ -1,3 +0,0 @@
|
||||||
---
|
|
||||||
bugfixes:
|
|
||||||
- gitlab_project - user projects are created using namespace ID now, instead of user ID (https://github.com/ansible-collections/community.general/pull/2881).
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- _mount module utils - fixed the sanity checks (https://github.com/ansible-collections/community.general/pull/2883).
|
|
|
@ -1 +0,0 @@
|
||||||
release_summary: Regular feature and bugfix release.
|
|
|
@ -1,2 +0,0 @@
|
||||||
minor_changes:
|
|
||||||
- "Avoid internal ansible-core module_utils in favor of equivalent public API available since at least Ansible 2.9 (https://github.com/ansible-collections/community.general/pull/2877)."
|
|
|
@ -1,3 +0,0 @@
|
||||||
minor_changes:
|
|
||||||
- gem - add ``bindir`` option to specify an installation path for executables such as ``/home/user/bin`` or ``/home/user/.local/bin`` (https://github.com/ansible-collections/community.general/pull/2837).
|
|
||||||
- gem - add ``norc`` option to avoid loading any ``.gemrc`` file (https://github.com/ansible-collections/community.general/pull/2837).
|
|
Loading…
Reference in a new issue