diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7669898a..a4ce7c58 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,19 @@ Kubernetes Collection Release Notes .. contents:: Topics +v5.4.0 +====== + +Release Summary +--------------- + +This release updates the ``helm_registry_auth`` module to match the behavior of ``helm >= 3.18.0`` which reports a successful logout regardless of the current state (i.e., no idempotency). + +Minor Changes +------------- + +- Module ``helm_registry_auth`` does not support idempotency with ``helm >= 3.18.0`` (https://github.com/ansible-collections/kubernetes.core/pull/946) + v5.3.0 ====== @@ -124,7 +137,10 @@ Bugfixes - integrations test helm_kubeconfig - set helm version to v3.10.3 to avoid incompatability with new bitnami charts (https://github.com/ansible-collections/kubernetes.core/pull/670). v3.3.1 -======= +====== + +Release Summary +--------------- This release fixes the CI issues with the ``linters`` workflow. diff --git a/Makefile b/Makefile index 9176a615..0a8ffd53 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # Also needs to be updated in galaxy.yml -VERSION = 5.2.0 +VERSION = 5.4.0 TEST_ARGS ?= "" PYTHON_VERSION ?= `python -c 'import platform; print(".".join(platform.python_version_tuple()[0:2]))'` diff --git a/README.md b/README.md index 6a6a6d27..0d06ea6e 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ You can also include it in a `requirements.yml` file and install it via `ansible --- collections: - name: kubernetes.core - version: 5.3.0 + version: 5.4.0 ``` ### Installing the Kubernetes Python Library diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index ff63f8b2..ee158bde 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1029,13 +1029,13 @@ releases: - module_utils/k8s/service - fix issue when trying to delete resource using `delete_options` and `check_mode=true` (https://github.com/ansible-collections/kubernetes.core/issues/892). minor_changes: - - Bump version of ansible-lint to 25.1.2 (https://github.com/ansible-collections/kubernetes.core/pull/919). + - kubernetes.core - Bump version of ``ansible-lint`` to ``25.1.2`` (https://github.com/ansible-collections/kubernetes.core/pull/919). - action/k8s_info - update templating mechanism with changes from ``ansible-core 2.19`` (https://github.com/ansible-collections/kubernetes.core/pull/888). - - helm - add reset_then_reuse_values support to helm module (https://github.com/ansible-collections/kubernetes.core/issues/803). - - helm - add support for ``insecure_skip_tls_verify`` option to helm and helm_repository(https://github.com/ansible-collections/kubernetes.core/issues/694). + - helm - add ``reset_then_reuse_values`` support to helm module (https://github.com/ansible-collections/kubernetes.core/issues/803). + - helm - add support for ``insecure_skip_tls_verify`` option to helm and ``helm_repository`` (https://github.com/ansible-collections/kubernetes.core/issues/694). release_summary: This release includes minor changes, bug fixes and also bumps - ansible-lint version to ``25.1.2``. + ``ansible-lint`` version to ``25.1.2``. fragments: - 20250324-k8s_info-templating.yaml - 5.3.0.yml @@ -1044,3 +1044,15 @@ releases: - 898-k8s-dont-delete-in-check-mode.yaml - 919-update-ansible-lint-version.yaml release_date: '2025-05-16' + 5.4.0: + changes: + minor_changes: + - Module ``helm_registry_auth`` does not support idempotency with ``helm >= 3.18.0`` + (https://github.com/ansible-collections/kubernetes.core/pull/946). + release_summary: This release updates the ``helm_registry_auth`` module to match the behavior of ``helm >= 3.18.0`` which reports a successful logout regardless of the current state (i.e., no idempotency). + fragments: + - 20250411-kubeconfig-no_log-revert.yaml + - 20250503-fix-unit-tests.yml + - 20250605-fix-helm_registry_auth-integration_test.yaml + - 5.4.0.yml + release_date: '2025-08-12' diff --git a/changelogs/fragments/20250503-fix-unit-tests.yml b/changelogs/fragments/20250503-fix-unit-tests.yml deleted file mode 100644 index cc1cf88b..00000000 --- a/changelogs/fragments/20250503-fix-unit-tests.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -trivial: - - fix unit tests with ``ansible-core 2.19``. diff --git a/changelogs/fragments/20250605-fix-helm_registry_auth-integration_test.yaml b/changelogs/fragments/20250605-fix-helm_registry_auth-integration_test.yaml deleted file mode 100644 index 35be708a..00000000 --- a/changelogs/fragments/20250605-fix-helm_registry_auth-integration_test.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - Module helm_registry_auth do not support idempotency with `helm >= 3.18.0` (https://github.com/ansible-collections/kubernetes.core/pull/946) diff --git a/galaxy.yml b/galaxy.yml index ff487a22..ff7a176e 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -25,7 +25,7 @@ tags: - openshift - okd - cluster -version: 5.3.0 +version: 5.4.0 build_ignore: - .DS_Store - "*.tar.gz"