Skip to content

Commit 4db79dd

Browse files
david22swanHelen
authored and
Helen
committed
6.1.0 Pre Release
1 parent e5d0ba6 commit 4db79dd

File tree

6 files changed

+35
-22
lines changed

6 files changed

+35
-22
lines changed

.sync.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,20 @@ Gemfile:
2222
- gem: beaker-testmode_switcher
2323
':development':
2424
- gem: puppet-lint-i18n
25+
optional:
26+
':development':
27+
- gem: 'github_changelog_generator'
28+
git: 'https://github.com/skywinder/github-changelog-generator'
29+
ref: '20ee04ba1234e9e83eb2ffb5056e23d641c7a018'
30+
condition: "Gem::Version.new(RUBY_VERSION.dup) >= Gem::Version.new('2.2.2')"
2531

2632
appveyor.yml:
27-
delete: true
33+
unmanaged: true
2834

2935
Rakefile:
3036
requires:
3137
- puppet_pot_generator/rake_tasks
38+
  changelog_user: 'puppetlabs'
3239

3340
spec/spec_helper.rb:
3441
spec_overrides:

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ matrix:
3131
-
3232
bundler_args:
3333
dist: trusty
34-
env: PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_PUPPET_COLLECTION=puppet5 BEAKER_set=docker/ubuntu-14.04 BEAKER_TESTMODE=apply BEAKER_PUPPET_AGENT_VERSION=5.5.2
34+
env: PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_PUPPET_COLLECTION=puppet5 BEAKER_set=docker/ubuntu-14.04 BEAKER_TESTMODE=apply
3535
rvm: 2.4.4
3636
script: bundle exec rake beaker
3737
services: docker

CHANGELOG.md

