Skip to content

Commit 227a875

Browse files
authoredDec 20, 2023
Release 3.3.0 commit (#658)
1 parent d587143 commit 227a875

11 files changed

+60
-21
lines changed
 

‎CHANGELOG.rst

+26
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,32 @@ Community PostgreSQL Collection Release Notes
55
.. contents:: Topics
66

77

8+
v3.3.0
9+
======
10+
11+
Release Summary
12+
---------------
13+
14+
This is the minor release of the ``community.postgresql`` collection.
15+
This changelog contains all changes to the modules and plugins in this collection
16+
that have been made after the previous release.
17+
18+
Minor Changes
19+
-------------
20+
21+
- postgresql_db - add the ``comment`` argument (https://github.com/ansible-collections/community.postgresql/issues/614).
22+
- postgresql_ext - add the ``comment`` argument (https://github.com/ansible-collections/community.postgresql/issues/354).
23+
- postgresql_publication - add the ``comment`` argument (https://github.com/ansible-collections/community.postgresql/issues/354).
24+
- postgresql_schema - add the ``comment`` argument (https://github.com/ansible-collections/community.postgresql/issues/354).
25+
- postgresql_subscription - add the ``comment`` argument (https://github.com/ansible-collections/community.postgresql/issues/354).
26+
- postgresql_tablespace - add the ``comment`` argument (https://github.com/ansible-collections/community.postgresql/issues/354).
27+
28+
Bugfixes
29+
--------
30+
31+
- postgresql_query - now reports not changed for queries starting with "SHOW" (https://github.com/ansible-collections/community.postgresql/pull/592).
32+
- 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).
33+
834
v3.2.0
935
======
1036

‎changelogs/changelog.yaml

+33
Original file line numberDiff line numberDiff line change
@@ -627,3 +627,36 @@ releases:
627627
- 570_postgresql_info.yml
628628
- nuke_contributors.yml
629629
release_date: '2023-08-22'
630+
3.3.0:
631+
changes:
632+
bugfixes:
633+
- postgresql_query - now reports not changed for queries starting with "SHOW"
634+
(https://github.com/ansible-collections/community.postgresql/pull/592).
635+
- postgresql_user - module failed when running against an SQL_ASCII encoded
636+
database as the user's current password was returned as bytes as opposed to
637+
a str. Fix now checks for this case and decodes the bytes as an ascii encoded
638+
string. (https://github.com/ansible-collections/community.postgresql/issues/584).
639+
minor_changes:
640+
- postgresql_db - add the ``comment`` argument (https://github.com/ansible-collections/community.postgresql/issues/614).
641+
- postgresql_ext - add the ``comment`` argument (https://github.com/ansible-collections/community.postgresql/issues/354).
642+
- postgresql_publication - add the ``comment`` argument (https://github.com/ansible-collections/community.postgresql/issues/354).
643+
- postgresql_schema - add the ``comment`` argument (https://github.com/ansible-collections/community.postgresql/issues/354).
644+
- postgresql_subscription - add the ``comment`` argument (https://github.com/ansible-collections/community.postgresql/issues/354).
645+
- postgresql_tablespace - add the ``comment`` argument (https://github.com/ansible-collections/community.postgresql/issues/354).
646+
release_summary: 'This is the minor release of the ``community.postgresql``
647+
collection.
648+
649+
This changelog contains all changes to the modules and plugins in this collection
650+
651+
that have been made after the previous release.'
652+
fragments:
653+
- 0-postgresql_db.yml
654+
- 1-postgresql_schema.yml
655+
- 3-postgresql_tablespace.yml
656+
- 3.3.0.yml
657+
- 4-postgresql_ext.yml
658+
- 5-postgresql_publication.yml
659+
- 585-decode-data-from-sql_ascii-databases.yml
660+
- 592-return-not-changed-for-show.yml
661+
- 6-postgresql_subscription.yml
662+
release_date: '2023-12-20'

‎changelogs/fragments/0-postgresql_db.yml

-2
This file was deleted.

‎changelogs/fragments/1-postgresql_schema.yml

-2
This file was deleted.

‎changelogs/fragments/3-postgresql_tablespace.yml

-2
This file was deleted.

‎changelogs/fragments/4-postgresql_ext.yml

-2
This file was deleted.

‎changelogs/fragments/5-postgresql_publication.yml

-2
This file was deleted.

‎changelogs/fragments/585-decode-data-from-sql_ascii-databases.yml

-6
This file was deleted.

‎changelogs/fragments/592-return-not-changed-for-show.yml

-2
This file was deleted.

‎changelogs/fragments/6-postgresql_subscription.yml

-2
This file was deleted.

‎galaxy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
namespace: community
22
name: postgresql
3-
version: 3.2.0
3+
version: 3.3.0
44
readme: README.md
55
authors:
66
- Ansible PostgreSQL community

0 commit comments

Comments
 (0)
Please sign in to comment.