-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(SIMP-9780) Puppetsync: Remove Puppet 5, Support 7 (#35)
This patch: * Removes Puppet 5 from `metadata.json` and the GHA & GLCI matrix * Ensures support for Puppet 7 in `metadata.json` * Ensures Pup 7 for module deps stdlib and concat (if present) * Updates GLCI and GHA matrix to model Puppet PE using Puppet 6.22.1 * Bumps Gemfile's simp-rake-helpers and simp-beaker-helpers min vers * Removes `.pmtignore` and adds `.pdkignore` * Ensures `.git` is added to fixture URLs The patch enforces a standardized asset baseline using simp/puppetsync, and may apply other updates to ensure conformity. [SIMP-9869] #close [SIMP-9780] #comment Drop Puppet 5 in pupmod-simp-tuned [SIMP-9670] #comment update Puppet 6.22.1 in pupmod-simp-tuned [SIMP-9606] #comment Switch pupmod-simp-tuned from .pmtignore to .pdkignore [SIMP-9781] #comment bump Gemfile versions in pupmod-simp-tuned [SIMP-9826] #comment Ensured fixture repo urls for pupmod-simp-tuned
- Loading branch information
Showing
8 changed files
with
76 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ dist | |
/.rspec_system | ||
/.vagrant | ||
/.bundle | ||
/.vendor | ||
/vendor | ||
/junit | ||
/log | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# .pdkignore masks files from inclusion by `pdk build`. | ||
# | ||
# It is used by CI when building modules to publish to the Puppet Forge and to | ||
# mask symlinks from the `pdk build` test in the module's RELENG checks. | ||
# ------------------------------------------------------------------------------ | ||
# NOTICE: **This file is maintained with puppetsync** | ||
# | ||
# This file is automatically updated as part of a puppet module baseline. | ||
# The next baseline sync will overwrite any local changes made to this file. | ||
# ------------------------------------------------------------------------------ | ||
.*.sw? | ||
.git/ | ||
.metadata | ||
.yardoc | ||
.yardwarns | ||
*.iml | ||
/.bundle/ | ||
/.idea/ | ||
/.vagrant/ | ||
/coverage/ | ||
/bin/ | ||
/doc/ | ||
/Gemfile.local | ||
/Gemfile.lock | ||
/junit/ | ||
/log/ | ||
/pkg/ | ||
/dist/ | ||
/tmp/ | ||
/vendor/ | ||
/.vendor/ | ||
/convert_report.txt | ||
/update_report.txt | ||
.DS_Store | ||
.project | ||
.envrc | ||
/inventory.yaml | ||
/appveyor.yml | ||
/.fixtures.yml | ||
/Gemfile | ||
/.gitattributes | ||
/.gitignore | ||
/.github/ | ||
/.gitlab-ci.yml | ||
/.pdkignore | ||
/.puppet-lint.rc | ||
/.sync.yml | ||
/.pmtignore | ||
/Rakefile | ||
/rakelib/ | ||
/.rspec | ||
/.rubocop.yml | ||
/.travis.yml | ||
/.yardopts | ||
/spec/ | ||
/.vscode/ | ||
/tests/ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
* Thu Jun 17 2021 Chris Tessmer <[email protected]> - 0.3.0 | ||
- Removed support for Puppet 5 | ||
- Ensured support for Puppet 7 in requirements and stdlib | ||
|
||
* Sat Dec 19 2020 Chris Tessmer <[email protected]> - 0.2.2 | ||
- Removed EL6 support | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters