summaryrefslogtreecommitdiffstats
path: root/ansible_collections/community/postgresql/changelogs/changelog.yaml
blob: 45e4461b21f30df02d9388dff62a747d9b285a39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
ancestor: null
releases:
  0.1.0:
    changes:
      bugfixes:
      - postgresql_ext - fix the module crashes when available ext versions cannot
        be compared with current version (https://github.com/ansible-collections/community.general/issues/1095).
      - postgresql_ext - fix version selection when ``version=latest`` (https://github.com/ansible-collections/community.general/pull/1078).
      - postgresql_privs - fix module fails when ``type`` group and passing ``objs``
        value containing hyphens (https://github.com/ansible-collections/community.general/issues/1058).
      minor_changes:
      - postgresql_info - add ``in_recovery`` return value to show if a service in
        recovery mode or not (https://github.com/ansible-collections/community.general/issues/1068).
      - postgresql_privs - add ``procedure`` type support (https://github.com/ansible-collections/community.general/issues/1002).
      - postgresql_query - add ``query_list`` and ``query_all_results`` return values
        (https://github.com/ansible-collections/community.general/issues/838).
      release_summary: '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_*``.

        '
    fragments:
    - 0.1.0.yml
    - 1048-postgresql_privs_add_procedure_type.yml
    - 1059-postgresql_privs_fix_failings_when_using_roles_with_hyphen.yml
    - 1078-postgresql_ext_fix_version_selection_when_version_is_latest.yml
    - 1091-postgresql_info_add_in_recovery_ret_val.yml
    - 1099-postgresql_ext_fix_failing_when_version_cannot_be_compared.yml
    - 886-postgresql_query_add_ret_vals.yml
    release_date: '2020-10-29'
  1.0.0:
    changes:
      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.

        '
    fragments:
    - 1.0.0.yml
    release_date: '2020-11-17'
  1.1.0:
    changes:
      bugfixes:
      - postgresql_info - fix crash caused by wrong PgSQL version parsing (https://github.com/ansible-collections/community.postgresql/issues/40).
      - postgresql_ping - fix crash caused by wrong PgSQL version parsing (https://github.com/ansible-collections/community.postgresql/issues/40).
      - postgresql_set - return a message instead of traceback when a passed parameter
        has not been found (https://github.com/ansible-collections/community.postgresql/issues/41).
      minor_changes:
      - postgresql_query - add ``as_single_query`` option to execute a script content
        as a single query to avoid semicolon related errors (https://github.com/ansible-collections/community.postgresql/pull/37).
      release_summary: 'This is the minor release of the ``community.postgresql``
        collection.

        This changelog contains all changes to the modules in this collection that

        have been added after the release of ``community.postgresql`` 1.0.0.'
    fragments:
    - 1.1.0.yml
    - 37-postgresql_query_add_single_query_opt.yml
    - 42-postgresql_set_add_message_when_parameter_not_found.yml
    - 43-modules_fix_version_parsing.yml
    release_date: '2021-01-18'
  1.1.1:
    changes:
      bugfixes:
      - postgresql_query - add a warning to set ``as_single_query`` option explicitly
        (https://github.com/ansible-collections/community.postgresql/pull/54).
      - postgresql_query - fix datetime.timedelta type handling (https://github.com/ansible-collections/community.postgresql/issues/47).
      - postgresql_query - fix decimal handling (https://github.com/ansible-collections/community.postgresql/issues/45).
      - postgresql_set - fails in check_mode on non-numeric values containing `B`
        (https://github.com/ansible-collections/community.postgresql/issues/48).
      release_summary: 'This is the patch release of the ``community.postgresql``
        collection.

        This changelog contains all changes to the modules in this collection that

        have been added after the release of ``community.postgresql`` 1.1.0.'
    fragments:
    - 1.1.1.yml
    - 46-postgresql_query_fix_decimal_handling.yml
    - 51-postgresql_query_fix_datetime_timedelta_type_handling.yml
    - 52-postgresql_set_fix_b_values_handling.yml
    - 54-postgresql_query_add_warning_as_single_query.yml
    release_date: '2021-02-09'
  1.2.0:
    changes:
      minor_changes:
      - postgresql_info - add the ``patch``, ``full``, and ``raw`` values of the ``version``
        return value (https://github.com/ansible-collections/community.postgresql/pull/68).
      - postgresql_ping - add the ``patch``, ``full``, and ``raw`` values of the ``server_version``
        return value (https://github.com/ansible-collections/community.postgresql/pull/70).
      release_summary: 'This is the minor release of the ``community.postgresql``
        collection.

        This changelog contains all changes to the modules in this collection that

        have been added after the release of ``community.postgresql`` 1.1.1.'
    fragments:
    - 1.2.0.yml
    - 68-postgresql_info_add_ret_values.yml
    - 70-postgresql_ping_add_ret_values.yml
    release_date: '2021-03-30'
  1.3.0:
    changes:
      bugfixes:
      - postgresql_privs - fix ``fail_on_role`` check (https://github.com/ansible-collections/community.postgresql/pull/82).
      major_changes:
      - postgresql_query - the default value of the ``as_single_query`` option will
        be changed to ``yes`` in community.postgresql 2.0.0 (https://github.com/ansible-collections/community.postgresql/issues/85).
      release_summary: 'This is the minor release of the ``community.postgresql``
        collection.

        This changelog contains all changes to the modules in this collection that

        have been added after the release of ``community.postgresql`` 1.2.0.'
    fragments:
    - 1.3.0.yml
    - 82-fix-fail-on-role.yml
    - 87-postgresql_query_add_warn_announcement.yml
    release_date: '2021-05-03'
  1.4.0:
    changes:
      minor_changes:
      - postgresql_db - add support for the ``directory`` format when the ``state``
        option is ``dump`` or ``restore`` (https://github.com/ansible-collections/community.postgresql/pull/108).
      - postgresql_db - add the ``rename`` value to the ``state`` option (https://github.com/ansible-collections/community.postgresql/pull/107).
      release_summary: 'This is the minor release of the ``community.postgresql``
        collection.

        This changelog contains all changes to the modules in this collection that

        have been added after the release of ``community.postgresql`` 1.3.0.'
    fragments:
    - 1.4.0.yml
    - 107-postgresql_db_add_rename_state_value.yml
    - 108-postgresql_db_directory_format.yml
    release_date: '2021-07-13'
  1.5.0:
    changes:
      bugfixes:
      - postgresql_ext - Fix extension version handling when it has 0 value (https://github.com/ansible-collections/community.postgresql/issues/136).
      - postgresql_info - Fix extension version handling when it has 0 value (https://github.com/ansible-collections/community.postgresql/issues/137).
      - postgresql_set - Fix wrong numerical value conversion (https://github.com/ansible-collections/community.postgresql/issues/110).
      - postgresql_slot - Correct the server_version check for PG 9.6 (https://github.com/ansible-collections/community.postgresql/issue/120)
      minor_changes:
      - postgresql_db - Add the ``force`` boolean option to drop active connections
        first and then remove the database (https://github.com/ansible-collections/community.postgresql/issues/109).
      - postgresql_info - Add the ``raw`` return value for extension version (https://github.com/ansible-collections/community.postgresql/pull/138).
      - postgresql_pg_hba - Add the parameters ``keep_comments_at_rules`` and ``comment``
        (https://github.com/ansible-collections/community.postgresql/issues/134).
      release_summary: 'This is the minor release of the ``community.postgresql``
        collection.

        This changelog contains all changes to the modules in this collection that

        have been added after the release of ``community.postgresql`` 1.4.0.'
    fragments:
    - 1.5.0.yml
    - 120-postgresql_correct_server_version_check.yml
    - 134-postgresql_pg_hba-rule-specific-comments.yml
    - 138-postgresql_info_fix_ver_handling.yml
    - 145-postgresql_set_fix_wrong_value_conversion.yml
    - drop_db_with_force.yml
    release_date: '2021-09-30'
  1.6.0:
    changes:
      bugfixes:
      - postgresql_ext - Handle postgresql extension updates through path validation
        instead of version comparison (https://github.com/ansible-collections/community.postgresql/issues/129).
      release_summary: 'This is the minor release of the ``community.postgresql``
        collection.

        This changelog contains all changes to the modules in this collection that

        have been added after the release of ``community.postgresql`` 1.5.0.'
    fragments:
    - 1.6.0.yml
    - 163-better_handling_of_postgresql_extensions.yml
    release_date: '2021-11-24'
  1.6.1:
    changes:
      bugfixes:
      - Collection core functions - use vendored version of ``distutils.version``
        instead of the deprecated Python standard library ``distutils`` (https://github.com/ansible-collections/community.postgresql/pull/179).
      - postgres_info - It now works on AWS RDS Postgres.
      - postgres_info - Specific info (namespaces, extensions, languages) of each
        database was not being shown properly. Instead, the info from the DB that
        was connected was always being shown (https://github.com/ansible-collections/community.postgresql/issues/172).
      release_summary: 'This is the bugfix release of the ``community.postgresql``
        collection.

        This changelog contains all changes to the modules in this collection that

        have been added after the release of ``community.postgresql`` 1.6.1.'
    fragments:
    - 1.6.1.yml
    - 171-postgres_info__was_not_working_on_aws_rds_postgres.yml
    - 173-postgres_info_now_shows_the_info_of_each_specific_database.yml
    - 178-prepare_for_distutils_be_removed.yml
    release_date: '2022-01-17'
  2.0.0:
    changes:
      major_changes:
      - postgresql_query - the default value of the ``as_single_query`` option changes
        to ``yes``. If the related behavior of your tasks where the module is involved
        changes, please adjust the parameter's value correspondingly (https://github.com/ansible-collections/community.postgresql/issues/85).
      release_summary: 'This is the major release of the ``community.postgresql``
        collection.

        This changelog contains all changes to the modules in this collection that

        have been added after the release of ``community.postgresql`` 1.7.0.'
    fragments:
    - 185-postgresql_query_as_single_query_true.yml
    - 2.0.0.yml
    release_date: '2022-02-10'
  2.1.0:
    changes:
      major_changes:
      - postgresql_query - the ``path_to_script`` and ``as_single_query`` options
        as well as the ``query_list`` and ``query_all_results`` return values have
        been deprecated and will be removed in ``community.postgresql 3.0.0``. Please
        use the ``community.postgresql.postgresql_script`` module to execute statements
        from scripts (https://github.com/ansible-collections/community.postgresql/issues/189).
      release_summary: 'This is the minor release of the ``community.postgresql``
        collection.

        This changelog contains all changes to the modules in this collection that

        have been added after the release of ``community.postgresql`` 2.0.0.'
    fragments:
    - 0_deprecation_announcement.yml
    - 2.1.0.yml
    modules:
    - description: Run PostgreSQL statements from a file
      name: postgresql_script
      namespace: ''
    release_date: '2022-02-17'
  2.1.1:
    changes:
      bugfixes:
      - module core functions - get rid of the deprecated psycopg2 connection alias
        ``database`` in favor of ``dbname`` when psycopg2 is 2.7+ (https://github.com/ansible-collections/community.postgresql/pull/196).
      - postgresql_query - cannot handle .sql file with \\n at end of file (https://github.com/ansible-collections/community.postgresql/issues/180).
      release_summary: 'This is the bugfix release of the community.postgresql collection.

        This changelog contains all changes to the modules in this collection that
        have been added after the release of community.postgresql 2.1.0.'
    fragments:
    - 0-postgresql_query_fix.yml
    - 1-postgresq_connection_fix.yml
    - 2.1.1.yml
    release_date: '2022-02-28'
  2.1.2:
    changes:
      major_changes:
      - postgresql_privs - the ``usage_on_types`` feature have been deprecated and
        will be removed in ``community.postgresql 3.0.0``. Please use the ``type``
        option with the ``type`` value to explicitly grant/revoke privileges on types
        (https://github.com/ansible-collections/community.postgresql/issues/207).
      release_summary: This is the patch release of the `community.postgresql` collection.
        This changelog contains all changes to the modules in this collection that
        have been added after the release of `community.postgresql` 2.1.1.
    fragments:
    - 0_deprecation_announcement.yml
    - 2.1.2.yml
    release_date: '2022-03-16'
  2.1.3:
    changes:
      bugfixes:
      - postgresql_db - get rid of the deprecated psycopg2 connection alias ``database``
        in favor of ``dbname`` when psycopg2 is 2.7+ is used (https://github.com/ansible-collections/community.postgresql/issues/194,
        https://github.com/ansible-collections/community.postgresql/pull/196).
      major_changes:
      - postgresql_user - the ``priv`` argument has been deprecated and will be removed
        in ``community.postgresql 3.0.0``. Please use the ``postgresql_privs`` module
        to grant/revoke privileges instead (https://github.com/ansible-collections/community.postgresql/issues/212).
      release_summary: 'This is the minor release of the ``community.postgresql``
        collection.

        This changelog contains all changes to the modules in this collection that

        have been added after the release of ``community.postgresql`` 2.1.2.'
    fragments:
    - 0-postgresql_db_deprecated_alias.yml
    - 0-postgresql_user_depraction_of_privs.yml
    - 2.1.3.yml
    release_date: '2022-04-12'
  2.1.4:
    changes:
      major_changes:
      - The community.postgresql collection no longer supports ``Ansible 2.9`` and
        ``ansible-base 2.10``. While we take no active measures to prevent usage and
        there are no plans to introduce incompatible code to the modules, we will
        stop testing against ``Ansible 2.9`` and ``ansible-base 2.10``. Both will
        very soon be End of Life and if you are still using them, you should consider
        upgrading to the ``latest Ansible / ansible-core 2.11 or later`` as soon as
        possible (https://github.com/ansible-collections/community.postgresql/pull/245).
      release_summary: 'This is the minor release of the ``community.postgresql``
        collection.

        This changelog contains all changes to the modules in this collection that

        have been added after the release of ``community.postgresql`` 2.1.3.'
    fragments:
    - 2.1.4.yml
    - remove-2.9-2.10-compatability.yml
    release_date: '2022-04-28'
  2.1.5:
    changes:
      bugfixes:
      - Include ``PSF-license.txt`` file for ``plugins/module_utils/_version.py``.
      - collection core functions - fix attribute error `nonetype` by always calling
        `ensure_required_libs` (https://github.com/ansible-collections/community.postgresql/issues/252).
      release_summary: 'This is the bugfix release of the ``community.postgresql``
        collection.

        This changelog contains all changes to the modules in this collection that

        have been added after the release of ``community.postgresql`` 2.1.4'
    fragments:
    - 2.1.5.yml
    - 252-fix-none-attribute-error.yml
    - psf-license.yml
    release_date: '2022-05-16'
  2.2.0:
    changes:
      bugfixes:
      - Include ``simplified_bsd.txt`` license file for various module utils.
      - postgresql_info - fix pg version parsing (https://github.com/ansible-collections/community.postgresql/issues/315).
      - postgresql_ping - fix pg version parsing (https://github.com/ansible-collections/community.postgresql/issues/315).
      - postgresql_privs.py - add functionality when the PostgreSQL version is 9.0.0
        or greater to incorporate ``ALL x IN SCHEMA`` syntax (https://github.com/ansible-collections/community.postgresql/pull/282).
        Please see the official documentation for details regarding grants (https://www.postgresql.org/docs/9.0/sql-grant.html).
      - postgresql_subscription - fix idempotence by casting the ``connparams`` dict
        variable (https://github.com/ansible-collections/community.postgresql/issues/280).
      - postgresql_user - add ``alter user``-statements in the return value ``queries``
        (https://github.com/ansible-collections/community.postgresql/issues/307).
      major_changes:
      - postgresql_user - the ``groups`` argument has been deprecated and will be
        removed in ``community.postgresql 3.0.0``. Please use the ``postgresql_membership``
        module to specify group/role memberships instead (https://github.com/ansible-collections/community.postgresql/issues/277).
      minor_changes:
      - postgresql_membership - add the ``exact`` state value to be able to specify
        a list of only groups a user must be a member of (https://github.com/ansible-collections/community.postgresql/issues/277).
      - 'postgresql_pg_hba - add argument ``overwrite`` (bool, default: false) to
        remove unmanaged rules (https://github.com/ansible-collections/community.postgresql/issues/297).'
      - 'postgresql_pg_hba - add argument ``rules_behavior`` (choices: conflict (default),
        combine) to fail when ``rules`` and normal rule-specific arguments are given
        or, when ``combine``, use them as defaults for the ``rules`` items (https://github.com/ansible-collections/community.postgresql/issues/297).'
      - postgresql_pg_hba - add argument ``rules`` to specify a list of rules using
        the normal rule-specific argument in each item (https://github.com/ansible-collections/community.postgresql/issues/297).
      release_summary: 'This is the minor release of the ``community.postgresql``
        collection.

        This changelog contains all changes to the modules in this collection that

        have been added after the release of ``community.postgresql`` 2.1.5.'
    fragments:
    - 0-postgresql_user-deprecate-privs-manipulation.yml
    - 2.2.0.yml
    - 285-postgresql_subscription_fix_idempontece.yml
    - 293-postgresql_membership_exact_value.yml
    - 303-postgresql_pg_hba_add_bulk_rule_arguments.yml
    - 308-postgresql_user_alter_statements_return.yml
    - 316-postgresql_ping_fix_pg_version_parsing.yml
    - all_in_schema.yml
    - simplified-bsd-license.yml
    release_date: '2022-07-27'
  2.3.0:
    changes:
      bugfixes:
      - 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).
      - postgresql_pg_hba - support the connection types ``hostgssenc`` and ``hostnogssenc``
        (https://github.com/ansible-collections/community.postgresql/pull/351).
      - postgresql_privs - add support for alter default privileges grant usage on
        schemas (https://github.com/ansible-collections/community.postgresql/issues/332).
      - 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).
      - postgresql_set - avoid postgres puts extra quotes when passing values containing
        commas (https://github.com/ansible-collections/community.postgresql/issues/78).
      - postgresql_user - make the module idempotent when password is scram hashed
        (https://github.com/ansible-collections/community.postgresql/issues/301).
      minor_changes:
      - postgresql_* - add the ``connect_params`` parameter dict to allow any additional
        ``libpg`` connection parameters (https://github.com/ansible-collections/community.postgresql/pull/329).
      release_summary: 'This is the minor release of the ``community.postgresql``
        collection.

        This changelog contains all changes to the modules in this collection that

        have been added after the release of ``community.postgresql`` 2.2.0.'
    fragments:
    - 0-postgresql_set_avoid_quoting.yml
    - 2.3.0.yml
    - 301-postgresql_user_idempotent_scram.yml
    - 314-postgresql_info-quote-show-args.yml
    - 329-postgresql_add_connect_params_field.yml
    - 332-postgresql_privs_def_privs_schemas.yml
    - 351-postgresql_pg_hba-add-connection-types.yml
    release_date: '2022-11-04'
  2.3.1:
    changes:
      bugfixes:
      - postgresql_privs - fails with ``type=default_privs``, ``privs=ALL``, ``objs=ALL_DEFAULT``
        (https://github.com/ansible-collections/community.postgresql/issues/373).
      release_summary: 'This is the bugfix release of the ``community.postgresql``
        collection.

        This changelog contains all changes to the modules in this collection that

        have been added after release 2.3.0.'
    fragments:
    - 0-postgresql_privs.yml
    - 2.3.1.yml
    release_date: '2022-11-25'
  2.3.2:
    changes:
      bugfixes:
      - postgresql_pg_hba - fix ``changed`` return value for when ``overwrite`` is
        enabled (https://github.com/ansible-collections/community.postgresql/pull/378).
      - postgresql_privs - fix quoting of the ``schema`` parameter in SQL statements
        (https://github.com/ansible-collections/community.postgresql/pull/382).
      - 'postgresql_privs - raise an error when the ``objs: ALL_IN_SCHEMA`` is used
        with a value of ``type`` that is not ``table``, ``sequence``, ``function``
        or ``procedure`` (https://github.com/ansible-collections/community.postgresql/issues/379).'
      release_summary: 'This is the bugfix release of the ``community.postgresql``
        collection.

        This changelog contains all changes to the modules in this collection that

        have been added after release 2.3.1.'
    fragments:
    - 2.3.2.yml
    - 378-postgresql_pg_hba_fix_change_detection.yml
    - 379-postgresql_privs.yml
    - 382-postgresql_privs_fix_schemas_with_special_names.yml
    release_date: '2022-12-09'
  2.4.0:
    changes:
      bugfixes:
      - postgresql_info - add support for non numeric extenstion version (https://github.com/ansible-collections/community.postgresql/issues/428).
      - postgresql_info - when getting information about subscriptions, check the
        list of available columns in the pg_subscription table (https://github.com/ansible-collections/community.postgresql/issues/429).
      - postgresql_privs - fix connect_params being ignored (https://github.com/ansible-collections/community.postgresql/issues/450).
      - postgresql_query - could crash under certain conditions because of a missing
        import to `psycopg2.extras` (https://github.com/ansible-collections/community.postgresql/issues/283).
      - postgresql_set - avoid throwing ValueError for IP addresses and other values
        that may look like a number, but which are not (https://github.com/ansible-collections/community.postgresql/pull/422).
      - postgresql_set - avoid wrong values for single-value parameters containing
        commas (https://github.com/ansible-collections/community.postgresql/pull/400).
      - postgresql_user - properly close DB connections to prevent possible connection
        limit exhaustion (https://github.com/ansible-collections/community.postgresql/issues/431).
      major_changes:
      - postgresql_privs - the ``password`` argument is deprecated and will be removed
        in community.postgresql 4.0.0, use the ``login_password`` argument instead
        (https://github.com/ansible-collections/community.postgresql/issues/406).
      minor_changes:
      - Add support for module_defaults with action_group ``all`` (https://github.com/ansible-collections/community.postgresql/pull/430).
      - postgresql - added new parameters ``ssl_cert`` and ``ssl_key`` for ssl connection
        (https://github.com/ansible-collections/community.postgresql/issues/424).
      - postgresql - when receiving the connection parameters, the ``PGPORT`` and
        ``PGUSER`` environment variables are checked. The order of assigning values
        ``environment variables`` -> ``default values`` -> ``set values`` (https://github.com/ansible-collections/community.postgresql/issues/311).
      - postgresql_query - a list of queries can be passed as the ``query`` argument's
        value, the results will be stored in the ``query_all_results`` return value
        (is not deprecated anymore, as well as ``query_list``) (https://github.com/ansible-collections/community.postgresql/issues/312).
      release_summary: 'This is the minor release of the ``community.postgresql``
        collection.

        This changelog contains all changes to the modules in this collection that

        have been added after the release of ``community.postgresql`` 2.3.2.'
    fragments:
    - 0-postgres.yml
    - 0-postgresql_info.yml
    - 0-postgresql_query.yml
    - 0-postgresql_set_avoid_handle_ip_addresses.yml
    - 0-postgresql_set_avoid_wrong_values.yml
    - 0-postgresql_user.yml
    - 1-postgres.yml
    - 1-postgresql_privs_deprecate_password.yml
    - 2.4.0.yml
    - 399-missing-import.yml
    - 428-postgres_info_support_non_numeric_extenstion_version.yml
    - 430-action_group_all_for_module_defaults.yml
    - 451-postgresql_privs_fix_connect_params_being_ignored.yml
    release_date: '2023-05-04'
  2.4.1:
    changes:
      bugfixes:
      - postgresql_privs - fix a breaking change related to handling the ``password``
        argument (https://github.com/ansible-collections/community.postgresql/pull/463).
      release_summary: 'This is the bugfix release of the ``community.postgresql``
        collection.

        This changelog contains all changes to the modules in this collection that

        have been added after release 2.4.0.'
    fragments:
    - 0-postgresql_privs.yml
    - 2.4.1.yml
    release_date: '2023-05-05'
  2.4.2:
    changes:
      bugfixes:
      - postgresql_db - when the task is completed successfully, close the database
        connection (https://github.com/ansible-collections/community.postgresql/issues/465).
      - postgresql_info - when the task is completed successfully, close the database
        connection (https://github.com/ansible-collections/community.postgresql/issues/465).
      - postgresql_ping - when the task is completed successfully, close the database
        connection (https://github.com/ansible-collections/community.postgresql/issues/465).
      - postgresql_privs - when the task is completed successfully, close the database
        connection (https://github.com/ansible-collections/community.postgresql/issues/465).
      release_summary: 'This is a bugfix release of the ``community.postgresql`` collection.

        This changelog contains all changes to the modules in this collection that

        have been added after release 2.4.1.'
    fragments:
    - 0-postgresql_db.yml
    - 0-postgresql_info.yml
    - 2.4.2.yml
    release_date: '2023-06-09'