Skip to content

Commit 6a07dec

Browse files
authored
Merge pull request puppetlabs#781 from DavidS/release-prep-4.8.0
Prep for 4.8.0
2 parents 2714e82 + 6cef1f4 commit 6a07dec

File tree

3 files changed

+33
-7
lines changed

3 files changed

+33
-7
lines changed

CHANGELOG.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
## Supported Release 4.8.0
2+
### Summary
3+
This release primarily fixes an issue with `postgresql_conf` values of ipaddresses being considered floats and not getting quoted.
4+
5+
#### Features
6+
- Add `default_connect_settings` parameter to `postgresql::server`
7+
- Running under strict variables is now supported
8+
- Add timestamps into logs by default
9+
10+
#### Bugfixes
11+
- Obscure password in postgresql\_psql type
12+
- Fix ip address quoting in postgresql\_conf type
13+
- Fix handling of systemd service on Ubuntu
14+
- Mark log_min_duration_statement setting as requiring a service restart
15+
- Add fixes for Fedora 23, Fedora 24, FreeBSD, OpenBSD
16+
- Fix environment handling to avoid "Overriding environment setting" message
17+
- Work around PUP-6385, using empty arrays instead of undef when specifying resource relationships
18+
- README editorial pass
19+
- Reduce whitespace in templates
20+
- Update build/test infrastructure
21+
122
## Supported Release 4.7.1
223
### Summary
324
This release contains some bugfixes and documentation updates.
@@ -559,7 +580,7 @@ the stage for the large scale refactoring work of 3.0.0.
559580
####Features
560581

561582

562-
####Bugfixes
583+
####Bugfixes
563584
- Use boolean for refreshonly.
564585
- Fix postgresql::plperl documentation.
565586
- Add two missing parameters to config::beforeservice

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -445,6 +445,10 @@ Sets the default database locale for all databases created with this module. On
445445

446446
Overrides the default PostgreSQL log directory. Default: initdb's default path.
447447

448+
##### `log_line_prefix`
449+
450+
Set a prefix for the server logs. Default: `'%t '`
451+
448452
##### `manage_package_repo`
449453

450454
Sets up official PostgreSQL repositories on your host if set to true. Default: false.
@@ -650,6 +654,10 @@ Specifies the addresses the server accepts connections to. Valid values:
650654

651655
Sets the default database locale for all databases created with this module. On certain operating systems this is used during the `template1` initialization as well, so it becomes a default outside of the module. Default: undef, which is effectively `C`. **On Debian, you must ensure that the 'locales-all' package is installed for full functionality of PostgreSQL.**
652656

657+
##### `log_line_prefix`
658+
659+
Set a prefix for the server logs. Default: `'%t '`
660+
653661
##### `manage_pg_hba_conf`
654662

655663
Whether to manage the pg_hba.conf. If set to true, Puppet overwrites this file. If set to false, Puppet does not modify the file. Valid values: true, false. Default

metadata.json

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppetlabs-postgresql",
3-
"version": "4.7.1",
3+
"version": "4.8.0",
44
"author": "Inkling/Puppet Labs",
55
"summary": "Offers support for basic management of PostgreSQL databases.",
66
"license": "Apache-2.0",
@@ -59,15 +59,12 @@
5959
"operatingsystemrelease": [
6060
"10.04",
6161
"12.04",
62-
"14.04"
62+
"14.04",
63+
"16.04"
6364
]
6465
}
6566
],
6667
"requirements": [
67-
{
68-
"name": "pe",
69-
"version_requirement": ">= 3.0.0 < 2015.4.0"
70-
},
7168
{
7269
"name": "puppet",
7370
"version_requirement": ">= 3.0.0 < 5.0.0"

0 commit comments

Comments
 (0)