Release 3.1.0
Release notes, and Modulefile/metadata.json updates. Signed-off-by: Ken Barber <ken@bob.sh>
This commit is contained in:
parent
74ff9572d2
commit
93228ec342
3 changed files with 34 additions and 8 deletions
26
Changelog
26
Changelog
|
@ -1,3 +1,29 @@
|
|||
2013-10-25 - Version 3.1.0
|
||||
|
||||
Summary:
|
||||
|
||||
This is a minor feature and bug fix release.
|
||||
|
||||
Firstly, the postgresql_psql type now includes a new parameter `search_path` which is equivalent to using `set search_path` which allows you to change the default schema search path.
|
||||
|
||||
The default version of Fedora 17 has now been added, so that Fedora 17 users can enjoy the module.
|
||||
|
||||
And finally we've extended the capabilities of the defined type postgresql::validate_db_connection so that now it can handle retrying and sleeping between retries. This feature has been monopolized to fix a bug we were seeing with startup race conditions, but it can also be used by remote systems to 'wait' for PostgreSQL to start before their Puppet run continues.
|
||||
|
||||
Features:
|
||||
- Defined $default_version for Fedora 17 (Bret Comnes)
|
||||
- add search_path attribute to postgresql_psql resource (Jeremy Kitchen)
|
||||
- (GH-198) Add wait and retry capability to validate_db_connection (Ken Barber)
|
||||
|
||||
Bugs:
|
||||
- enabling defined postgres user password without resetting on every puppet run (jonoterc)
|
||||
- periods are valid in configuration variables also (Jeremy Kitchen)
|
||||
- Add zero length string to join() function (Jarl Stefansson)
|
||||
- add require of install to reload class (cdenneen)
|
||||
- (GH-198) Fix race condition on postgresql startup (Ken Barber)
|
||||
- Remove concat::setup for include in preparation for the next concat release (Ken Barber)
|
||||
|
||||
|
||||
2013-10-14 - Version 3.0.0
|
||||
|
||||
Final release of 3.0, enjoy!
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name 'puppetlabs-postgresql'
|
||||
version '3.0.0'
|
||||
version '3.1.0'
|
||||
source 'git://github.com/puppetlabs/puppet-postgresql.git'
|
||||
author 'Inkling/Puppet Labs'
|
||||
description 'PostgreSQL defined resource types'
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"name": "puppetlabs/postgresql",
|
||||
"version": "3.0.0",
|
||||
"version": "3.1.0",
|
||||
"summary": "PostgreSQL",
|
||||
"source": "git@github.com/puppetlabs/puppetlabs-postgresql.git",
|
||||
"source": "git://github.com/puppetlabs/puppetlabs-postgresql.git",
|
||||
"project_page": "http://github.com/puppetlabs/puppetlabs-postgresql",
|
||||
"author": "Puppet Labs",
|
||||
"license": "Apache-2.0",
|
||||
|
@ -15,11 +15,11 @@
|
|||
"Ubuntu"
|
||||
],
|
||||
"puppet_version": [
|
||||
2.7,
|
||||
3.0,
|
||||
3.1,
|
||||
3.2,
|
||||
3.3
|
||||
"2.7",
|
||||
"3.0",
|
||||
"3.1",
|
||||
"3.2",
|
||||
"3.3"
|
||||
],
|
||||
"dependencies": [
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue