diff --git a/.ansible-lint b/.ansible-lint index 4daa39d..8760841 100644 --- a/.ansible-lint +++ b/.ansible-lint @@ -2,6 +2,5 @@ profile: production exclude_paths: - 'changelogs/' -parseable: true use_default_rules: true ... diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index fcb7c11..2afd290 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -35,6 +35,9 @@ jobs: run: tools/scripts/get_aap_gateway_and_dab.py working-directory: ansible-platform + - name: Expose collection checkout to aap-gateway build + run: ln -s "${{ github.workspace }}/ansible-platform" "${{ github.workspace }}/aap-gateway/ansible.platform" + - name: Build the image run: make docker-compose-build working-directory: aap-gateway diff --git a/galaxy.yml b/galaxy.yml index 81b25a1..beb1e58 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -2,7 +2,7 @@ namespace: ansible name: platform description: A collection of roles to manage Ansible automation platform gateway -version: 2.5.20250326 +version: 2.6.20251106 readme: README.md authors: - automation platform gateway # TBD diff --git a/plugins/modules/user.py b/plugins/modules/user.py index 9e17cf7..eca4e25 100644 --- a/plugins/modules/user.py +++ b/plugins/modules/user.py @@ -176,7 +176,7 @@ def main(): module.deprecate( msg="Configuring organizations via `ansible.platform.user` is not the recommended approach. " "The preferred method going forward is to use the `ansible.platform.role_user_assignment` module.", - date="2026-01-31", + date="2026-05-20", collection_name="ansible.platform", ) @@ -184,7 +184,7 @@ def main(): module.deprecate( msg="Configuring auditor via `ansible.platform.user` is not the recommended approach. " "The preferred method going forward is to use the `ansible.platform.role_user_assignment` module.", - date="2026-01-31", + date="2026-05-20", collection_name="ansible.platform", ) @@ -192,7 +192,7 @@ def main(): module.deprecate( msg="The 'authenticator_uid' parameter is deprecated and will be removed in a future version. " "Please use 'associated_authenticators' instead to specify UIDs per authenticator.", - date="2026-01-31", + date="2026-05-20", collection_name="ansible.platform", ) @@ -200,7 +200,7 @@ def main(): module.deprecate( msg="The 'authenticators' parameter is deprecated and will be removed in a future version. " "Please use 'associated_authenticators' instead to specify authenticator associations.", - date="2026-01-31", + date="2026-05-20", collection_name="ansible.platform", )