Skip to content

Commit 27f7fac

Browse files
sanfrancriskodavid22swan
authored andcommitted
(maint) - Add support for Server 2019
* Added support for changelog generator gem * Fix to metadata syntax
1 parent fbcbbb6 commit 27f7fac

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

.sync.yml

+7
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@ Gemfile:
1818
- gem: master_manipulator
1919
- gem: puppet-blacksmith
2020
version: '~> 3.4'
21+
optional:
22+
':development':
23+
- gem: 'github_changelog_generator'
24+
git: 'https://github.com/skywinder/github-changelog-generator'
25+
ref: '20ee04ba1234e9e83eb2ffb5056e23d641c7a018'
26+
condition: "Gem::Version.new(RUBY_VERSION.dup) >= Gem::Version.new('2.2.2')"
27+
2128

2229
spec/default_facts.yml:
2330
unmanaged: true

Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ group :development do
2727
gem "puppet-module-posix-dev-r#{minor_version}", '~> 0.3', require: false, platforms: [:ruby]
2828
gem "puppet-module-win-default-r#{minor_version}", '~> 0.3', require: false, platforms: [:mswin, :mingw, :x64_mingw]
2929
gem "puppet-module-win-dev-r#{minor_version}", '~> 0.3', require: false, platforms: [:mswin, :mingw, :x64_mingw]
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')
3031
end
3132
group :system_tests do
3233
gem "puppet-module-posix-system-r#{minor_version}", require: false, platforms: [:ruby]

metadata.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "puppetlabs-sqlserver",
33
"version": "2.5.1",
4-
"author": "Puppet Inc",
4+
"author": "puppetlabs",
55
"summary": "The `sqlserver` module installs and manages MS SQL Server 2012, 2014, 2016, 2017, and 2019 on Windows systems.",
66
"license": "proprietary",
77
"source": "https://github.com/puppetlabs/puppetlabs-sqlserver",
@@ -21,9 +21,10 @@
2121
{
2222
"operatingsystem": "Windows",
2323
"operatingsystemrelease": [
24-
"Server 2012",
25-
"Server 2012 R2",
26-
"Server 2016"
24+
"2012",
25+
"2012 R2",
26+
"2016",
27+
"2019"
2728
]
2829
}
2930
],

0 commit comments

Comments
 (0)