From d03523078e73360e9cf8d39ac0825d7f98d64924 Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Thu, 7 May 2026 14:27:42 -0600 Subject: [PATCH] docs(changelog): version 1.7.0 [citest_skip] Update changelog and .README.html for version 1.7.0 Signed-off-by: Rich Megginson --- .README.html | 15 +++++++++++++++ CHANGELOG.md | 11 +++++++++++ 2 files changed, 26 insertions(+) diff --git a/.README.html b/.README.html index a7aef86041..d54b54414f 100644 --- a/.README.html +++ b/.README.html @@ -161,6 +161,8 @@

Contents

id="toc-postgresql_input_file">postgresql_input_file
  • postgresql_server_tuning
  • +
  • postgresql_secure_logging
  • Idempotence
      @@ -294,6 +296,19 @@

      postgresql_server_tuning

      independent of the actual deployment.

      See the examples/ for details.

      +

      postgresql_secure_logging

      +

      If true, suppress potentially sensitive output from +tasks that handle credentials, secrets, and other sensitive data by +setting no_log: true on those tasks. This prevents +passwords, API tokens, private keys, and similar sensitive information +from appearing in Ansible logs and console output.

      +

      If you need to debug issues with credential handling or secret +management, you can temporarily set +postgresql_secure_logging: false to see the full output +from these tasks. However, be aware that this may expose sensitive +information in logs, so it should only be used in development or +troubleshooting scenarios.

      +

      Default: true

      Idempotence

      This section should cover role behavior for repeated runs.

      Password change

      diff --git a/CHANGELOG.md b/CHANGELOG.md index 32844be4f7..4a89866fca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ Changelog ========= +[1.7.0] - 2026-05-07 +-------------------- + +### New Features + +- feat: new variable `postgresql_secure_logging` defaulting to `true` (#184) + +### Other Changes + +- ci: bump actions/github-script from 8 to 9 (#183) + [1.6.0] - 2026-04-28 --------------------