Skip to content

Commit 0a2cb69

Browse files
authored
Merge pull request #1304 from puppetlabs/release-prep
Release prep v7.5.0
2 parents 03f72c7 + a3670a5 commit 0a2cb69

File tree

4 files changed

+29
-14
lines changed

4 files changed

+29
-14
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
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).
44

5+
## [v7.5.0](https://github.com/puppetlabs/puppetlabs-postgresql/tree/v7.5.0) (2021-09-27)
6+
7+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-postgresql/compare/v7.4.1...v7.5.0)
8+
9+
### Added
10+
11+
- Use Puppet-Datatype Sensitive for Passwords [\#1279](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1279) ([cocker-cc](https://github.com/cocker-cc))
12+
13+
### Fixed
14+
15+
- \(IAC-1598\) - Remove Support for Debian 8 [\#1302](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1302) ([david22swan](https://github.com/david22swan))
16+
- Inline file contents in the catalog [\#1299](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1299) ([ekohl](https://github.com/ekohl))
17+
- Fix changing default encoding [\#1296](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1296) ([smortex](https://github.com/smortex))
18+
519
## [v7.4.1](https://github.com/puppetlabs/puppetlabs-postgresql/tree/v7.4.1) (2021-08-25)
620

721
[Full Changelog](https://github.com/puppetlabs/puppetlabs-postgresql/compare/v7.4.0...v7.4.1)

REFERENCE.md

+12-13
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
* `postgresql::server::config`
3232
* `postgresql::server::initdb`
3333
* `postgresql::server::install`
34+
* `postgresql::server::late_initdb`: Manage the default encoding when database initialization is managed by the package
3435
* `postgresql::server::passwd`
3536
* `postgresql::server::reload`
3637
* `postgresql::server::service`
@@ -863,7 +864,7 @@ The following parameters are available in the `postgresql::server` class:
863864

864865
##### <a name="postgres_password"></a>`postgres_password`
865866

866-
Data type: `Variant[String, Sensitive[String]]`
867+
Data type: `Optional[Variant[String[1], Sensitive[String[1]], Integer]]`
867868

868869
Sets the password for the postgres user to your specified value. By default, this setting uses the superuser account in the Postgres database, with a user called postgres and no password.
869870

@@ -2571,7 +2572,7 @@ Default value: ``true``
25712572

25722573
##### <a name="password_hash"></a>`password_hash`
25732574

2574-
Data type: `Variant[String, Sensitive[String]]`
2575+
Data type: `Variant[Boolean, String, Sensitive[String]]`
25752576

25762577
Sets the hash to use during password creation.
25772578

@@ -2713,7 +2714,7 @@ Create a new schema.
27132714

27142715
#### Examples
27152716

2716-
#####
2717+
#####
27172718

27182719
```puppet
27192720
postgresql::server::schema {'private':
@@ -2944,7 +2945,7 @@ Default value: ``undef``
29442945

29452946
##### <a name="database_password"></a>`database_password`
29462947

2947-
Data type: `Variant[String, Sensitive[String]]`
2948+
Data type: `Optional[Variant[String, Sensitive[String]]]`
29482949

29492950
Specifies the password to connect with.
29502951

@@ -3106,8 +3107,6 @@ The name of the database you are trying to validate a connection with.
31063107

31073108
##### <a name="db_password"></a>`db_password`
31083109

3109-
Data type: `Variant[String, Sensitive[String]]`
3110-
31113110
The password required to access the target PostgreSQL database.
31123111

31133112
##### <a name="db_username"></a>`db_username`
@@ -3321,7 +3320,7 @@ This function pull default values from the `params` class or `globals` class if
33213320

33223321
#### Examples
33233322

3324-
#####
3323+
#####
33253324

33263325
```puppet
33273326
postgresql::default('variable')
@@ -3335,7 +3334,7 @@ Returns: `Any`
33353334

33363335
##### Examples
33373336

3338-
######
3337+
######
33393338

33403339
```puppet
33413340
postgresql::default('variable')
@@ -3371,27 +3370,27 @@ Type: Ruby 4.x API
33713370

33723371
This function returns the postgresql password hash from the clear text username / password
33733372

3374-
#### `postgresql::postgresql_password(Variant[String[1],Integer] $username, Variant[String[1], Sensitive[String[1]], Integer] $password)`
3373+
#### `postgresql::postgresql_password(Variant[String[1], Integer] $username, Variant[String[1], Sensitive[String[1]], Integer] $password, Optional[Boolean] $sensitive)`
33753374

33763375
The postgresql::postgresql_password function.
33773376

3378-
Returns: `String` The postgresql password hash from the clear text username / password.
3377+
Returns: `Variant[String, Sensitive[String]]` The postgresql password hash from the clear text username / password.
33793378

33803379
##### `username`
33813380

3382-
Data type: `Variant[String[1],Integer]`
3381+
Data type: `Variant[String[1], Integer]`
33833382

33843383
The clear text `username`
33853384

33863385
##### `password`
33873386

3388-
Data type: `Variant[String[1],Integer]`
3387+
Data type: `Variant[String[1], Sensitive[String[1]], Integer]`
33893388

33903389
The clear text `password`
33913390

33923391
##### `sensitive`
33933392

3394-
Data type: `Boolean`
3393+
Data type: `Optional[Boolean]`
33953394

33963395
If the Postgresql-Passwordhash should be of Datatype Sensitive[String]
33973396

metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppetlabs-postgresql",
3-
"version": "7.4.1",
3+
"version": "7.5.0",
44
"author": "puppetlabs",
55
"summary": "Offers support for basic management of PostgreSQL databases.",
66
"license": "Apache-2.0",

pdk.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
ignore: []

0 commit comments

Comments
 (0)