+15-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,19 @@
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-
## [6.0.0](https://github.com/puppetlabs/puppetlabs-mysql/tree/6.0.0) (2018-07-19)
5+
## [6.1.0](https://github.com/puppetlabs/puppetlabs-mysql/tree/6.1.0) (2018-09-12)
6+
7+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-mysql/compare/6.0.0...6.1.0)
8+
9+
### Added
10+
11+
- pdksync - \(MODULES-7705\) - Bumping stdlib dependency from \< 5.0.0 to \< 6.0.0 [\#1114](https://github.com/puppetlabs/puppetlabs-mysql/pull/1114) ([pmcmaw](https://github.com/pmcmaw))
12+
13+
### Fixed
14+
15+
- \(MODULES-6981\) Do not try to read ~root/.my.cnf when calling "mysqld -V" [\#1063](https://github.com/puppetlabs/puppetlabs-mysql/pull/1063) ([simondeziel](https://github.com/simondeziel))
16+
17+
## [6.0.0](https://github.com/puppetlabs/puppetlabs-mysql/tree/6.0.0) (2018-08-01)
618

719
[Full Changelog](https://github.com/puppetlabs/puppetlabs-mysql/compare/5.4.0...6.0.0)
820

@@ -12,6 +24,7 @@ All notable changes to this project will be documented in this file. The format
1224

1325
### Added
1426

27+
- \(FM-5985\) - Addition of support for Ubuntu 18.04 to mysql [\#1104](https://github.com/puppetlabs/puppetlabs-mysql/pull/1104) ([david22swan](https://github.com/david22swan))
1528
- \(MODULES-7439\) - Implementing beaker-testmode\_switcher [\#1095](https://github.com/puppetlabs/puppetlabs-mysql/pull/1095) ([pmcmaw](https://github.com/pmcmaw))
1629
- Support for optional\_\_args and prescript to mysqldump backup provider [\#1083](https://github.com/puppetlabs/puppetlabs-mysql/pull/1083) ([eputnam](https://github.com/eputnam))
1730
- Allow empty user passwords [\#1075](https://github.com/puppetlabs/puppetlabs-mysql/pull/1075) ([disappear89](https://github.com/disappear89))
@@ -26,7 +39,7 @@ All notable changes to this project will be documented in this file. The format
2639
- \[FM-7045\] Fix to allow Debian 9 test's to run clean [\#1088](https://github.com/puppetlabs/puppetlabs-mysql/pull/1088) ([david22swan](https://github.com/david22swan))
2740
- \(MODULES-7198\) Fix DROP USER IF EXISTS on mariadb [\#1082](https://github.com/puppetlabs/puppetlabs-mysql/pull/1082) ([hunner](https://github.com/hunner))
2841

29-
## [5.4.0](https://github.com/puppetlabs/puppetlabs-mysql/tree/5.4.0)
42+
## 5.4.0
3043

3144
### Added
3245

Gemfile

+8-15
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,15 @@
11
source ENV['GEM_SOURCE'] || 'https://rubygems.org'
22

33
def location_for(place_or_version, fake_version = nil)
4-
if place_or_version =~ %r{\A(git[:@][^#]*)#(.*)}
5-
[fake_version, { git: Regexp.last_match(1), branch: Regexp.last_match(2), require: false }].compact
6-
elsif place_or_version =~ %r{\Afile:\/\/(.*)}
7-
['>= 0', { path: File.expand_path(Regexp.last_match(1)), require: false }]
8-
else
9-
[place_or_version, { require: false }]
10-
end
11-
end
4+
git_url_regex = %r{\A(?<url>(https?|git)[:@][^#]*)(#(?<branch>.*))?}
5+
file_url_regex = %r{\Afile:\/\/(?<path>.*)}
126

13-
def gem_type(place_or_version)
14-
if place_or_version =~ %r{\Agit[:@]}
15-
:git
16-
elsif !place_or_version.nil? && place_or_version.start_with?('file:')
17-
:file
7+
if place_or_version && (git_url = place_or_version.match(git_url_regex))
8+
[fake_version, { git: git_url[:url], branch: git_url[:branch], require: false }].compact
9+
elsif place_or_version && (file_url = place_or_version.match(file_url_regex))
10+
['>= 0', { path: File.expand_path(file_url[:path]), require: false }]
1811
else
19-
:gem
12+
[place_or_version, { require: false }]
2013
end
2114
end
2215

@@ -34,6 +27,7 @@ group :development do
3427
gem "puppet-module-win-default-r#{minor_version}", require: false, platforms: [:mswin, :mingw, :x64_mingw]
3528
gem "puppet-module-win-dev-r#{minor_version}", require: false, platforms: [:mswin, :mingw, :x64_mingw]
3629
gem "puppet-lint-i18n", require: false
30+
gem "github_changelog_generator", require: false, git: 'https://github.com/skywinder/github-changelog-generator', ref: '20ee04ba1234e9e83eb2ffb5056e23d641c7a018' if Gem::Version.new(RUBY_VERSION.dup) >= Gem::Version.new('2.2.2')
3731
end
3832
group :system_tests do
3933
gem "puppet-module-posix-system-r#{minor_version}", require: false, platforms: [:ruby]
@@ -42,7 +36,6 @@ group :system_tests do
4236
end
4337

4438
puppet_version = ENV['PUPPET_GEM_VERSION']
45-
puppet_type = gem_type(puppet_version)
4639
facter_version = ENV['FACTER_GEM_VERSION']
4740
hiera_version = ENV['HIERA_GEM_VERSION']
4841

HISTORY.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## [5.4.0](https://github.com/puppetlabs/puppetlabs-mysql/tree/5.4.0)
1+
## 5.4.0
22

33
### Added
44

metadata.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppetlabs-mysql",
3-
"version": "6.0.0",
3+
"version": "6.1.0",
44
"author": "puppetlabs",
55
"summary": "Installs, configures, and manages the MySQL service.",
66
"license": "Apache-2.0",
@@ -84,6 +84,6 @@
8484
],
8585
"description": "MySQL module",
8686
"template-url": "https://github.com/puppetlabs/pdk-templates",
87-
"template-ref": "1.7.0-0-g57412ed",
87+
"template-ref": "heads/master-0-g6a90b42",
8888
"pdk-version": "1.7.0"
8989
}

0 commit comments

Comments
 (0)