diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5b3a318a56..eee7150a66 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).
+## [v8.2.1](https://github.com/puppetlabs/puppetlabs-apache/tree/v8.2.1) (2022-09-26)
+
+[Full Changelog](https://github.com/puppetlabs/puppetlabs-apache/compare/v8.2.0...v8.2.1)
+
+### Fixed
+
+- \(maint\) Codebase Hardening [\#2313](https://github.com/puppetlabs/puppetlabs-apache/pull/2313) ([david22swan](https://github.com/david22swan))
+
## [v8.2.0](https://github.com/puppetlabs/puppetlabs-apache/tree/v8.2.0) (2022-09-13)
[Full Changelog](https://github.com/puppetlabs/puppetlabs-apache/compare/v8.1.0...v8.2.0)
diff --git a/REFERENCE.md b/REFERENCE.md
index 167e7ff966..509712b5a1 100644
--- a/REFERENCE.md
+++ b/REFERENCE.md
@@ -7431,13 +7431,16 @@ Default value: ``undef``
##### `verify_command`
-Data type: `String`
+Data type: `Variant[String, Array[String], Array[Array[String]]]`
Specifies the command Puppet uses to verify the configuration file. Use a fully qualified
command.
This parameter is used only if the `verify_config` parameter's value is `true`. If the
`verify_command` fails, the Puppet run deletes the configuration file and raises an error,
but does not notify the Apache service.
+Command can be passed through as either a String, i.e. `'/usr/sbin/apache2ctl -t'`
+An array, i.e. `['/usr/sbin/apache2ctl', '-t']`
+Or an array of arrays with each one having to pass succesfully, i.e. `[['/usr/sbin/apache2ctl', '-t'], '/usr/sbin/apache2ctl -t']`
Default value: `$apache::params::verify_command`
diff --git a/metadata.json b/metadata.json
index d24f84e355..3a690c55c1 100644
--- a/metadata.json
+++ b/metadata.json
@@ -1,6 +1,6 @@
{
"name": "puppetlabs-apache",
- "version": "8.2.0",
+ "version": "8.2.1",
"author": "puppetlabs",
"summary": "Installs, configures, and manages Apache virtual hosts, web services, and modules.",
"license": "Apache-2.0",