diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d36847b4..d44493ed 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -11,21 +11,21 @@ v0.11.0 Major Changes ------------- -- helm - New module for managing Helm charts. -- helm_info - New module for retrieving Helm chart information. -- helm_repository - New module for managing Helm repositories. +- helm - New module for managing Helm charts (https://github.com/ansible-collections/community.kubernetes/pull/61). +- helm_info - New module for retrieving Helm chart information (https://github.com/ansible-collections/community.kubernetes/pull/61). +- helm_repository - New module for managing Helm repositories (https://github.com/ansible-collections/community.kubernetes/pull/61). Minor Changes ------------- -- Rename repository to ``community.kubernetes``. +- Rename repository to ``community.kubernetes`` (https://github.com/ansible-collections/community.kubernetes/pull/81). Bugfixes -------- -- Make sure extra files are not included in built collection. -- Update GitHub Actions workflow for better CI stability. -- k8s_log - Module no longer attempts to parse log as JSON. +- Make sure extra files are not included in built collection (https://github.com/ansible-collections/community.kubernetes/pull/85). +- Update GitHub Actions workflow for better CI stability (https://github.com/ansible-collections/community.kubernetes/pull/78). +- k8s_log - Module no longer attempts to parse log as JSON (https://github.com/ansible-collections/community.kubernetes/pull/69). New Modules ----------- @@ -40,27 +40,27 @@ v0.10.0 Major Changes ------------- -- k8s_exec - New module for executing commands on pods via Kubernetes API. -- k8s_log - New module for retrieving pod logs. +- k8s_exec - New module for executing commands on pods via Kubernetes API (https://github.com/ansible-collections/community.kubernetes/pull/14). +- k8s_log - New module for retrieving pod logs (https://github.com/ansible-collections/community.kubernetes/pull/16). Minor Changes ------------- -- k8s - Added ``persist_config`` option for persisting refreshed tokens. +- k8s - Added ``persist_config`` option for persisting refreshed tokens (https://github.com/ansible-collections/community.kubernetes/issues/49). Security Fixes -------------- -- kubectl - Warn about information disclosure when using options like ``kubectl_password``, ``kubectl_extra_args``, and ``kubectl_token`` to pass data through to the command line using the ``kubectl`` connection plugin. +- kubectl - Warn about information disclosure when using options like ``kubectl_password``, ``kubectl_extra_args``, and ``kubectl_token`` to pass data through to the command line using the ``kubectl`` connection plugin (https://github.com/ansible-collections/community.kubernetes/pull/51). Bugfixes -------- -- k8s - Add exception handling when retrieving k8s client. -- k8s - Fix argspec for 'elements'. -- k8s - Use ``from_yaml`` filter with lookup examples in ``k8s`` module documentation examples. -- k8s_service - Fix argspec. -- kubectl - Fix documentation in kubectl connection plugin. +- k8s - Add exception handling when retrieving k8s client (https://github.com/ansible-collections/community.kubernetes/pull/54). +- k8s - Fix argspec for 'elements' (https://github.com/ansible-collections/community.kubernetes/issues/13). +- k8s - Use ``from_yaml`` filter with lookup examples in ``k8s`` module documentation examples (https://github.com/ansible-collections/community.kubernetes/pull/56). +- k8s_service - Fix argspec (https://github.com/ansible-collections/community.kubernetes/issues/33). +- kubectl - Fix documentation in kubectl connection plugin (https://github.com/ansible-collections/community.kubernetes/pull/52). New Modules ----------- diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 5bb572f6..1f223768 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -3,21 +3,21 @@ releases: 0.10.0: changes: bugfixes: - - k8s - Add exception handling when retrieving k8s client. - - k8s - Fix argspec for 'elements'. + - k8s - Add exception handling when retrieving k8s client (https://github.com/ansible-collections/community.kubernetes/pull/54). + - k8s - Fix argspec for 'elements' (https://github.com/ansible-collections/community.kubernetes/issues/13). - k8s - Use ``from_yaml`` filter with lookup examples in ``k8s`` module documentation - examples. - - k8s_service - Fix argspec. - - kubectl - Fix documentation in kubectl connection plugin. + examples (https://github.com/ansible-collections/community.kubernetes/pull/56). + - k8s_service - Fix argspec (https://github.com/ansible-collections/community.kubernetes/issues/33). + - kubectl - Fix documentation in kubectl connection plugin (https://github.com/ansible-collections/community.kubernetes/pull/52). major_changes: - - k8s_exec - New module for executing commands on pods via Kubernetes API. - - k8s_log - New module for retrieving pod logs. + - k8s_exec - New module for executing commands on pods via Kubernetes API (https://github.com/ansible-collections/community.kubernetes/pull/14). + - k8s_log - New module for retrieving pod logs (https://github.com/ansible-collections/community.kubernetes/pull/16). minor_changes: - - k8s - Added ``persist_config`` option for persisting refreshed tokens. + - k8s - Added ``persist_config`` option for persisting refreshed tokens (https://github.com/ansible-collections/community.kubernetes/issues/49). security_fixes: - kubectl - Warn about information disclosure when using options like ``kubectl_password``, ``kubectl_extra_args``, and ``kubectl_token`` to pass data through to the - command line using the ``kubectl`` connection plugin. + command line using the ``kubectl`` connection plugin (https://github.com/ansible-collections/community.kubernetes/pull/51). fragments: - 13-fix-elements-argspec.yaml - 14-k8s_exec-new-module.yaml @@ -39,15 +39,15 @@ releases: 0.11.0: changes: bugfixes: - - Make sure extra files are not included in built collection. - - Update GitHub Actions workflow for better CI stability. - - k8s_log - Module no longer attempts to parse log as JSON. + - Make sure extra files are not included in built collection (https://github.com/ansible-collections/community.kubernetes/pull/85). + - Update GitHub Actions workflow for better CI stability (https://github.com/ansible-collections/community.kubernetes/pull/78). + - k8s_log - Module no longer attempts to parse log as JSON (https://github.com/ansible-collections/community.kubernetes/pull/69). major_changes: - - helm - New module for managing Helm charts. - - helm_info - New module for retrieving Helm chart information. - - helm_repository - New module for managing Helm repositories. + - helm - New module for managing Helm charts (https://github.com/ansible-collections/community.kubernetes/pull/61). + - helm_info - New module for retrieving Helm chart information (https://github.com/ansible-collections/community.kubernetes/pull/61). + - helm_repository - New module for managing Helm repositories (https://github.com/ansible-collections/community.kubernetes/pull/61). minor_changes: - - Rename repository to ``community.kubernetes``. + - Rename repository to ``community.kubernetes`` (https://github.com/ansible-collections/community.kubernetes/pull/81). fragments: - 61-helm-new-modules.yaml - 69-k8s_log-dont-parse-as-json.yaml diff --git a/changelogs/fragments/13-fix-elements-argspec.yaml b/changelogs/fragments/13-fix-elements-argspec.yaml index b224d921..a9e7ef89 100644 --- a/changelogs/fragments/13-fix-elements-argspec.yaml +++ b/changelogs/fragments/13-fix-elements-argspec.yaml @@ -1,3 +1,3 @@ --- bugfixes: - - k8s - Fix argspec for 'elements'. + - k8s - Fix argspec for 'elements' (https://github.com/ansible-collections/community.kubernetes/issues/13). diff --git a/changelogs/fragments/14-k8s_exec-new-module.yaml b/changelogs/fragments/14-k8s_exec-new-module.yaml index d2aaf93a..40594b80 100644 --- a/changelogs/fragments/14-k8s_exec-new-module.yaml +++ b/changelogs/fragments/14-k8s_exec-new-module.yaml @@ -1,3 +1,3 @@ --- major_changes: - - k8s_exec - New module for executing commands on pods via Kubernetes API. + - k8s_exec - New module for executing commands on pods via Kubernetes API (https://github.com/ansible-collections/community.kubernetes/pull/14). diff --git a/changelogs/fragments/16-k8s_log-new-module.yaml b/changelogs/fragments/16-k8s_log-new-module.yaml index 06abbf49..e6ae7335 100644 --- a/changelogs/fragments/16-k8s_log-new-module.yaml +++ b/changelogs/fragments/16-k8s_log-new-module.yaml @@ -1,3 +1,3 @@ --- major_changes: - - k8s_log - New module for retrieving pod logs. + - k8s_log - New module for retrieving pod logs (https://github.com/ansible-collections/community.kubernetes/pull/16). diff --git a/changelogs/fragments/33-k8s_service-fix-argspec.yaml b/changelogs/fragments/33-k8s_service-fix-argspec.yaml index bbf2af8b..91daa0d6 100644 --- a/changelogs/fragments/33-k8s_service-fix-argspec.yaml +++ b/changelogs/fragments/33-k8s_service-fix-argspec.yaml @@ -1,3 +1,3 @@ --- bugfixes: - - k8s_service - Fix argspec. + - k8s_service - Fix argspec (https://github.com/ansible-collections/community.kubernetes/issues/33). diff --git a/changelogs/fragments/49-k8s-add-persist_config-option.yaml b/changelogs/fragments/49-k8s-add-persist_config-option.yaml index 654cf30c..ef4c3f4d 100644 --- a/changelogs/fragments/49-k8s-add-persist_config-option.yaml +++ b/changelogs/fragments/49-k8s-add-persist_config-option.yaml @@ -1,3 +1,3 @@ --- minor_changes: - - k8s - Added ``persist_config`` option for persisting refreshed tokens. + - k8s - Added ``persist_config`` option for persisting refreshed tokens (https://github.com/ansible-collections/community.kubernetes/issues/49). diff --git a/changelogs/fragments/51-kubectl-security-disclosure.yaml b/changelogs/fragments/51-kubectl-security-disclosure.yaml index e0062b45..0d2fd915 100644 --- a/changelogs/fragments/51-kubectl-security-disclosure.yaml +++ b/changelogs/fragments/51-kubectl-security-disclosure.yaml @@ -1,3 +1,3 @@ --- security_fixes: - - kubectl - Warn about information disclosure when using options like ``kubectl_password``, ``kubectl_extra_args``, and ``kubectl_token`` to pass data through to the command line using the ``kubectl`` connection plugin. + - kubectl - Warn about information disclosure when using options like ``kubectl_password``, ``kubectl_extra_args``, and ``kubectl_token`` to pass data through to the command line using the ``kubectl`` connection plugin (https://github.com/ansible-collections/community.kubernetes/pull/51). diff --git a/changelogs/fragments/52-kubectl-connection-docsfix.yaml b/changelogs/fragments/52-kubectl-connection-docsfix.yaml index 44ef97a0..ff71021c 100644 --- a/changelogs/fragments/52-kubectl-connection-docsfix.yaml +++ b/changelogs/fragments/52-kubectl-connection-docsfix.yaml @@ -1,3 +1,3 @@ --- bugfixes: - - kubectl - Fix documentation in kubectl connection plugin. + - kubectl - Fix documentation in kubectl connection plugin (https://github.com/ansible-collections/community.kubernetes/pull/52). diff --git a/changelogs/fragments/54-k8s-add-exception-handling.yaml b/changelogs/fragments/54-k8s-add-exception-handling.yaml index e251ed09..73fd6c54 100644 --- a/changelogs/fragments/54-k8s-add-exception-handling.yaml +++ b/changelogs/fragments/54-k8s-add-exception-handling.yaml @@ -1,3 +1,3 @@ --- bugfixes: - - k8s - Add exception handling when retrieving k8s client. + - k8s - Add exception handling when retrieving k8s client (https://github.com/ansible-collections/community.kubernetes/pull/54). diff --git a/changelogs/fragments/56-k8s-from_yaml-docs-examples.yaml b/changelogs/fragments/56-k8s-from_yaml-docs-examples.yaml index e8fdf00c..399b1ef8 100644 --- a/changelogs/fragments/56-k8s-from_yaml-docs-examples.yaml +++ b/changelogs/fragments/56-k8s-from_yaml-docs-examples.yaml @@ -1,3 +1,3 @@ --- bugfixes: - - k8s - Use ``from_yaml`` filter with lookup examples in ``k8s`` module documentation examples. + - k8s - Use ``from_yaml`` filter with lookup examples in ``k8s`` module documentation examples (https://github.com/ansible-collections/community.kubernetes/pull/56). diff --git a/changelogs/fragments/61-helm-new-modules.yaml b/changelogs/fragments/61-helm-new-modules.yaml index ff10c2b4..d741500d 100644 --- a/changelogs/fragments/61-helm-new-modules.yaml +++ b/changelogs/fragments/61-helm-new-modules.yaml @@ -1,5 +1,5 @@ --- major_changes: - - helm - New module for managing Helm charts. - - helm_info - New module for retrieving Helm chart information. - - helm_repository - New module for managing Helm repositories. + - helm - New module for managing Helm charts (https://github.com/ansible-collections/community.kubernetes/pull/61). + - helm_info - New module for retrieving Helm chart information (https://github.com/ansible-collections/community.kubernetes/pull/61). + - helm_repository - New module for managing Helm repositories (https://github.com/ansible-collections/community.kubernetes/pull/61). diff --git a/changelogs/fragments/69-k8s_log-dont-parse-as-json.yaml b/changelogs/fragments/69-k8s_log-dont-parse-as-json.yaml index a899faed..bf34a741 100644 --- a/changelogs/fragments/69-k8s_log-dont-parse-as-json.yaml +++ b/changelogs/fragments/69-k8s_log-dont-parse-as-json.yaml @@ -1,3 +1,3 @@ --- bugfixes: - - k8s_log - Module no longer attempts to parse log as JSON. + - k8s_log - Module no longer attempts to parse log as JSON (https://github.com/ansible-collections/community.kubernetes/pull/69). diff --git a/changelogs/fragments/78-github-actions-workflow.yaml b/changelogs/fragments/78-github-actions-workflow.yaml index aff29987..7985746e 100644 --- a/changelogs/fragments/78-github-actions-workflow.yaml +++ b/changelogs/fragments/78-github-actions-workflow.yaml @@ -1,3 +1,3 @@ --- bugfixes: - - Update GitHub Actions workflow for better CI stability. + - Update GitHub Actions workflow for better CI stability (https://github.com/ansible-collections/community.kubernetes/pull/78). diff --git a/changelogs/fragments/81-rename-repository.yaml b/changelogs/fragments/81-rename-repository.yaml index 05ceb574..dd77b24e 100644 --- a/changelogs/fragments/81-rename-repository.yaml +++ b/changelogs/fragments/81-rename-repository.yaml @@ -1,3 +1,3 @@ --- minor_changes: - - Rename repository to ``community.kubernetes``. + - Rename repository to ``community.kubernetes`` (https://github.com/ansible-collections/community.kubernetes/pull/81). diff --git a/changelogs/fragments/85-exclude-unnecessary-files-when-building.yaml b/changelogs/fragments/85-exclude-unnecessary-files-when-building.yaml index fd7e6d68..f7f4be75 100644 --- a/changelogs/fragments/85-exclude-unnecessary-files-when-building.yaml +++ b/changelogs/fragments/85-exclude-unnecessary-files-when-building.yaml @@ -1,3 +1,3 @@ --- bugfixes: - - Make sure extra files are not included in built collection. + - Make sure extra files are not included in built collection (https://github.com/ansible-collections/community.kubernetes/pull/85).