diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 380c2845..5c6c3a65 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -41,6 +41,21 @@ Breaking Changes / Porting Guide - Remove deprecated ``k8s`` invetory plugin (https://github.com/ansible-collections/kubernetes.core/pull/867). - Remove support for ``ansible-core<2.16`` (https://github.com/ansible-collections/kubernetes.core/pull/867). +v5.4.1 +====== + +Release Summary +--------------- + +This release includes bugfixes for k8s service field handling, k8s_cp init containers support, and removes deprecated ansible.module_utils.six imports. + +Bugfixes +-------- + +- Remove ``ansible.module_utils.six`` imports to avoid warnings (https://github.com/ansible-collections/kubernetes.core/pull/998). +- Update the `k8s_cp` module to also work for init containers (https://github.com/ansible-collections/kubernetes.core/pull/971). +- module_utils/k8s/service - hide fields first before creating diffs (https://github.com/ansible-collections/kubernetes.core/pull/915). + v5.4.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 47548602..e7a07902 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1056,6 +1056,21 @@ releases: - 20250605-fix-helm_registry_auth-integration_test.yaml - 5.4.0.yml release_date: '2025-08-12' + 5.4.1: + changes: + bugfixes: + - Remove ``ansible.module_utils.six`` imports to avoid warnings (https://github.com/ansible-collections/kubernetes.core/pull/998). + - Update the `k8s_cp` module to also work for init containers (https://github.com/ansible-collections/kubernetes.core/pull/971). + - module_utils/k8s/service - hide fields first before creating diffs (https://github.com/ansible-collections/kubernetes.core/pull/915). + release_summary: This release includes bugfixes for k8s service field handling, + k8s_cp init containers support, and removes deprecated ansible.module_utils.six + imports. + fragments: + - 20250428-k8s-service-hide-fields-first.yaml + - 20250731-fix-k8s_cp-initcontainers.yaml + - 20250922-remove-ansible-six-imports.yaml + - 5.4.1.yml + release_date: '2025-10-07' 6.0.0: changes: breaking_changes: diff --git a/changelogs/fragments/20250731-fix-k8s_cp-initcontainers.yaml b/changelogs/fragments/20250731-fix-k8s_cp-initcontainers.yaml deleted file mode 100644 index b02d3153..00000000 --- a/changelogs/fragments/20250731-fix-k8s_cp-initcontainers.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -bugfixes: - - Update the `k8s_cp` module to also work for init containers (https://github.com/ansible-collections/kubernetes.core/pull/971). diff --git a/changelogs/fragments/20250922-remove-ansible-six-imports.yaml b/changelogs/fragments/20250922-remove-ansible-six-imports.yaml deleted file mode 100644 index 8d065a27..00000000 --- a/changelogs/fragments/20250922-remove-ansible-six-imports.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - Remove ``ansible.module_utils.six`` imports to avoid warnings (https://github.com/ansible-collections/kubernetes.core/pull/998).