Skip to content

Commit 41b764f

Browse files
committed
chore(release): 8.0.0
1 parent 4062735 commit 41b764f

File tree

3 files changed

+28
-6
lines changed

3 files changed

+28
-6
lines changed

CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,31 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [8.0.0](https://github.com/npm/ssri/compare/v7.1.0...v8.0.0) (2020-02-18)
6+
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
* SRI values with `../` in the algorithm name now throw
11+
as invalid (which they always probably should have!)
12+
* adds a new error that will be thrown. Empty SRIs are
13+
no longer considered valid for checking, only when using integrityStream
14+
to calculate the SRI value.
15+
16+
PR-URL: https://github.com/npm/ssri/pull/12
17+
Credit: @claudiahdz
18+
19+
### Features
20+
21+
* remove figgy-pudding ([0e78fd7](https://github.com/npm/ssri/commit/0e78fd7b754e2d098875eb4c57238709d96d7c27))
22+
23+
24+
### Bug Fixes
25+
26+
* harden SRI parsing against ../ funny business ([4062735](https://github.com/npm/ssri/commit/4062735d1281941fd32ac4320b9f9965fcec278b))
27+
* IntegrityStream responds to mutating opts object mid-stream ([4a963e5](https://github.com/npm/ssri/commit/4a963e5982478c6b07f86848cdb72d142c765195))
28+
* throw null when sri is empty or bad ([a6811cb](https://github.com/npm/ssri/commit/a6811cba71e20ea1fdefa6e50c9ea3c67efc2500)), closes [#12](https://github.com/npm/ssri/issues/12)
29+
530
## [7.1.0](https://github.com/npm/ssri/compare/v7.0.1...v7.1.0) (2019-10-24)
631

732

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ssri",
3-
"version": "7.1.0",
3+
"version": "8.0.0",
44
"description": "Standard Subresource Integrity library -- parses, serializes, generates, and verifies integrity metadata according to the SRI spec.",
55
"main": "index.js",
66
"files": [],
@@ -15,7 +15,7 @@
1515
"lint": "standard"
1616
},
1717
"tap": {
18-
"check-coverage": "true"
18+
"check-coverage": true
1919
},
2020
"repository": "https://github.com/npm/ssri",
2121
"keywords": [
@@ -46,9 +46,6 @@
4646
"standard-version": "^7.1.0",
4747
"tap": "^14.10.6"
4848
},
49-
"tap": {
50-
"check-coverage": true
51-
},
5249
"engines": {
5350
"node": ">= 8"
5451
}

0 commit comments

Comments
 (0)