From 7b055043a290e9f61f29d91d846ce9b45249a687 Mon Sep 17 00:00:00 2001 From: lelia Date: Tue, 11 Jan 2022 02:06:11 -0500 Subject: [PATCH 1/5] Update changelog for v0.0.3 release --- CHANGELOG.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7da95d53..19e83531 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,27 @@ All notable changes to `Forker` will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.0.3] - 2022-01-11 + +### Added + +- Missing content from Wayfair's official [OSS Template](https://github.com/wayfair-incubator/oss-template) +- Dynamic release badging system for [README](https://github.com/wayfair-incubator/forker/blob/main/README.md) +- Several major `npm` package upgrades suggested by Dependabot + +### Changed + +- Improved `README` content and clarified developer instructions +- Used named constants instead of numerical response codes +- Used OSPO service account for all workflow tests +- Updated vulnerable `npm` packages to compliant versions +- Updated Dependabot configuration to search for `github-actions` updates + +### Fixed + +- Token access issue with actions integration tests +- Numerous `npm` and `typescript` dependency conflicts + ## [0.0.2] - 2021-10-22 ### Changed From 52169a2ae70a8a86ad463418374da71a7e69aef8 Mon Sep 17 00:00:00 2001 From: lelia Date: Tue, 11 Jan 2022 02:06:22 -0500 Subject: [PATCH 2/5] Bump version referenced in examples --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4aa23065..c5cda350 100644 --- a/README.md +++ b/README.md @@ -70,10 +70,10 @@ A newline-delimited (`"\n"`) string representing a list of allowed [license keys ### Typical -In most cases, you'll want to use the latest stable version (eg. `v0.0.2`): +In most cases, you'll want to use the latest stable version (eg. `v0.0.3`): ```yaml -uses: wayfair-incubator/forker@v0.0.2 +uses: wayfair-incubator/forker@v0.0.3 with: token: ${{ secrets.ACCESS_TOKEN }} repo: tremor-runtime @@ -99,7 +99,7 @@ with: If you are automating forking on behalf of a GitHub organization, you may wish to leverage the optional `addUser` and `licenseAllowlist` params: ```yaml -uses: wayfair-incubator/forker@v0.0.2 +uses: wayfair-incubator/forker@v0.0.3 with: token: ${{ secrets.ACCESS_TOKEN }} repo: tremor-runtime @@ -147,7 +147,7 @@ Then run [ncc](https://github.com/zeit/ncc) and push the results: npm run package git add dist git commit -a -m "prod dependencies" -git push origin releases/v0.0.2 +git push origin releases/v0.0.3 ``` > 💡 **Note:** We recommend using the `--license` option for `ncc`, which will create a license file for all of the production node modules used in your project. From 07703885a96d67a97e40f753a98f81b77a8f0a24 Mon Sep 17 00:00:00 2001 From: lelia Date: Tue, 11 Jan 2022 02:06:33 -0500 Subject: [PATCH 3/5] Update package version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4fe03bd4..391f305f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "forker", - "version": "0.0.2", + "version": "0.0.3", "private": true, "description": "Github action for automating fork creation", "main": "lib/main.js", From 53a7542c79be5081241d22c10312fca9da636a2d Mon Sep 17 00:00:00 2001 From: lelia Date: Tue, 11 Jan 2022 02:12:13 -0500 Subject: [PATCH 4/5] Add item to changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 19e83531..8c4b01ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Missing content from Wayfair's official [OSS Template](https://github.com/wayfair-incubator/oss-template) - Dynamic release badging system for [README](https://github.com/wayfair-incubator/forker/blob/main/README.md) +- Linting configuration for all markdown files, including local development and Github workflow - Several major `npm` package upgrades suggested by Dependabot ### Changed From 980d8d856f0295b60e43af2b9fd305846120918b Mon Sep 17 00:00:00 2001 From: lelia Date: Tue, 11 Jan 2022 02:17:13 -0500 Subject: [PATCH 5/5] Add link to linting CI workflow --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c4b01ac..15293f11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Missing content from Wayfair's official [OSS Template](https://github.com/wayfair-incubator/oss-template) - Dynamic release badging system for [README](https://github.com/wayfair-incubator/forker/blob/main/README.md) -- Linting configuration for all markdown files, including local development and Github workflow +- Linting configuration for all markdown files, including local and [CI](https://github.com/wayfair-incubator/forker/actions/workflows/lint.yml) - Several major `npm` package upgrades suggested by Dependabot ### Changed