Skip to content

Commit 98487b9

Browse files
author
Fardin Khanjani
authored
Merge pull request #7 from fardin01/update-to-6
Update to 6
2 parents f72a123 + cbf6c5b commit 98487b9

File tree

90 files changed

+3641
-2197
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+3641
-2197
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#This file is generated by ModuleSync, do not edit.
21
*.rb eol=lf
32
*.erb eol=lf
43
*.pp eol=lf
54
*.sh eol=lf
5+
*.epp eol=lf

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,5 @@
2222
/convert_report.txt
2323
/update_report.txt
2424
.DS_Store
25+
.envrc
26+
/inventory.yaml

.pdkignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,20 @@
2222
/convert_report.txt
2323
/update_report.txt
2424
.DS_Store
25+
.envrc
26+
/inventory.yaml
27+
/appveyor.yml
28+
/.fixtures.yml
29+
/Gemfile
30+
/.gitattributes
31+
/.gitignore
32+
/.gitlab-ci.yml
33+
/.pdkignore
34+
/Rakefile
35+
/rakelib/
36+
/.rspec
37+
/.rubocop.yml
38+
/.travis.yml
39+
/.yardopts
40+
/spec/
41+
/.vscode/

.puppet-lint.rc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--relative

.sync.yml

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
---
2+
.gitignore:
3+
required:
4+
- ---.project
5+
6+
.gitlab-ci.yml:
7+
unmanaged: true
8+
29
.travis.yml:
310
docker_sets:
411
- set: docker/centos-7
@@ -9,6 +16,9 @@
916
branches:
1017
- release
1118

19+
appveyor.yml:
20+
delete: true
21+
1222
Gemfile:
1323
required:
1424
':system_tests':
@@ -29,8 +39,6 @@ Gemfile:
2939
Rakefile:
3040
changelog_user: puppetlabs
3141

32-
appveyor.yml:
33-
delete: true
34-
35-
.gitlab-ci.yml:
36-
unmanaged: true
42+
spec/spec_helper.rb:
43+
mock_with: ':rspec'
44+
coverage_report: true

.travis.yml

Lines changed: 23 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,59 @@
11
---
2-
sudo: false
3-
dist: trusty
42
language: ruby
53
cache: bundler
64
before_install:
75
- bundle -v
86
- rm -f Gemfile.lock
9-
- gem update --system
7+
- gem update --system $RUBYGEMS_VERSION
108
- gem --version
119
- bundle -v
1210
script:
1311
- 'bundle exec rake $CHECK'
1412
bundler_args: --without system_tests
1513
rvm:
16-
- 2.5.0
17-
env:
18-
global:
19-
- BEAKER_PUPPET_COLLECTION=puppet6 PUPPET_GEM_VERSION="~> 6.0"
14+
- 2.5.3
15+
stages:
16+
- static
17+
- spec
18+
- acceptance
19+
-
20+
if: tag =~ ^v\d
21+
name: deploy
2022
matrix:
2123
fast_finish: true
2224
include:
2325
-
2426
bundler_args:
2527
dist: trusty
2628
env: PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_PUPPET_COLLECTION=puppet6 BEAKER_set=docker/centos-7 BEAKER_TESTMODE=apply
27-
rvm: 2.5.0
29+
rvm: 2.5.3
2830
script: bundle exec rake beaker
2931
services: docker
32+
stage: acceptance
3033
sudo: required
3134
-
3235
bundler_args:
3336
dist: trusty
3437
env: PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_PUPPET_COLLECTION=puppet6 BEAKER_set=docker/ubuntu-14.04 BEAKER_TESTMODE=apply
35-
rvm: 2.5.0
38+
rvm: 2.5.3
3639
script: bundle exec rake beaker
3740
services: docker
41+
stage: acceptance
3842
sudo: required
3943
-
40-
env: CHECK="syntax lint metadata_lint check:symlinks check:git_ignore check:dot_underscore check:test_file rubocop"
41-
-
42-
env: CHECK=parallel_spec
44+
env: CHECK="check:symlinks check:git_ignore check:dot_underscore check:test_file rubocop syntax lint metadata_lint"
45+
stage: static
4346
-
4447
env: PUPPET_GEM_VERSION="~> 5.0" CHECK=parallel_spec
45-
rvm: 2.4.4
48+
rvm: 2.4.5
49+
stage: spec
50+
-
51+
env: PUPPET_GEM_VERSION="~> 6.0" CHECK=parallel_spec
52+
rvm: 2.5.3
53+
stage: spec
4654
-
47-
env: PUPPET_GEM_VERSION="~> 4.0" CHECK=parallel_spec
48-
rvm: 2.1.9
55+
env: DEPLOY_TO_FORGE=yes
56+
stage: deploy
4957
branches:
5058
only:
5159
- master

