diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ebea2a5b..ba3ecfb2 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,25 @@ Kubernetes Collection Release Notes .. contents:: Topics +v6.2.0 +====== + +Release Summary +--------------- + +This release adds minor changes and bugfixes, including support of skip-schema-validation in ``helm`` module and removing deprecated ``ansible.module_utils.six`` imports. + +Minor Changes +------------- + +- Add support of skip-schema-validation in ``helm`` module (https://github.com/ansible-collections/kubernetes.core/pull/995) +- kustomize - Add support of local environ (https://github.com/ansible-collections/kubernetes.core/pull/786). + +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). v6.1.0 ====== @@ -84,7 +103,7 @@ This release came with new module ``helm_registry_auth``, improvements to the er Minor Changes ------------- -- Bump version of ansible-lint to minimum 24.7.0 (https://github.com/ansible-collections/kubernetes.core/pull/765). +- Bump version of ``ansible-lint`` to minimum 24.7.0 (https://github.com/ansible-collections/kubernetes.core/pull/765). - Parameter insecure_registry added to helm_template as equivalent of insecure-skip-tls-verify (https://github.com/ansible-collections/kubernetes.core/pull/805). - k8s_drain - Improve error message for pod disruption budget when draining a node (https://github.com/ansible-collections/kubernetes.core/issues/797). diff --git a/Makefile b/Makefile index 2487af6f..24bfb4ae 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # Also needs to be updated in galaxy.yml -VERSION = 6.1.0 +VERSION = 6.2.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 eccfcc5e..36f7523f 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,7 @@ You can also include it in a `requirements.yml` file and install it via `ansible --- collections: - name: kubernetes.core - version: 6.1.0 + version: 6.2.0 ``` ### Installing the Kubernetes Python Library diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 7bd3d126..467f524c 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1067,9 +1067,10 @@ releases: (https://github.com/ansible-collections/kubernetes.core/pull/934). - helm_template - Parameter plain_http added for working with insecure OCI registries (https://github.com/ansible-collections/kubernetes.core/pull/934). - release_summary: "This release adds ``plain_http`` and ``take_ownership`` parameters for helm modules, support for ``hidden_fields`` - in ``k8s_json_patch``, documented lack of idempotency support in ``helm_registry_auth`` - with ``helm \u2265 3.18.0``, and improved ``k8s_rollback`` test coverage." + release_summary: "This release adds ``plain_http`` and ``take_ownership`` parameters + for helm modules, support for ``hidden_fields`` in ``k8s_json_patch``, documented + lack of idempotency support in ``helm_registry_auth`` with ``helm \u2265 3.18.0``, + and improved ``k8s_rollback`` test coverage." fragments: - 20250411-kubeconfig-no_log-revert.yaml - 20250428-k8s-service-hide-fields-first.yaml @@ -1080,3 +1081,22 @@ releases: - 20250911-add-support-helm-take-ownership.yaml - release_summary.yml release_date: '2025-08-12' + 6.2.0: + 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). + minor_changes: + - Add support of skip-schema-validation in ``helm`` module (https://github.com/ansible-collections/kubernetes.core/pull/995) + - kustomize - Add support of local environ (https://github.com/ansible-collections/kubernetes.core/pull/786). + release_summary: This release adds minor changes and bugfixes, including support + of skip-schema-validation in ``helm`` module and removing deprecated + ``ansible.module_utils.six`` imports. + + fragments: + - 20241030-support-of-evrion-for-kustomize-lookup-plugin.yaml + - 20250731-fix-k8s_cp-initcontainers.yaml + - 20250916-skip-schema-validation.yaml + - 20250922-remove-ansible-six-imports.yaml + - 6_2_0.yml + release_date: '2025-10-07' diff --git a/changelogs/fragments/20241030-support-of-evrion-for-kustomize-lookup-plugin.yaml b/changelogs/fragments/20241030-support-of-evrion-for-kustomize-lookup-plugin.yaml deleted file mode 100644 index 21128dd9..00000000 --- a/changelogs/fragments/20241030-support-of-evrion-for-kustomize-lookup-plugin.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - kustomize - add support of local environ (https://github.com/ansible-collections/kubernetes.core/pull/786). 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/20250916-skip-schema-validation.yaml b/changelogs/fragments/20250916-skip-schema-validation.yaml deleted file mode 100644 index 3706b764..00000000 --- a/changelogs/fragments/20250916-skip-schema-validation.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - Added support of skip-schema-validation in `helm` module (https://github.com/ansible-collections/kubernetes.core/pull/995) 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). diff --git a/galaxy.yml b/galaxy.yml index 34b52450..a066c4c7 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -25,7 +25,7 @@ tags: - openshift - okd - cluster -version: 6.1.0 +version: 6.2.0 build_ignore: - .DS_Store - "*.tar.gz"