diff --git a/CHANGELOG.md b/CHANGELOG.md
index 83bebaa8..7cd0f3c9 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).
+## [v7.0.0](https://github.com/puppetlabs/puppetlabs-haproxy/tree/v7.0.0) (2023-04-03)
+
+[Full Changelog](https://github.com/puppetlabs/puppetlabs-haproxy/compare/v6.5.0...v7.0.0)
+
+### Changed
+
+- \(Cont 779\) Add Support for Puppet 8 / Drop Support for Puppet 6 [\#544](https://github.com/puppetlabs/puppetlabs-haproxy/pull/544) ([david22swan](https://github.com/david22swan))
+
## [v6.5.0](https://github.com/puppetlabs/puppetlabs-haproxy/tree/v6.5.0) (2023-03-31)
[Full Changelog](https://github.com/puppetlabs/puppetlabs-haproxy/compare/v6.4.0...v6.5.0)
diff --git a/REFERENCE.md b/REFERENCE.md
index cf8dedae..9cc8c84a 100644
--- a/REFERENCE.md
+++ b/REFERENCE.md
@@ -588,7 +588,7 @@ The name of the balancer member server as known to haproxy in the
in which case a balancermember is created for each pair of
server_names and ipaddresses (in lockstep).
-Default value: `$hostname`
+Default value: `$facts['networking']['hostname']`
##### `ipaddresses`
@@ -597,7 +597,7 @@ Data type: `Variant[String, Array]`
The ip address used to contact the balancer member server.
Can be an array, see documentation to server_names.
-Default value: `$ipaddress`
+Default value: `$facts['networking']['ip']`
##### `prefix`
@@ -1469,7 +1469,7 @@ Sets the name of the mailer server in the mailers configuration block.
ipaddresses parameter's array. A mailer is created for each pair
of server\_names and ipaddresses in the array.
-Default value: `$hostname`
+Default value: `$facts['networking']['hostname']`
##### `ipaddresses`
@@ -1480,7 +1480,7 @@ Specifies the IP address used to contact the mailer member server.
must be the same length as the server\_names parameter's array.
A mailer is created for each pair of address and server_name.
-Default value: `$ipaddress`
+Default value: `$facts['networking']['ip']`
##### `port`
@@ -1684,7 +1684,7 @@ specified as an array, it must be the same length as the
ipaddresses parameter's array. A peer is created for each pair
of server\_names and ipaddresses in the array.
-Default value: `$hostname`
+Default value: `$facts['networking']['hostname']`
##### `ipaddresses`
@@ -1695,7 +1695,7 @@ Can be an array. If this parameter is specified as an array it
must be the same length as the server\_names parameter's array.
A peer is created for each pair of address and server_name.
-Default value: `$ipaddress`
+Default value: `$facts['networking']['ip']`
##### `port`
diff --git a/metadata.json b/metadata.json
index b67f0675..4c609f59 100644
--- a/metadata.json
+++ b/metadata.json
@@ -1,6 +1,6 @@
{
"name": "puppetlabs-haproxy",
- "version": "6.5.0",
+ "version": "7.0.0",
"author": "puppetlabs",
"summary": "Configures HAProxy servers and manages the configuration of backend member servers.",
"license": "Apache-2.0",