CHANGELOG.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,48 @@
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+
## [v6.0.0](https://github.com/puppetlabs/puppetlabs-postgresql/tree/v6.0.0) (2019-05-14)
6+
7+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-postgresql/compare/5.12.1...v6.0.0)
8+
9+
### Changed
10+
11+
- pdksync - \(MODULES-8444\) - Raise lower Puppet bound [\#1070](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1070) ([david22swan](https://github.com/david22swan))
12+
- \(maint\) remove inconsistent extra variable [\#1044](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1044) ([binford2k](https://github.com/binford2k))
13+
14+
### Added
15+
16+
- Add Fedora 30 compatibility [\#1067](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1067) ([blackknight36](https://github.com/blackknight36))
17+
- Include EL8 version for config checks [\#1060](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1060) ([ehelms](https://github.com/ehelms))
18+
19+
### Fixed
20+
21+
- Support current version of puppetlabs/apt. [\#1073](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1073) ([pillarsdotnet](https://github.com/pillarsdotnet))
22+
- change username/group/datadir defaults for FreeBSD [\#1063](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1063) ([olevole](https://github.com/olevole))
23+
24+
## [5.12.1](https://github.com/puppetlabs/puppetlabs-postgresql/tree/5.12.1) (2019-02-14)
25+
26+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-postgresql/compare/5.12.0...5.12.1)
27+
28+
### Fixed
29+
30+
- \(FM-7811\) - Use postgresql 9.4 for SLES 11 sp4 [\#1057](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1057) ([david22swan](https://github.com/david22swan))
31+
- \(MODULES-8553\) Further cleanup for package tag issues [\#1055](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1055) ([HelenCampbell](https://github.com/HelenCampbell))
32+
33+
## [5.12.0](https://github.com/puppetlabs/puppetlabs-postgresql/tree/5.12.0) (2019-02-01)
34+
35+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-postgresql/compare/5.11.0...5.12.0)
36+
37+
### Added
38+
39+
- \(MODULES-3804\) Fix sort order of pg\_hba\_rule entries [\#1040](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1040) ([olavmrk](https://github.com/olavmrk))
40+
41+
### Fixed
42+
43+
- \(MODULES-8553\) Fix dependency on apt by explicitly using 'puppetlabs-postgresql' as tag [\#1052](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1052) ([HelenCampbell](https://github.com/HelenCampbell))
44+
- \(MODULES-8352\) Don't use empty encoding string on initdb [\#1043](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1043) ([binford2k](https://github.com/binford2k))
45+
- pdksync - \(FM-7655\) Fix rubygems-update for ruby \< 2.3 [\#1042](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1042) ([tphoney](https://github.com/tphoney))
46+
547
## [5.11.0](https://github.com/puppetlabs/puppetlabs-postgresql/tree/5.11.0) (2018-11-21)
648

749
[Full Changelog](https://github.com/puppetlabs/puppetlabs-postgresql/compare/5.10.0...5.11.0)

Gemfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ group :development do
2121
gem "fast_gettext", require: false if Gem::Version.new(RUBY_VERSION.dup) >= Gem::Version.new('2.1.0')
2222
gem "json_pure", '<= 2.0.1', require: false if Gem::Version.new(RUBY_VERSION.dup) < Gem::Version.new('2.0.0')
2323
gem "json", '= 1.8.1', require: false if Gem::Version.new(RUBY_VERSION.dup) == Gem::Version.new('2.1.9')
24-
gem "json", '<= 2.0.4', require: false if Gem::Version.new(RUBY_VERSION.dup) == Gem::Version.new('2.4.4')
24+
gem "json", '= 2.0.4', require: false if Gem::Requirement.create('~> 2.4.2').satisfied_by?(Gem::Version.new(RUBY_VERSION.dup))
25+
gem "json", '= 2.1.0', require: false if Gem::Requirement.create(['>= 2.5.0', '< 2.7.0']).satisfied_by?(Gem::Version.new(RUBY_VERSION.dup))
2526
gem "puppet-module-posix-default-r#{minor_version}", require: false, platforms: [:ruby]
2627
gem "puppet-module-posix-dev-r#{minor_version}", require: false, platforms: [:ruby]
2728
gem "puppet-module-win-default-r#{minor_version}", require: false, platforms: [:mswin, :mingw, :x64_mingw]

0 commit comments

Comments
 (0)