Skip to content

Commit 22c21ea

Browse files
author
GitHub Action
committed
Release prep v8.0.0
1 parent 1a6f3b7 commit 22c21ea

File tree

3 files changed

+38
-5
lines changed

3 files changed

+38
-5
lines changed

CHANGELOG.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,30 @@
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)
5+
## [v8.0.0](https://github.com/puppetlabs/puppetlabs-postgresql/tree/v8.0.0) (2022-01-27)
6+
7+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-postgresql/compare/v7.5.0...v8.0.0)
8+
9+
### Changed
10+
11+
- Support setting default\_privileges on all schemas [\#1298](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1298) ([fish-face](https://github.com/fish-face))
12+
13+
### Added
14+
15+
- add default version for Fedora 35 [\#1317](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1317) ([jflorian](https://github.com/jflorian))
16+
- Make ::contrib a noop on OSes without a contrib package [\#1309](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1309) ([carlosduelo](https://github.com/carlosduelo))
17+
- pdksync - \(IAC-1753\) - Add Support for AlmaLinux 8 [\#1308](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1308) ([david22swan](https://github.com/david22swan))
18+
- MODULES-11201: add service\_name for Ubuntu 18.04 and later [\#1306](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1306) ([moritz-makandra](https://github.com/moritz-makandra))
19+
- pdksync - \(IAC-1751\) - Add Support for Rocky 8 [\#1305](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1305) ([david22swan](https://github.com/david22swan))
20+
- Default privileges support schemas [\#1300](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1300) ([fish-face](https://github.com/fish-face))
21+
- Support target\_role in default\_privileges [\#1297](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1297) ([fish-face](https://github.com/fish-face))
22+
23+
### Fixed
24+
25+
- Fix python package name in RHEL/CentOS 8 [\#1316](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1316) ([kajinamit](https://github.com/kajinamit))
26+
- Drop further code for Debian 6 and Ubuntu 10 [\#1307](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1307) ([ekohl](https://github.com/ekohl))
27+
28+
## [v7.5.0](https://github.com/puppetlabs/puppetlabs-postgresql/tree/v7.5.0) (2021-09-28)
629

730
[Full Changelog](https://github.com/puppetlabs/puppetlabs-postgresql/compare/v7.4.1...v7.5.0)
831

REFERENCE.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1330,7 +1330,7 @@ The following parameters are available in the `postgresql::server::contrib` clas
13301330

13311331
##### <a name="package_name"></a>`package_name`
13321332

1333-
Data type: `String`
1333+
Data type: `Optional[String[1]]`
13341334

13351335
The name of the PostgreSQL contrib package.
13361336

@@ -1731,6 +1731,7 @@ Manage a database defaults privileges. Only works with PostgreSQL version 9.6 an
17311731

17321732
The following parameters are available in the `postgresql::server::default_privileges` defined type:
17331733

1734+
* [`target_role`](#target_role)
17341735
* [`ensure`](#ensure)
17351736
* [`role`](#role)
17361737
* [`db`](#db)
@@ -1745,6 +1746,14 @@ The following parameters are available in the `postgresql::server::default_privi
17451746
* [`psql_path`](#psql_path)
17461747
* [`group`](#group)
17471748

1749+
##### <a name="target_role"></a>`target_role`
1750+
1751+
Data type: `Optional[String]`
1752+
1753+
Target role whose created objects will receive the default privileges. Defaults to the current user.
1754+
1755+
Default value: ``undef``
1756+
17481757
##### <a name="ensure"></a>`ensure`
17491758

17501759
Data type: `Enum['present',
@@ -1774,7 +1783,8 @@ Data type: `Pattern[
17741783
/(?i:^ROUTINES$)/,
17751784
/(?i:^SEQUENCES$)/,
17761785
/(?i:^TABLES$)/,
1777-
/(?i:^TYPES$)/
1786+
/(?i:^TYPES$)/,
1787+
/(?i:^SCHEMAS$)/
17781788
]`
17791789

17801790
Specify target object type: 'FUNCTIONS', 'ROUTINES', 'SEQUENCES', 'TABLES', 'TYPES'.
@@ -1789,7 +1799,7 @@ Specifies comma-separated list of privileges to grant. Valid options: depends on
17891799

17901800
Data type: `String`
17911801

1792-
Target schema. Defaults to 'public'.
1802+
Target schema. Defaults to 'public'. Can be set to '' to apply to all schemas.
17931803

17941804
Default value: `'public'`
17951805

metadata.json

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

0 commit comments

Comments
 (0)