Skip to content

Commit c737d0d

Browse files
authored
Merge pull request #71 from wayfair-incubator/releases/v0.0.3
Releases/v0.0.3
2 parents 9310313 + 980d8d8 commit c737d0d

File tree

3 files changed

+27
-5
lines changed

3 files changed

+27
-5
lines changed

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,28 @@ All notable changes to `Forker` will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.0.3] - 2022-01-11
9+
10+
### Added
11+
12+
- Missing content from Wayfair's official [OSS Template](https://github.com/wayfair-incubator/oss-template)
13+
- Dynamic release badging system for [README](https://github.com/wayfair-incubator/forker/blob/main/README.md)
14+
- Linting configuration for all markdown files, including local and [CI](https://github.com/wayfair-incubator/forker/actions/workflows/lint.yml)
15+
- Several major `npm` package upgrades suggested by Dependabot
16+
17+
### Changed
18+
19+
- Improved `README` content and clarified developer instructions
20+
- Used named constants instead of numerical response codes
21+
- Used OSPO service account for all workflow tests
22+
- Updated vulnerable `npm` packages to compliant versions
23+
- Updated Dependabot configuration to search for `github-actions` updates
24+
25+
### Fixed
26+
27+
- Token access issue with actions integration tests
28+
- Numerous `npm` and `typescript` dependency conflicts
29+
830
## [0.0.2] - 2021-10-22
931

1032
### Changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ A newline-delimited (`"\n"`) string representing a list of allowed [license keys
7070

7171
### Typical
7272

73-
In most cases, you'll want to use the latest stable version (eg. `v0.0.2`):
73+
In most cases, you'll want to use the latest stable version (eg. `v0.0.3`):
7474

7575
```yaml
76-
uses: wayfair-incubator/[email protected].2
76+
uses: wayfair-incubator/[email protected].3
7777
with:
7878
token: ${{ secrets.ACCESS_TOKEN }}
7979
repo: tremor-runtime
@@ -99,7 +99,7 @@ with:
9999
If you are automating forking on behalf of a GitHub organization, you may wish to leverage the optional `addUser` and `licenseAllowlist` params:
100100

101101
```yaml
102-
uses: wayfair-incubator/[email protected].2
102+
uses: wayfair-incubator/[email protected].3
103103
with:
104104
token: ${{ secrets.ACCESS_TOKEN }}
105105
repo: tremor-runtime
@@ -147,7 +147,7 @@ Then run [ncc](https://github.com/zeit/ncc) and push the results:
147147
npm run package
148148
git add dist
149149
git commit -a -m "prod dependencies"
150-
git push origin releases/v0.0.2
150+
git push origin releases/v0.0.3
151151
```
152152

153153
> 💡 **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.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "forker",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"private": true,
55
"description": "Github action for automating fork creation",
66
"main": "lib/main.js",

0 commit comments

Comments
 (0)