Skip to content

Commit

Permalink
Merge pull request #403 from puppetlabs/release-prep
Browse files Browse the repository at this point in the history
Release prep v8.0.1
  • Loading branch information
h0tw1r3 committed May 2, 2024
2 parents 94ccecb + 6fcd9cb commit 99cbeea
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 2 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,15 @@ 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.0.0](https://github.com/puppetlabs/puppetlabs-puppetdb/tree/v8.0.0) - 2024-04-18
## [v8.0.1](https://github.com/puppetlabs/puppetlabs-puppetdb/tree/v8.0.1) - 2024-05-02

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

### Fixed

- Fix lower bound the of puppetlabs-postgresql dependency [#402](https://github.com/puppetlabs/puppetlabs-puppetdb/pull/402) ([smortex](https://github.com/smortex))

## [v8.0.0](https://github.com/puppetlabs/puppetlabs-puppetdb/tree/v8.0.0) - 2024-04-30

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

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

### Added

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

### Fixed

- Support scram-sha-256 password_encryption method [#400](https://github.com/puppetlabs/puppetlabs-puppetdb/pull/400) ([deric](https://github.com/deric))
- Fix custom database port support [#392](https://github.com/puppetlabs/puppetlabs-puppetdb/pull/392) ([h0tw1r3](https://github.com/h0tw1r3))
- 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))
- Unterminated quoted string when creating read user [#371](https://github.com/puppetlabs/puppetlabs-puppetdb/pull/371) ([waipeng](https://github.com/waipeng))
Expand Down
27 changes: 27 additions & 0 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ The following parameters are available in the `puppetdb` class:
* [`cleanup_timer_interval`](#-puppetdb--cleanup_timer_interval)
* [`dlo_max_age`](#-puppetdb--dlo_max_age)
* [`java_bin`](#-puppetdb--java_bin)
* [`postgresql_password_encryption`](#-puppetdb--postgresql_password_encryption)

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

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

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

##### <a name="-puppetdb--postgresql_password_encryption"></a>`postgresql_password_encryption`

Data type: `Postgresql::Pg_password_encryption`

PostgreSQL password authentication method, either `md5` or `scram-sha-256`

Default value: `$puppetdb::params::password_encryption`

### <a name="puppetdb--database--postgresql"></a>`puppetdb::database::postgresql`

create the PuppetDB postgresql database
Expand All @@ -924,6 +933,8 @@ The following parameters are available in the `puppetdb::database::postgresql` c
* [`read_database_username`](#-puppetdb--database--postgresql--read_database_username)
* [`read_database_password`](#-puppetdb--database--postgresql--read_database_password)
* [`read_database_host`](#-puppetdb--database--postgresql--read_database_host)
* [`password_sensitive`](#-puppetdb--database--postgresql--password_sensitive)
* [`password_encryption`](#-puppetdb--database--postgresql--password_encryption)

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

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

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

##### <a name="-puppetdb--database--postgresql--password_sensitive"></a>`password_sensitive`

Data type: `Boolean`

Whether password should be of Datatype Sensitive[String]

Default value: `false`

##### <a name="-puppetdb--database--postgresql--password_encryption"></a>`password_encryption`

Data type: `Postgresql::Pg_password_encryption`

PostgreSQL password authentication method, either `md5` or `scram-sha-256`

Default value: `$puppetdb::params::password_encryption`

### <a name="puppetdb--globals"></a>`puppetdb::globals`

global configuration class for PuppetDB
Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "puppetlabs-puppetdb",
"version": "8.0.0",
"version": "8.0.1",
"author": "puppetlabs",
"summary": "Installs PostgreSQL and PuppetDB, sets up the connection to Puppet master.",
"license": "Apache-2.0",
Expand Down

0 comments on commit 99cbeea

Please sign in to comment.