Skip to content

Commit

Permalink
Release 3.5.0 commit (#723)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andersson007 authored Aug 21, 2024
1 parent 4cb4d37 commit 19f3901
Show file tree
Hide file tree
Showing 7 changed files with 48 additions and 18 deletions.
23 changes: 21 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,27 @@ Community PostgreSQL Collection Release Notes

.. contents:: Topics

v3.5.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
-------------

- postgres - add support for postgres ``infinity`` timestamps by replacing them with ``datetime.min`` / ``datetime.max`` values (https://github.com/ansible-collections/community.postgresql/pull/714).
- postgresql_publication - add the ``tables_in_schema`` argument to implement ``FOR TABLES IN SCHEMA`` feature (https://github.com/ansible-collections/community.postgresql/issues/709).
- postgresql_user - adds the ``configuration`` argument that allows to manage user-specific default configuration (https://github.com/ansible-collections/community.postgresql/issues/598).

Bugfixes
--------

- postgres - psycopg2 automatically sets the datestyle on the connection to iso whenever it encounters a datestyle configuration it doesn't recognize, but psycopg3 does not. Fix now enforces iso datestyle when using psycopg3 (https://github.com/ansible-collections/community.postgresql/issues/711).

v3.4.1
======
Expand Down Expand Up @@ -582,7 +603,6 @@ Release Summary
This is the first proper release of the ``community.postgresql`` collection which is needed to include the collection in Ansible.
This changelog does not contain any changes because there are no changes made since release 0.1.0.


v0.1.0
======

Expand All @@ -593,7 +613,6 @@ The ``community.postgresql`` continues the work on the Ansible PostgreSQL
modules from their state in ``community.general`` 1.2.0.
The changes listed here are thus relative to the modules ``community.general.postgresql_*``.


Minor Changes
-------------

Expand Down
26 changes: 26 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -701,3 +701,29 @@ releases:
- 690-revoke-functions-from-user.yaml
- 693-idx-consider-schema.yaml
release_date: '2024-05-17'
3.5.0:
changes:
bugfixes:
- postgres - psycopg2 automatically sets the datestyle on the connection to
iso whenever it encounters a datestyle configuration it doesn't recognize,
but psycopg3 does not. Fix now enforces iso datestyle when using psycopg3
(https://github.com/ansible-collections/community.postgresql/issues/711).
minor_changes:
- postgres - add support for postgres ``infinity`` timestamps by replacing them
with ``datetime.min`` / ``datetime.max`` values (https://github.com/ansible-collections/community.postgresql/pull/714).
- postgresql_publication - add the ``tables_in_schema`` argument to implement
``FOR TABLES IN SCHEMA`` feature (https://github.com/ansible-collections/community.postgresql/issues/709).
- postgresql_user - adds the ``configuration`` argument that allows to manage
user-specific default configuration (https://github.com/ansible-collections/community.postgresql/issues/598).
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:
- 0-postgresql_publication.yml
- 3.5.0.yml
- 714-infinity.yaml
- 715-datestyle.yaml
- 722-user-configuration.yml
release_date: '2024-08-21'
2 changes: 0 additions & 2 deletions changelogs/fragments/0-postgresql_publication.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/fragments/714-infinity.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions changelogs/fragments/715-datestyle.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions changelogs/fragments/722-user-configuration.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.4.1
version: 3.5.0
readme: README.md
authors:
- Ansible PostgreSQL community
Expand Down

0 comments on commit 19f3901

Please sign in to comment.