Skip to content

Commit 59fb37f

Browse files
author
David Swan
committed
(IAC-982) - PDK Update
1 parent c3a9f56 commit 59fb37f

File tree

4 files changed

+9
-22
lines changed

4 files changed

+9
-22
lines changed

Diff for: .rubocop.yml

-10
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,6 @@ Metrics/AbcSize:
108108
Enabled: false
109109
Metrics/BlockLength:
110110
Enabled: false
111-
Metrics/BlockNesting:
112-
Enabled: false
113111
Metrics/ClassLength:
114112
Enabled: false
115113
Metrics/CyclomaticComplexity:
@@ -138,11 +136,3 @@ Style/IfUnlessModifier:
138136
Enabled: false
139137
Style/SymbolProc:
140138
Enabled: false
141-
Style/IdenticalConditionalBranches:
142-
Enabled: false
143-
Style/IfInsideElse:
144-
Enabled: false
145-
Lint/UnderscorePrefixedVariableName:
146-
Enabled: false
147-
Lint/UselessAssignment:
148-
Enabled: false

Diff for: Gemfile

-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ group :development do
3030
gem "puppet-module-win-dev-r#{minor_version}", '~> 0.4', require: false, platforms: [:mswin, :mingw, :x64_mingw]
3131
gem "ruby-pwsh", require: false
3232
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')
33-
gem 'ed25519', '>= 1.2', '< 2.0'
34-
gem 'bcrypt_pbkdf', '>= 1.0', '< 2.0'
3533
end
3634
group :system_tests do
3735
gem "puppet-module-posix-system-r#{minor_version}", require: false, platforms: [:ruby]

Diff for: Rakefile

+6-7
Original file line numberDiff line numberDiff line change
@@ -53,36 +53,35 @@ if Bundler.rubygems.find_name('github_changelog_generator').any?
5353
config.header = "# Change log\n\nAll 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)."
5454
config.add_pr_wo_labels = true
5555
config.issues = false
56-
config.merge_prefix = "### UNCATEGORIZED PRS; GO LABEL THEM"
56+
config.merge_prefix = "### UNCATEGORIZED PRS; LABEL THEM ON GITHUB"
5757
config.configure_sections = {
5858
"Changed" => {
5959
"prefix" => "### Changed",
6060
"labels" => ["backwards-incompatible"],
6161
},
6262
"Added" => {
6363
"prefix" => "### Added",
64-
"labels" => ["feature", "enhancement"],
64+
"labels" => ["enhancement", "feature"],
6565
},
6666
"Fixed" => {
6767
"prefix" => "### Fixed",
68-
"labels" => ["bugfix"],
68+
"labels" => ["bug", "documentation", "bugfix"],
6969
},
7070
}
7171
end
7272
else
7373
desc 'Generate a Changelog from GitHub'
7474
task :changelog do
7575
raise <<EOM
76-
The changelog tasks depends on unreleased features of the github_changelog_generator gem.
76+
The changelog tasks depends on recent features of the github_changelog_generator gem.
7777
Please manually add it to your .sync.yml for now, and run `pdk update`:
7878
---
7979
Gemfile:
8080
optional:
8181
':development':
8282
- gem: 'github_changelog_generator'
83-
git: 'https://github.com/skywinder/github-changelog-generator'
84-
ref: '20ee04ba1234e9e83eb2ffb5056e23d641c7a018'
85-
condition: "Gem::Version.new(RUBY_VERSION.dup) >= Gem::Version.new('2.2.2')"
83+
version: '~> 1.15'
84+
condition: "Gem::Version.new(RUBY_VERSION.dup) >= Gem::Version.new('2.3.0')"
8685
EOM
8786
end
8887
end

Diff for: metadata.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
"version_requirement": ">= 5.5.10 < 7.0.0"
7474
}
7575
],
76-
"pdk-version": "1.17.0",
77-
"template-url": "https://github.com/puppetlabs/pdk-templates#master",
78-
"template-ref": "heads/master-0-g095317c"
76+
"pdk-version": "1.18.1",
77+
"template-url": "https://github.com/puppetlabs/pdk-templates#main",
78+
"template-ref": "remotes/origin/main-0-g8f10887"
7979
}

0 commit comments

Comments
 (0)