Skip to content

Commit

Permalink
Release 3.3.0 commit (#658)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andersson007 authored Dec 20, 2023
1 parent d587143 commit 227a875
Show file tree
Hide file tree
Showing 11 changed files with 60 additions and 21 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,32 @@ Community PostgreSQL Collection Release Notes
.. contents:: Topics


v3.3.0
======

Release Summary
---------------

This is the 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_db - add the ``comment`` argument (https://github.com/ansible-collections/community.postgresql/issues/614).
- postgresql_ext - add the ``comment`` argument (https://github.com/ansible-collections/community.postgresql/issues/354).
- postgresql_publication - add the ``comment`` argument (https://github.com/ansible-collections/community.postgresql/issues/354).
- postgresql_schema - add the ``comment`` argument (https://github.com/ansible-collections/community.postgresql/issues/354).
- postgresql_subscription - add the ``comment`` argument (https://github.com/ansible-collections/community.postgresql/issues/354).
- postgresql_tablespace - add the ``comment`` argument (https://github.com/ansible-collections/community.postgresql/issues/354).

Bugfixes
--------

- postgresql_query - now reports not changed for queries starting with "SHOW" (https://github.com/ansible-collections/community.postgresql/pull/592).
- postgresql_user - module failed when running against an SQL_ASCII encoded database as the user's current password was returned as bytes as opposed to a str. Fix now checks for this case and decodes the bytes as an ascii encoded string. (https://github.com/ansible-collections/community.postgresql/issues/584).

v3.2.0
======

Expand Down
33 changes: 33 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -627,3 +627,36 @@ releases:
- 570_postgresql_info.yml
- nuke_contributors.yml
release_date: '2023-08-22'
3.3.0:
changes:
bugfixes:
- postgresql_query - now reports not changed for queries starting with "SHOW"
(https://github.com/ansible-collections/community.postgresql/pull/592).
- postgresql_user - module failed when running against an SQL_ASCII encoded
database as the user's current password was returned as bytes as opposed to
a str. Fix now checks for this case and decodes the bytes as an ascii encoded
string. (https://github.com/ansible-collections/community.postgresql/issues/584).
minor_changes:
- postgresql_db - add the ``comment`` argument (https://github.com/ansible-collections/community.postgresql/issues/614).
- postgresql_ext - add the ``comment`` argument (https://github.com/ansible-collections/community.postgresql/issues/354).
- postgresql_publication - add the ``comment`` argument (https://github.com/ansible-collections/community.postgresql/issues/354).
- postgresql_schema - add the ``comment`` argument (https://github.com/ansible-collections/community.postgresql/issues/354).
- postgresql_subscription - add the ``comment`` argument (https://github.com/ansible-collections/community.postgresql/issues/354).
- postgresql_tablespace - add the ``comment`` argument (https://github.com/ansible-collections/community.postgresql/issues/354).
release_summary: 'This is the 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:
- 0-postgresql_db.yml
- 1-postgresql_schema.yml
- 3-postgresql_tablespace.yml
- 3.3.0.yml
- 4-postgresql_ext.yml
- 5-postgresql_publication.yml
- 585-decode-data-from-sql_ascii-databases.yml
- 592-return-not-changed-for-show.yml
- 6-postgresql_subscription.yml
release_date: '2023-12-20'
2 changes: 0 additions & 2 deletions changelogs/fragments/0-postgresql_db.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/1-postgresql_schema.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/3-postgresql_tablespace.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/4-postgresql_ext.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/5-postgresql_publication.yml

This file was deleted.

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/592-return-not-changed-for-show.yml

This file was deleted.

2 changes: 0 additions & 2 deletions changelogs/fragments/6-postgresql_subscription.yml

This file was deleted.

2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace: community
name: postgresql
version: 3.2.0
version: 3.3.0
readme: README.md
authors:
- Ansible PostgreSQL community
Expand Down

0 comments on commit 227a875

Please sign in to comment.