mirror of
https://github.com/ansible-collections/kubernetes.core.git
synced 2026-07-28 10:24:45 +00:00
Issue #40: Add PR and issue refs to fragments, and update CHANGELOG.rst.
This commit is contained in:
@@ -11,21 +11,21 @@ v0.11.0
|
|||||||
Major Changes
|
Major Changes
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
- helm - New module for managing Helm charts.
|
- 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.
|
- 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.
|
- helm_repository - New module for managing Helm repositories (https://github.com/ansible-collections/community.kubernetes/pull/61).
|
||||||
|
|
||||||
Minor Changes
|
Minor Changes
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
- Rename repository to ``community.kubernetes``.
|
- Rename repository to ``community.kubernetes`` (https://github.com/ansible-collections/community.kubernetes/pull/81).
|
||||||
|
|
||||||
Bugfixes
|
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).
|
||||||
- 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).
|
||||||
- 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).
|
||||||
|
|
||||||
New Modules
|
New Modules
|
||||||
-----------
|
-----------
|
||||||
@@ -40,27 +40,27 @@ v0.10.0
|
|||||||
Major Changes
|
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).
|
||||||
- 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).
|
||||||
|
|
||||||
Minor Changes
|
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
|
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
|
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).
|
||||||
- k8s - Fix argspec for 'elements'.
|
- 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 - 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.
|
- k8s_service - Fix argspec (https://github.com/ansible-collections/community.kubernetes/issues/33).
|
||||||
- kubectl - Fix documentation in kubectl connection plugin.
|
- kubectl - Fix documentation in kubectl connection plugin (https://github.com/ansible-collections/community.kubernetes/pull/52).
|
||||||
|
|
||||||
New Modules
|
New Modules
|
||||||
-----------
|
-----------
|
||||||
|
|||||||
@@ -3,21 +3,21 @@ releases:
|
|||||||
0.10.0:
|
0.10.0:
|
||||||
changes:
|
changes:
|
||||||
bugfixes:
|
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).
|
||||||
- k8s - Fix argspec for 'elements'.
|
- 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
|
- k8s - Use ``from_yaml`` filter with lookup examples in ``k8s`` module documentation
|
||||||
examples.
|
examples (https://github.com/ansible-collections/community.kubernetes/pull/56).
|
||||||
- k8s_service - Fix argspec.
|
- k8s_service - Fix argspec (https://github.com/ansible-collections/community.kubernetes/issues/33).
|
||||||
- kubectl - Fix documentation in kubectl connection plugin.
|
- kubectl - Fix documentation in kubectl connection plugin (https://github.com/ansible-collections/community.kubernetes/pull/52).
|
||||||
major_changes:
|
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).
|
||||||
- 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).
|
||||||
minor_changes:
|
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:
|
security_fixes:
|
||||||
- kubectl - Warn about information disclosure when using options like ``kubectl_password``,
|
- kubectl - Warn about information disclosure when using options like ``kubectl_password``,
|
||||||
``kubectl_extra_args``, and ``kubectl_token`` to pass data through to the
|
``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:
|
fragments:
|
||||||
- 13-fix-elements-argspec.yaml
|
- 13-fix-elements-argspec.yaml
|
||||||
- 14-k8s_exec-new-module.yaml
|
- 14-k8s_exec-new-module.yaml
|
||||||
@@ -39,15 +39,15 @@ releases:
|
|||||||
0.11.0:
|
0.11.0:
|
||||||
changes:
|
changes:
|
||||||
bugfixes:
|
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).
|
||||||
- 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).
|
||||||
- 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).
|
||||||
major_changes:
|
major_changes:
|
||||||
- helm - New module for managing Helm charts.
|
- 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.
|
- 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.
|
- helm_repository - New module for managing Helm repositories (https://github.com/ansible-collections/community.kubernetes/pull/61).
|
||||||
minor_changes:
|
minor_changes:
|
||||||
- Rename repository to ``community.kubernetes``.
|
- Rename repository to ``community.kubernetes`` (https://github.com/ansible-collections/community.kubernetes/pull/81).
|
||||||
fragments:
|
fragments:
|
||||||
- 61-helm-new-modules.yaml
|
- 61-helm-new-modules.yaml
|
||||||
- 69-k8s_log-dont-parse-as-json.yaml
|
- 69-k8s_log-dont-parse-as-json.yaml
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
---
|
---
|
||||||
bugfixes:
|
bugfixes:
|
||||||
- k8s - Fix argspec for 'elements'.
|
- k8s - Fix argspec for 'elements' (https://github.com/ansible-collections/community.kubernetes/issues/13).
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
---
|
---
|
||||||
major_changes:
|
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).
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
---
|
---
|
||||||
major_changes:
|
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).
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
---
|
---
|
||||||
bugfixes:
|
bugfixes:
|
||||||
- k8s_service - Fix argspec.
|
- k8s_service - Fix argspec (https://github.com/ansible-collections/community.kubernetes/issues/33).
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
---
|
---
|
||||||
minor_changes:
|
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).
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
---
|
---
|
||||||
security_fixes:
|
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).
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
---
|
---
|
||||||
bugfixes:
|
bugfixes:
|
||||||
- kubectl - Fix documentation in kubectl connection plugin.
|
- kubectl - Fix documentation in kubectl connection plugin (https://github.com/ansible-collections/community.kubernetes/pull/52).
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
---
|
---
|
||||||
bugfixes:
|
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).
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
---
|
---
|
||||||
bugfixes:
|
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).
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
major_changes:
|
major_changes:
|
||||||
- helm - New module for managing Helm charts.
|
- 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.
|
- 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.
|
- helm_repository - New module for managing Helm repositories (https://github.com/ansible-collections/community.kubernetes/pull/61).
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
---
|
---
|
||||||
bugfixes:
|
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).
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
---
|
---
|
||||||
bugfixes:
|
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).
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
---
|
---
|
||||||
minor_changes:
|
minor_changes:
|
||||||
- Rename repository to ``community.kubernetes``.
|
- Rename repository to ``community.kubernetes`` (https://github.com/ansible-collections/community.kubernetes/pull/81).
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
---
|
---
|
||||||
bugfixes:
|
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).
|
||||||
|
|||||||
Reference in New Issue
Block a user