From 280af2c26855e7278f6bc0a77dc9de9eaa41bcf4 Mon Sep 17 00:00:00 2001 From: Sergey Date: Mon, 17 Aug 2020 15:57:48 +0300 Subject: [PATCH] Add changelog for Ansible 2.10 release (#103) --- CHANGELOG.rst | 209 ++++++++++++++++++++++++++++++++++++++ changelogs/changelog.yaml | 123 ++++++++++++++++++++++ changelogs/config.yaml | 31 ++++++ 3 files changed, 363 insertions(+) create mode 100644 CHANGELOG.rst create mode 100644 changelogs/changelog.yaml create mode 100644 changelogs/config.yaml diff --git a/CHANGELOG.rst b/CHANGELOG.rst new file mode 100644 index 0000000..d110a8d --- /dev/null +++ b/CHANGELOG.rst @@ -0,0 +1,209 @@ +================================================ +Ansible Podman modules and plugins Release Notes +================================================ + +.. contents:: Topics + + +v1.2.0 +====== + +Release Summary +--------------- + +Add changelog file. + +Minor Changes +------------- + +- Add changelog file to collection. + +v1.1.4 +====== + +Release Summary +--------------- + +Pip install and minor fixes. + +Minor Changes +------------- + +- Add pip installation for podman collection. + +v1.1.3 +====== + +Release Summary +--------------- + +Idempotency fixes for podman containers. + +Bugfixes +-------- + +- podman_container - Fix idempotency for case with = in env +- podman_container - Fix issue with idempotency uts, ipc with pod + +v1.1.2 +====== + +Release Summary +--------------- + +Urgent fix for podman connection plugin. + +Bugfixes +-------- + +- podman_connection - Chown file for users when copy them to container + +v1.1.1 +====== + +Release Summary +--------------- + +New modules for volumes management. + +Minor Changes +------------- + +- Create podman_volume module for volumes management + +Bugfixes +-------- + +- podman_volume_info - Improve podman volume info tests with new module + +New Modules +----------- + +- containers.podman.podman_volume - Manage Podman volumes + +v1.1.0 +====== + +Release Summary +--------------- + +New modules for pods management. + +Minor Changes +------------- + +- Add podman pod and pod info modules + +Bugfixes +-------- + +- podman_container - Fix idempotency for networks and add tests + +New Modules +----------- + +- containers.podman.podman_pod - Manage Podman pods +- containers.podman.podman_pod_info - Retrieve information about Podman pods + +v1.0.5 +====== + +Release Summary +--------------- + +Idempotency and another bugfixes for podman connection plugin. + +Bugfixes +-------- + +- podman_connection - Add check for empty dir for podman connection mount +- podman_connection - Increase verbosity for mount failure messages +- podman_container - Improve idempotency for volumes with slashesAdd idempotency for ulimits and tests +- podman_container - Improve ports idempotency and support UDP + +v1.0.4 +====== + +Release Summary +--------------- + +Idempotency and Podman v2 fixes + +Bugfixes +-------- + +- podman_container - Add idempotency for ulimits and tests +- podman_container - Fix idempotency for podman > 2 versions + +v1.0.3 +====== + +Release Summary +--------------- + +Relicense under GPLv3 and clean up modules + +Minor Changes +------------- + +- Relicense under GPLv3 and clean up modules + +v1.0.2 +====== + +Release Summary +--------------- + +Idempotency fixes + +Bugfixes +-------- + +- podman_container - Add idempotency for existing local volumes + +v1.0.1 +====== + +Release Summary +--------------- + +Idempotency and images improvements + +Bugfixes +-------- + +- podman_container - Add inspect of image and user idempotency +- podman_image - Add option for tls_verify=false for images + +v1.0.0 +====== + +Release Summary +--------------- + +Initial release of collection with new modules + +Minor Changes +------------- + +- buildah_connection - add support of specific user +- buildah_connection - added Buildah connection rootless +- podman_connection - add user flags before container id in podman exec + +Bugfixes +-------- + +- buildah_connection - Fix buildah debug output for py2 +- podman_connection - Run pause=false w/o message condition +- podman_container - Add idempotency for user and stop signal +- podman_container - Fix idempotency issues with workdir and volumes +- podman_container - Fix image, healthcheck and other idempotency +- podman_container - Improve idempotency of podman_container in uts, ipc, networks, cpu_shares +- podman_image - only set changed=true if there is a new image +- podman_image - use correct option for remove_signatures flag + +New Modules +----------- + +- containers.podman.podman_container - Manage Podman containers +- containers.podman.podman_network_info module - Retrieve information about Podman networks diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml new file mode 100644 index 0000000..96f7b70 --- /dev/null +++ b/changelogs/changelog.yaml @@ -0,0 +1,123 @@ +releases: + 1.2.0: + release_date: '2020-08-17' + changes: + release_summary: Add changelog file. + minor_changes: + - Add changelog file to collection. + + 1.1.4: + release_date: '2020-08-06' + changes: + release_summary: Pip install and minor fixes. + minor_changes: + - Add pip installation for podman collection. + + 1.1.3: + release_date: '2020-07-29' + changes: + release_summary: Idempotency fixes for podman containers. + bugfixes: + - podman_container - Fix idempotency for case with = in env + - podman_container - Fix issue with idempotency uts, ipc with pod + + 1.1.2: + release_date: '2020-07-26' + changes: + release_summary: Urgent fix for podman connection plugin. + bugfixes: + - podman_connection - Chown file for users when copy them to container + + 1.1.1: + release_date: '2020-07-22' + changes: + release_summary: New modules for volumes management. + minor_changes: + - Create podman_volume module for volumes management + bugfixes: + - podman_volume_info - Improve podman volume info tests with new module + modules: + - name: podman_volume + description: Manage Podman volumes + namespace: '' + + 1.1.0: + release_date: '2020-07-19' + changes: + release_summary: New modules for pods management. + minor_changes: + - Add podman pod and pod info modules + bugfixes: + - podman_container - Fix idempotency for networks and add tests + modules: + - name: podman_pod + description: Manage Podman pods + namespace: '' + - name: podman_pod_info + description: Retrieve information about Podman pods + namespace: '' + + 1.0.5: + release_date: '2020-07-09' + changes: + release_summary: Idempotency and another bugfixes for podman connection plugin. + bugfixes: + - podman_container - Improve idempotency for volumes with slashesAdd idempotency for ulimits and tests + - podman_container - Improve ports idempotency and support UDP + - podman_connection - Add check for empty dir for podman connection mount + - podman_connection - Increase verbosity for mount failure messages + + 1.0.4: + release_date: '2020-06-29' + changes: + release_summary: Idempotency and Podman v2 fixes + bugfixes: + - podman_container - Add idempotency for ulimits and tests + - podman_container - Fix idempotency for podman > 2 versions + + 1.0.3: + release_date: '2020-06-08' + changes: + release_summary: Relicense under GPLv3 and clean up modules + minor_changes: + - Relicense under GPLv3 and clean up modules + + 1.0.2: + release_date: '2020-06-05' + changes: + release_summary: Idempotency fixes + bugfixes: + - podman_container - Add idempotency for existing local volumes + + 1.0.1: + release_date: '2020-06-01' + changes: + release_summary: Idempotency and images improvements + bugfixes: + - podman_container - Add inspect of image and user idempotency + - podman_image - Add option for tls_verify=false for images + + 1.0.0: + release_date: '2020-05-20' + changes: + release_summary: Initial release of collection with new modules + minor_changes: + - buildah_connection - added Buildah connection rootless + - podman_connection - add user flags before container id in podman exec + - buildah_connection - add support of specific user + bugfixes: + - podman_image - only set changed=true if there is a new image + - podman_image - use correct option for remove_signatures flag + - podman_connection - Run pause=false w/o message condition + - podman_container - Fix idempotency issues with workdir and volumes + - podman_container - Improve idempotency of podman_container in uts, ipc, networks, cpu_shares + - podman_container - Add idempotency for user and stop signal + - podman_container - Fix image, healthcheck and other idempotency + - buildah_connection - Fix buildah debug output for py2 + modules: + - name: podman_container + description: Manage Podman containers + namespace: '' + - name: podman_network_info module + description: Retrieve information about Podman networks + namespace: '' diff --git a/changelogs/config.yaml b/changelogs/config.yaml new file mode 100644 index 0000000..39c40f1 --- /dev/null +++ b/changelogs/config.yaml @@ -0,0 +1,31 @@ +changelog_filename_template: ../CHANGELOG.rst +changelog_filename_version_depth: 0 +changes_file: changelog.yaml +changes_format: combined +ignore_other_fragment_extensions: true +keep_fragments: false +mention_ancestor: true +new_plugins_after_name: removed_features +notesdir: fragments +prelude_section_name: release_summary +prelude_section_title: Release Summary +sections: +- - major_changes + - Major Changes +- - minor_changes + - Minor Changes +- - breaking_changes + - Breaking Changes / Porting Guide +- - deprecated_features + - Deprecated Features +- - removed_features + - Removed Features (previously deprecated) +- - security_fixes + - Security Fixes +- - bugfixes + - Bugfixes +- - known_issues + - Known Issues +title: Ansible Podman modules and plugins +trivial_section_name: trivial +use_fqcn: true