Merge pull request #730 from puppetlabs/4.7.x
4.7.x mergeback to master
This commit is contained in:
commit
9f1cf29857
3 changed files with 52 additions and 2 deletions
33
CHANGELOG.md
33
CHANGELOG.md
|
@ -1,3 +1,36 @@
|
|||
## Supported Release 4.7.0
|
||||
### Summary
|
||||
A release with a considerable amount of new features, including remote db support and several platform support updates. Various bugfixes including several to address warnings and a sizable README update.
|
||||
|
||||
#### Features
|
||||
- Remote DB support - Connection-settings allows a hash of options that can be used when connecting to a remote DB.
|
||||
- Debian 8 support.
|
||||
- Updated systemd-override to support fedora and CentOS paths.
|
||||
- Adds the ability to define the extension name separately from the title of the resource, which allows you to add the extension to more than one database.
|
||||
- Added parameter to disable automatic service restarts on config changes.
|
||||
- Ubuntu 15.10 compatibility.
|
||||
- OpenBSD version is now 9.4.
|
||||
- Added .gitattributes to maintain line endings for .sh and .rb files.
|
||||
- Adds default postgis version for 9.5.
|
||||
- Allows float postgresql_conf values.
|
||||
- Schedule apt update after install of repo.
|
||||
|
||||
#### Bugfixes
|
||||
- Fixed systemd-override for RedHat systems with unmanaged Yum repos.
|
||||
- Removed inherits postgresql::params.
|
||||
- Multi-node tests are now not ran by default.
|
||||
- Change apt::pin to apt_postgresql_org to prevent error message.
|
||||
- Removed syntax error near UTF8.
|
||||
- Removal of extra blanks and backslashes in README.
|
||||
- Double quotes now used around database name to prevent syntax error.
|
||||
- Removes ruby 1.8.7 and puppet 2.7 from travis-ci jobs.
|
||||
- Removed inherits postgresql::params.
|
||||
- Fixed paths to work on Amazon Linux.
|
||||
- Fixed quotes around locale options.
|
||||
- Huge README update.
|
||||
- Update to use current msync configs.
|
||||
- Fixes postgresql::server acceptance test descriptions.
|
||||
|
||||
## Supported Release 4.6.1
|
||||
###Summary
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "puppetlabs-postgresql",
|
||||
"version": "4.6.1",
|
||||
"version": "4.7.0",
|
||||
"author": "Inkling/Puppet Labs",
|
||||
"summary": "Offers support for basic management of PostgreSQL databases.",
|
||||
"license": "Apache-2.0",
|
||||
|
@ -49,7 +49,8 @@
|
|||
"operatingsystem": "Debian",
|
||||
"operatingsystemrelease": [
|
||||
"6",
|
||||
"7"
|
||||
"7",
|
||||
"8"
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
16
spec/acceptance/nodesets/debian-8-x86-vcloud.yml
Normal file
16
spec/acceptance/nodesets/debian-8-x86-vcloud.yml
Normal file
|
@ -0,0 +1,16 @@
|
|||
HOSTS:
|
||||
'debian-8-vcloud':
|
||||
roles:
|
||||
- master
|
||||
platform: debian-8-x86
|
||||
hypervisor: vcloud
|
||||
template: debian-8-i386
|
||||
CONFIG:
|
||||
type: foss
|
||||
ssh:
|
||||
keys: "~/.ssh/id_rsa-acceptance"
|
||||
datastore: instance0
|
||||
folder: Delivery/Quality Assurance/Enterprise/Dynamic
|
||||
resourcepool: delivery/Quality Assurance/Enterprise/Dynamic
|
||||
pooling_api: http://vcloud.delivery.puppetlabs.net/
|
||||
|
Loading…
Reference in a new issue