diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7991677ec1..421a454ad1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,14 @@
All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).
+## [v6.10.2](https://github.com/puppetlabs/puppetlabs-postgresql/tree/v6.10.2) (2021-02-22)
+
+[Full Changelog](https://github.com/puppetlabs/puppetlabs-postgresql/compare/v6.10.1...v6.10.2)
+
+### Fixed
+
+- Fix command shell escaping [\#1240](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1240) ([DavidS](https://github.com/DavidS))
+
## [v6.10.1](https://github.com/puppetlabs/puppetlabs-postgresql/tree/v6.10.1) (2021-02-09)
[Full Changelog](https://github.com/puppetlabs/puppetlabs-postgresql/compare/v6.10.0...v6.10.1)
diff --git a/REFERENCE.md b/REFERENCE.md
index ab2c80a71a..e7943af230 100644
--- a/REFERENCE.md
+++ b/REFERENCE.md
@@ -3034,6 +3034,7 @@ The following parameters are available in the `postgresql_psql` type.
* [`psql_user`](#psql_user)
* [`refreshonly`](#refreshonly)
* [`search_path`](#search_path)
+* [`sensitive`](#sensitive)
* [`unless`](#unless)
##### `connect_settings`
@@ -3108,6 +3109,15 @@ Default value: ``false``
The schema search path to use when executing the SQL command
+##### `sensitive`
+
+Valid values: ``true``, ``false``
+
+If 'true', then the executed command will not be echoed into the log. Use this to protect sensitive information passing
+through.
+
+Default value: ``false``
+
##### `unless`
An optional SQL command to execute prior to the main :command;
diff --git a/metadata.json b/metadata.json
index 0cb22b5baf..5b84c111cb 100644
--- a/metadata.json
+++ b/metadata.json
@@ -1,6 +1,6 @@
{
"name": "puppetlabs-postgresql",
- "version": "6.10.1",
+ "version": "6.10.2",
"author": "puppetlabs",
"summary": "Offers support for basic management of PostgreSQL databases.",
"license": "Apache-2.0",