Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixes and features for the pg_hba module #778

Draft
wants to merge 12 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@
# @global-owner1 and @global-owner2 will be requested for
# review when someone opens a pull request.
* @Andersson007 @hunleyd @jchancojr

plugins/modules/postgresql_pg_hba.py @Andersson007 @hunleyd @jchancojr @toydarian
tests/integration/targets/postgresql_pg_hba/* @Andersson007 @hunleyd @jchancojr @toydarian
tests/unit/plugins/modules/test_postgresql_pg_hba.py @Andersson007 @hunleyd @jchancojr @toydarian
8 changes: 8 additions & 0 deletions changelogs/fragments/778-pg-hba-improvements.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
bugfixes:
- "postgresql_pg_hba - fixes #776 the module won't be adding/moving comments repeatedly if 'keep_comments_at_rules' is 'false' (https://github.com/ansible-collections/community.postgresql/pull/778)"
- "postgresql_pg_hba - fixes #777 the module will ignore the 'address' and 'netmask' options again when the contype is 'local' (https://github.com/ansible-collections/community.postgresql/pull/778)"
minor_changes:
- "postgresql_pg_hba - regarding #776 'keep_comments_at_rules' has been deprecated and won't do anything (https://github.com/ansible-collections/community.postgresql/pull/778)"
- "postgresql_pg_hba - adds a parameter 'sort_rules' that allows the user to disable sorting in the module, the default is the previous behavior (https://github.com/ansible-collections/community.postgresql/pull/778)"
- "postgresql_pg_hba - will read all kinds of includes and add them to the end of the file in the same order as they were in the original file, does not allow to add includes (https://github.com/ansible-collections/community.postgresql/pull/778)"
- "postgresql_pg_hba - adds 'pg_hba_string' which contains the string that is written to the file to the output of the module (https://github.com/ansible-collections/community.postgresql/pull/778)"
Loading
Loading