Skip to content

Commit f29c020

Browse files
authored
Release 2.3.0 commit (#369)
1 parent 310bf20 commit f29c020

9 files changed

+60
-14
lines changed

CHANGELOG.rst

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,31 @@ Community PostgreSQL Collection Release Notes
55
.. contents:: Topics
66

77

8+
v2.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 in this collection that
16+
have been added after the release of ``community.postgresql`` 2.2.0.
17+
18+
Minor Changes
19+
-------------
20+
21+
- postgresql_* - add the ``connect_params`` parameter dict to allow any additional ``libpg`` connection parameters (https://github.com/ansible-collections/community.postgresql/pull/329).
22+
23+
Bugfixes
24+
--------
25+
26+
- postgresql_info - make arguments passed to SHOW command properly quoted to prevent the interpreter evaluating them (https://github.com/ansible-collections/community.postgresql/issues/314).
27+
- postgresql_pg_hba - support the connection types ``hostgssenc`` and ``hostnogssenc`` (https://github.com/ansible-collections/community.postgresql/pull/351).
28+
- postgresql_privs - add support for alter default privileges grant usage on schemas (https://github.com/ansible-collections/community.postgresql/issues/332).
29+
- postgresql_privs - cannot grant select on objects in all schemas; add the ``not-specified`` value to the ``schema`` parameter to make this possible (https://github.com/ansible-collections/community.postgresql/issues/332).
30+
- postgresql_set - avoid postgres puts extra quotes when passing values containing commas (https://github.com/ansible-collections/community.postgresql/issues/78).
31+
- postgresql_user - make the module idempotent when password is scram hashed (https://github.com/ansible-collections/community.postgresql/issues/301).
32+
833
v2.2.0
934
======
1035

changelogs/changelog.yaml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -372,3 +372,37 @@ releases:
372372
- all_in_schema.yml
373373
- simplified-bsd-license.yml
374374
release_date: '2022-07-27'
375+
2.3.0:
376+
changes:
377+
bugfixes:
378+
- postgresql_info - make arguments passed to SHOW command properly quoted to
379+
prevent the interpreter evaluating them (https://github.com/ansible-collections/community.postgresql/issues/314).
380+
- postgresql_pg_hba - support the connection types ``hostgssenc`` and ``hostnogssenc``
381+
(https://github.com/ansible-collections/community.postgresql/pull/351).
382+
- postgresql_privs - add support for alter default privileges grant usage on
383+
schemas (https://github.com/ansible-collections/community.postgresql/issues/332).
384+
- postgresql_privs - cannot grant select on objects in all schemas; add the
385+
``not-specified`` value to the ``schema`` parameter to make this possible
386+
(https://github.com/ansible-collections/community.postgresql/issues/332).
387+
- postgresql_set - avoid postgres puts extra quotes when passing values containing
388+
commas (https://github.com/ansible-collections/community.postgresql/issues/78).
389+
- postgresql_user - make the module idempotent when password is scram hashed
390+
(https://github.com/ansible-collections/community.postgresql/issues/301).
391+
minor_changes:
392+
- postgresql_* - add the ``connect_params`` parameter dict to allow any additional
393+
``libpg`` connection parameters (https://github.com/ansible-collections/community.postgresql/pull/329).
394+
release_summary: 'This is the minor release of the ``community.postgresql``
395+
collection.
396+
397+
This changelog contains all changes to the modules in this collection that
398+
399+
have been added after the release of ``community.postgresql`` 2.2.0.'
400+
fragments:
401+
- 0-postgresql_set_avoid_quoting.yml
402+
- 2.3.0.yml
403+
- 301-postgresql_user_idempotent_scram.yml
404+
- 314-postgresql_info-quote-show-args.yml
405+
- 329-postgresql_add_connect_params_field.yml
406+
- 332-postgresql_privs_def_privs_schemas.yml
407+
- 351-postgresql_pg_hba-add-connection-types.yml
408+
release_date: '2022-11-04'

changelogs/fragments/0-postgresql_set_avoid_quoting.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/301-postgresql_user_idempotent_scram.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/314-postgresql_info-quote-show-args.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/329-postgresql_add_connect_params_field.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

changelogs/fragments/332-postgresql_privs_def_privs_schemas.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

changelogs/fragments/351-postgresql_pg_hba-add-connection-types.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
namespace: community
22
name: postgresql
3-
version: 2.2.0
3+
version: 2.3.0
44
readme: README.md
55
authors:
66
- Ansible PostgreSQL community

0 commit comments

Comments
 (0)