From fe505ad9c58175f8a952e57c80ee7e11be21bfc8 Mon Sep 17 00:00:00 2001 From: jordanbreen28 Date: Mon, 30 Oct 2023 09:39:07 +0000 Subject: [PATCH 1/2] (maint) - Add HISTORY.md --- HISTORY.md | 93 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 HISTORY.md diff --git a/HISTORY.md b/HISTORY.md new file mode 100644 index 0000000..5b4bfeb --- /dev/null +++ b/HISTORY.md @@ -0,0 +1,93 @@ +# Change Log + +All notable changes to the "puppet-editor-services" repository will be documented in this file. + +Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. + +## Unreleased + +## 0.6.2 - 2022-07-21 + +### Fixed + +- ([GH-38](https://github.com/glennsarti/puppetfile-resolver/pull/38)) Support using commits for GClone spec searcher, correctly print errors ([beechtom](https://github.com/beechtom)) + +## 0.6.1 - 2022-06-23 + +### Fixed + +- ([GH-36](https://github.com/glennsarti/puppetfile-resolver/pull/36)) Fix bugs in Git spec searchers ([beechtom](https://github.com/beechtom)) + +## 0.6.0 - 2022-06-13 + +### Added + +- ([GH-33](https://github.com/glennsarti/puppetfile-resolver/issues/33)) Adds git clone method to search for metadata file ([logicminds](https://github.com/logicminds)) +- ([GH-29](https://github.com/glennsarti/puppetfile-resolver/issues/29)) Add GitLab URL support + +## 0.5.0 - 2020-12-16 + +### Added + +- ([GH-22](https://github.com/glennsarti/puppetfile-resolver/issues/22)) Add a formal configuration system +- ([Commit](https://github.com/glennsarti/puppetfile-resolver/commit/9f96040ff0747ca78e5cc5cb3f53518a0af7b1dd)) Add support for HTTP Proxies ([beechtom](https://github.com/beechtom)) + +### Changed + +- ([GH-21](https://github.com/glennsarti/puppetfile-resolver/issues/21)) Migrated to GitHub Actions + +### Removed + +- ([Commit](https://github.com/glennsarti/puppetfile-resolver/commit/5985bda7dd64524847981bbdb1b8c0a80b98419a)) Removed support for Ruby 2.1 (Puppet 4) + +## 0.4.0 - 2020-09-09 + +### Fixed + +- ([GH-15](https://github.com/glennsarti/puppetfile-resolver/pull/15)) Accept forge module specifications without versions as valid ([beechtom](https://github.com/beechtom)) +- ([GH-16](https://github.com/glennsarti/puppetfile-resolver/pull/16)) Support version ranges when resolving dependencies ([beechtom](https://github.com/beechtom)) + +### Added + +- ([GH-14](https://github.com/glennsarti/puppetfile-resolver/pull/14)) Read Puppetfile document model from resolution result ([beechtom](https://github.com/beechtom)) + +## 0.3.0 - 2020-07-11 + +### Fixed + +- ([GH-7](https://github.com/glennsarti/puppetfile-resolver/issues/7)) Sample usage file doesn't work +- ([GH-10](https://github.com/glennsarti/puppetfile-resolver/issues/10)) Fix for legacy style metadata.json dependencies + +## 0.2.0 - 2020-03-20 + +### Added + +- ([Commit](https://github.com/glennsarti/puppetfile-resolver/commit/6f267240b387d8399c5821415243c2ab426446f2)) Add flag to ignore :latest validation errors + +## 0.1.0 - 2020-03-04 + +### Added + +- ([Commit](https://github.com/glennsarti/puppetfile-resolver/commit/67678ff4d5b52f5afabe6c141167fc10e582f86e)) Add magic comments for Puppetfile parser + +## 0.0.3 - 2019-11-25 + +### Fixed + +- ([Commit](https://github.com/glennsarti/puppetfile-resolver/commit/0793b9e4fa0acefd6c52aff7fb170c96b09a0311)) OpenSSL errors cause resolution to fail + +## 0.0.2 - 2019-11-21 + +### Added + +- ([Commit](https://github.com/glennsarti/puppetfile-resolver/commit/522a22a7d7715822212704807486b8954ee64ce3)) Added support for Ruby 2.1.9 + +### Fixed + +- ([Commit](https://github.com/glennsarti/puppetfile-resolver/commit/5bd5253873e012c6a4d0b4474a3a90c8feaaeafc)) Use plain version range + +## 0.0.1 - 2019-11-04 + +### Added + +- Initial release of the puppetfile-resolver From 04e23c8ee799537e24163526dfc9d64894053e5e Mon Sep 17 00:00:00 2001 From: jordanbreen28 Date: Mon, 30 Oct 2023 09:39:55 +0000 Subject: [PATCH 2/2] (maint) - workflows for mend, labelling & release --- .github/workflows/labeller.yml | 27 +++++++++++++++++++++++++++ .github/workflows/mend.yml | 15 +++++++++++++++ .github/workflows/release.yml | 16 ++++++++++++++++ .github/workflows/release_prep.yml | 20 ++++++++++++++++++++ HISTORY.md | 2 +- 5 files changed, 79 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/labeller.yml create mode 100644 .github/workflows/mend.yml create mode 100644 .github/workflows/release.yml create mode 100644 .github/workflows/release_prep.yml diff --git a/.github/workflows/labeller.yml b/.github/workflows/labeller.yml new file mode 100644 index 0000000..ee149bf --- /dev/null +++ b/.github/workflows/labeller.yml @@ -0,0 +1,27 @@ +name: Labeller + +on: + issues: + types: + - opened + - labeled + - unlabeled + pull_request_target: + types: + - opened + - labeled + - unlabeled + +jobs: + label: + runs-on: ubuntu-latest + steps: + + - uses: puppetlabs/community-labeller@v1.0.1 + name: Label issues or pull requests + with: + label_name: community + label_color: '5319e7' + org_membership: puppetlabs + fail_if_member: 'true' + token: ${{ secrets.IAC_COMMUNITY_LABELER }} diff --git a/.github/workflows/mend.yml b/.github/workflows/mend.yml new file mode 100644 index 0000000..095e9e5 --- /dev/null +++ b/.github/workflows/mend.yml @@ -0,0 +1,15 @@ +name: "mend" + +on: + pull_request: + branches: + - "main" + schedule: + - cron: "0 0 * * *" + workflow_dispatch: + +jobs: + + mend: + uses: "puppetlabs/cat-github-actions/.github/workflows/tooling_mend_ruby.yml@main" + secrets: "inherit" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..92338dc --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,16 @@ +name: "release" + +on: + workflow_dispatch: + inputs: + target: + description: "The target for the release. This can be a commit sha or a branch." + required: false + default: "main" + +jobs: + release: + uses: "puppetlabs/cat-github-actions/.github/workflows/gem_release.yml@main" + with: + target: "${{ github.event.inputs.target }}" + secrets: "inherit" diff --git a/.github/workflows/release_prep.yml b/.github/workflows/release_prep.yml new file mode 100644 index 0000000..08bffb4 --- /dev/null +++ b/.github/workflows/release_prep.yml @@ -0,0 +1,20 @@ +name: "release prep" + +on: + workflow_dispatch: + inputs: + target: + description: "The target for the release. This can be a commit sha or a branch." + required: false + default: "main" + version: + description: "Version of gem to be released." + required: true + +jobs: + release_prep: + uses: "puppetlabs/cat-github-actions/.github/workflows/gem_release_prep.yml@main" + with: + target: "${{ github.event.inputs.target }}" + version: "${{ github.event.inputs.version }}" + secrets: "inherit" diff --git a/HISTORY.md b/HISTORY.md index 5b4bfeb..37f7a72 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,6 @@ # Change Log -All notable changes to the "puppet-editor-services" repository will be documented in this file. +All notable made changes to "puppetfile-resolver" repository prior to official puppet support are documented in this file. Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.