Skip to content

Commit 99cbeea

Browse files
authored
Merge pull request #403 from puppetlabs/release-prep
Release prep v8.0.1
2 parents 94ccecb + 6fcd9cb commit 99cbeea

File tree

3 files changed

+39
-2
lines changed

3 files changed

+39
-2
lines changed

Diff for: CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,15 @@ All notable changes to this project will be documented in this file.
55

66
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).
77

8-
## [v8.0.0](https://github.com/puppetlabs/puppetlabs-puppetdb/tree/v8.0.0) - 2024-04-18
8+
## [v8.0.1](https://github.com/puppetlabs/puppetlabs-puppetdb/tree/v8.0.1) - 2024-05-02
9+
10+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-puppetdb/compare/v8.0.0...v8.0.1)
11+
12+
### Fixed
13+
14+
- Fix lower bound the of puppetlabs-postgresql dependency [#402](https://github.com/puppetlabs/puppetlabs-puppetdb/pull/402) ([smortex](https://github.com/smortex))
15+
16+
## [v8.0.0](https://github.com/puppetlabs/puppetlabs-puppetdb/tree/v8.0.0) - 2024-04-30
917

1018
[Full Changelog](https://github.com/puppetlabs/puppetlabs-puppetdb/compare/7.14.0...v8.0.0)
1119

@@ -14,6 +22,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
1422
- Drop support for puppet < 7 [#383](https://github.com/puppetlabs/puppetlabs-puppetdb/pull/383) ([h0tw1r3](https://github.com/h0tw1r3))
1523
- Change default postgres version to 14 [#379](https://github.com/puppetlabs/puppetlabs-puppetdb/pull/379) ([jonathannewman](https://github.com/jonathannewman))
1624
- Update firewall manifests to use `jump` instead of `action` [#372](https://github.com/puppetlabs/puppetlabs-puppetdb/pull/372) ([david22swan](https://github.com/david22swan))
25+
- Remove obsolete database config options [#357](https://github.com/puppetlabs/puppetlabs-puppetdb/pull/357) ([smokris](https://github.com/smokris))
1726

1827
### Added
1928

@@ -22,6 +31,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
2231

2332
### Fixed
2433

34+
- Support scram-sha-256 password_encryption method [#400](https://github.com/puppetlabs/puppetlabs-puppetdb/pull/400) ([deric](https://github.com/deric))
2535
- Fix custom database port support [#392](https://github.com/puppetlabs/puppetlabs-puppetdb/pull/392) ([h0tw1r3](https://github.com/h0tw1r3))
2636
- Correct clientcert value in pg_hba.conf for Postgresql >= 12 [#380](https://github.com/puppetlabs/puppetlabs-puppetdb/pull/380) ([jhunt-steds](https://github.com/jhunt-steds))
2737
- Unterminated quoted string when creating read user [#371](https://github.com/puppetlabs/puppetlabs-puppetdb/pull/371) ([waipeng](https://github.com/waipeng))

Diff for: REFERENCE.md

+27
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ The following parameters are available in the `puppetdb` class:
146146
* [`cleanup_timer_interval`](#-puppetdb--cleanup_timer_interval)
147147
* [`dlo_max_age`](#-puppetdb--dlo_max_age)
148148
* [`java_bin`](#-puppetdb--java_bin)
149+
* [`postgresql_password_encryption`](#-puppetdb--postgresql_password_encryption)
149150

150151
##### <a name="-puppetdb--listen_address"></a>`listen_address`
151152

@@ -899,6 +900,14 @@ java binary path for PuppetDB. If undef, default will be used.
899900

900901
Default value: `$puppetdb::params::java_bin`
901902

903+
##### <a name="-puppetdb--postgresql_password_encryption"></a>`postgresql_password_encryption`
904+
905+
Data type: `Postgresql::Pg_password_encryption`
906+
907+
PostgreSQL password authentication method, either `md5` or `scram-sha-256`
908+
909+
Default value: `$puppetdb::params::password_encryption`
910+
902911
### <a name="puppetdb--database--postgresql"></a>`puppetdb::database::postgresql`
903912

904913
create the PuppetDB postgresql database
@@ -924,6 +933,8 @@ The following parameters are available in the `puppetdb::database::postgresql` c
924933
* [`read_database_username`](#-puppetdb--database--postgresql--read_database_username)
925934
* [`read_database_password`](#-puppetdb--database--postgresql--read_database_password)
926935
* [`read_database_host`](#-puppetdb--database--postgresql--read_database_host)
936+
* [`password_sensitive`](#-puppetdb--database--postgresql--password_sensitive)
937+
* [`password_encryption`](#-puppetdb--database--postgresql--password_encryption)
927938

928939
##### <a name="-puppetdb--database--postgresql--listen_addresses"></a>`listen_addresses`
929940

@@ -1075,6 +1086,22 @@ parameter. This option is supported in PuppetDB >= 1.6.
10751086

10761087
Default value: `$puppetdb::params::read_database_host`
10771088

1089+
##### <a name="-puppetdb--database--postgresql--password_sensitive"></a>`password_sensitive`
1090+
1091+
Data type: `Boolean`
1092+
1093+
Whether password should be of Datatype Sensitive[String]
1094+
1095+
Default value: `false`
1096+
1097+
##### <a name="-puppetdb--database--postgresql--password_encryption"></a>`password_encryption`
1098+
1099+
Data type: `Postgresql::Pg_password_encryption`
1100+
1101+
PostgreSQL password authentication method, either `md5` or `scram-sha-256`
1102+
1103+
Default value: `$puppetdb::params::password_encryption`
1104+
10781105
### <a name="puppetdb--globals"></a>`puppetdb::globals`
10791106

10801107
global configuration class for PuppetDB

Diff for: metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppetlabs-puppetdb",
3-
"version": "8.0.0",
3+
"version": "8.0.1",
44
"author": "puppetlabs",
55
"summary": "Installs PostgreSQL and PuppetDB, sets up the connection to Puppet master.",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)