From bc96c50e907d567beef52848c4990f6dc2e2110d Mon Sep 17 00:00:00 2001 From: Andrew Klychkov Date: Mon, 2 Dec 2024 11:59:37 +0100 Subject: [PATCH] Release 3.9.0 commit (#775) --- CHANGELOG.rst | 16 ++++++++++++++++ changelogs/changelog.yaml | 17 +++++++++++++++++ .../fragments/772-refactoring-pg_hba-module.yml | 3 --- galaxy.yml | 2 +- 4 files changed, 34 insertions(+), 4 deletions(-) delete mode 100644 changelogs/fragments/772-refactoring-pg_hba-module.yml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 845732f7..a8e58fb3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,22 @@ Community PostgreSQL Collection Release Notes .. contents:: Topics +v3.9.0 +====== + +Release Summary +--------------- + +This is a minor release of the ``community.postgresql`` collection. +This changelog contains all changes to the modules and plugins in this collection +that have been made after the previous release. + +Minor Changes +------------- + +- postgresql_pg_hba - changes ordering of entries that are identical except for the ip-range, but only if the ranges are of the same size, this isn't breaking as ranges of equal size can't overlap (https://github.com/ansible-collections/community.postgresql/pull/772) +- postgresql_pg_hba - orders auth-options alphabetically, this isn't breaking as the order of those options is not relevant to postgresql (https://github.com/ansible-collections/community.postgresql/pull/772) + v3.8.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index e54b3ef2..29f43534 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -816,3 +816,20 @@ releases: - 763-add-publication-with-specific-columns.yml - 8.3.0.yml release_date: '2024-11-15' + 3.9.0: + changes: + minor_changes: + - postgresql_pg_hba - changes ordering of entries that are identical except + for the ip-range, but only if the ranges are of the same size, this isn't + breaking as ranges of equal size can't overlap (https://github.com/ansible-collections/community.postgresql/pull/772) + - postgresql_pg_hba - orders auth-options alphabetically, this isn't breaking + as the order of those options is not relevant to postgresql (https://github.com/ansible-collections/community.postgresql/pull/772) + release_summary: 'This is a minor release of the ``community.postgresql`` collection. + + This changelog contains all changes to the modules and plugins in this collection + + that have been made after the previous release.' + fragments: + - 3.9.0.yml + - 772-refactoring-pg_hba-module.yml + release_date: '2024-12-02' diff --git a/changelogs/fragments/772-refactoring-pg_hba-module.yml b/changelogs/fragments/772-refactoring-pg_hba-module.yml deleted file mode 100644 index 5cb73c07..00000000 --- a/changelogs/fragments/772-refactoring-pg_hba-module.yml +++ /dev/null @@ -1,3 +0,0 @@ -minor_changes: - - "postgresql_pg_hba - changes ordering of entries that are identical except for the ip-range, but only if the ranges are of the same size, this isn't breaking as ranges of equal size can't overlap (https://github.com/ansible-collections/community.postgresql/pull/772)" - - "postgresql_pg_hba - orders auth-options alphabetically, this isn't breaking as the order of those options is not relevant to postgresql (https://github.com/ansible-collections/community.postgresql/pull/772)" diff --git a/galaxy.yml b/galaxy.yml index 819e76d1..b8aa3c0b 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,6 +1,6 @@ namespace: community name: postgresql -version: 3.8.0 +version: 3.9.0 readme: README.md authors: - Ansible PostgreSQL community