Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Security: Pinned colors library to 1.4.0 #488

Merged
merged 4 commits into from
Jan 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,26 @@ Format:
-
-->
<!-- ## [Unreleased] -->
## [3.0.9] - 2022-01-10
### Security
- Install the security fix in the action's package.json as well. Because dependents have to require cucumber itself, if they're not using our action (if they have their own package.json), they're going to have to implement this fix in their repo too. That's why our fix isn't working. We'll start the process of helping developers update. We also need to deprecate all previous versions of ALKiln. See #489.

## [3.0.8] - 2022-01-10
### Security
- Fully publish the security fix in v3.0.7

## [3.0.7] - 2022-01-10
### Security
- Pinned colors library to 1.4.0. See https://www.bleepingcomputer.com/news/security/dev-corrupts-npm-libs-colors-and-faker-breaking-thousands-of-apps/. We don't use faker, so we don't need to handle that.

## [3.0.6] - 2021-01-07
## [3.0.6] - 2022-01-07
### Changed
- See #371
- Scenario heading tags are now on a second line
- Artifact filenames use dashes more and are created separately from Scenario headings
- Scenario ids are separated from filenames and Scenario headings

## [3.0.5] - 2021-01-06
## [3.0.5] - 2022-01-06
### Added
- Add action.yml that runs most of what users' workflows run now, along with notes for a new user workflow that will take less maintainance. See #420. We need to add documentation on how to write a workflow file as it currently is if they want to take back control. Setup interview has not yet been updated with this workflow.
- Add package.json creation/overwriting to action.yml. Simplify package.json.
Expand Down
3 changes: 2 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ runs:
},
"dependencies": {
"cucumber": "^6.0.5",
"docassemble-cucumber": "^3.0.0"
"docassemble-cucumber": "^3.0.0",
"colors": "1.4.0"
}
}
shell: bash
Expand Down
Loading