From 5b498c6738a95843050532d6819804f78dfce730 Mon Sep 17 00:00:00 2001 From: Andrew Klychkov Date: Fri, 17 May 2024 10:27:31 +0200 Subject: [PATCH] Release 2.4.6 commit (#697) --- CHANGELOG.rst | 18 +++++++++++++++ changelogs/changelog.yaml | 23 +++++++++++++++++++ .../681-restore-custom-format-as-file.yml | 3 --- .../690-revoke-functions-from-user.yaml | 2 -- .../fragments/693-idx-consider-schema.yaml | 2 -- .../695-reconnect-before-upgrade.yml | 3 --- galaxy.yml | 2 +- 7 files changed, 42 insertions(+), 11 deletions(-) delete mode 100644 changelogs/fragments/681-restore-custom-format-as-file.yml delete mode 100644 changelogs/fragments/690-revoke-functions-from-user.yaml delete mode 100644 changelogs/fragments/693-idx-consider-schema.yaml delete mode 100644 changelogs/fragments/695-reconnect-before-upgrade.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 530c7b87e..ece351f7e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,24 @@ Community PostgreSQL Collection Release Notes .. contents:: Topics +v2.4.6 +====== + +Release Summary +--------------- + +This is a patch release of the ``community.postgresql`` collection. +This changelog contains all changes to the modules and plugins in this collection +that have been added after the release of ``community.postgresql`` 2.4.5. + +Bugfixes +-------- + +- postgresql_db - ``restore`` custom format as file instead of stdin to allow the use of --job flag in ``target_opts`` (https://github.com/ansible-collections/community.postgresql/issues/594). +- postgresql_ext - Reconnect before upgrade to avoid accidental load of the upgraded extension (https://github.com/ansible-collections/community.postgresql/pull/695). +- postgresql_idx - consider schema name when checking for index (https://github.com/ansible-collections/community.postgresql/issues/692). Index names are only unique within a schema. This allows using the same index name in multiple schemas. +- postgresql_privs - Enables the ability to revoke functions from user (https://github.com/ansible-collections/community.postgresql/issues/687). + v2.4.5 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index fb86732de..926764b57 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -580,3 +580,26 @@ releases: - 0-privs.yml - 2.4.5.yml release_date: '2024-02-09' + 2.4.6: + changes: + bugfixes: + - postgresql_db - ``restore`` custom format as file instead of stdin to allow + the use of --job flag in ``target_opts`` (https://github.com/ansible-collections/community.postgresql/issues/594). + - postgresql_ext - Reconnect before upgrade to avoid accidental load of the + upgraded extension (https://github.com/ansible-collections/community.postgresql/pull/695). + - postgresql_idx - consider schema name when checking for index (https://github.com/ansible-collections/community.postgresql/issues/692). Index + names are only unique within a schema. This allows using the same index name + in multiple schemas. + - postgresql_privs - Enables the ability to revoke functions from user (https://github.com/ansible-collections/community.postgresql/issues/687). + release_summary: 'This is a patch release of the ``community.postgresql`` collection. + + This changelog contains all changes to the modules and plugins in this collection + + that have been added after the release of ``community.postgresql`` 2.4.5.' + fragments: + - 2.4.6.yml + - 681-restore-custom-format-as-file.yml + - 690-revoke-functions-from-user.yaml + - 693-idx-consider-schema.yaml + - 695-reconnect-before-upgrade.yml + release_date: '2024-05-17' diff --git a/changelogs/fragments/681-restore-custom-format-as-file.yml b/changelogs/fragments/681-restore-custom-format-as-file.yml deleted file mode 100644 index 2b19502dc..000000000 --- a/changelogs/fragments/681-restore-custom-format-as-file.yml +++ /dev/null @@ -1,3 +0,0 @@ -bugfixes: - - postgresql_db - ``restore`` custom format as file instead of stdin to allow the use of --job - flag in ``target_opts`` (https://github.com/ansible-collections/community.postgresql/issues/594). \ No newline at end of file diff --git a/changelogs/fragments/690-revoke-functions-from-user.yaml b/changelogs/fragments/690-revoke-functions-from-user.yaml deleted file mode 100644 index daac59821..000000000 --- a/changelogs/fragments/690-revoke-functions-from-user.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - postgresql_privs - Enables the ability to revoke functions from user (https://github.com/ansible-collections/community.postgresql/issues/687). diff --git a/changelogs/fragments/693-idx-consider-schema.yaml b/changelogs/fragments/693-idx-consider-schema.yaml deleted file mode 100644 index ee99338dc..000000000 --- a/changelogs/fragments/693-idx-consider-schema.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - postgresql_idx - consider schema name when checking for index (https://github.com/ansible-collections/community.postgresql/issues/692). Index names are only unique within a schema. This allows using the same index name in multiple schemas. diff --git a/changelogs/fragments/695-reconnect-before-upgrade.yml b/changelogs/fragments/695-reconnect-before-upgrade.yml deleted file mode 100644 index 336d4f973..000000000 --- a/changelogs/fragments/695-reconnect-before-upgrade.yml +++ /dev/null @@ -1,3 +0,0 @@ -bugfixes: - - postgresql_ext - Reconnect before upgrade to avoid accidental load of the upgraded extension - (https://github.com/ansible-collections/community.postgresql/pull/695). diff --git a/galaxy.yml b/galaxy.yml index e8d246bcf..33b9f9344 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: community name: postgresql -version: 2.4.5 +version: 2.4.6 readme: README.md authors: - Ansible PostgreSQL community