Skip to content

Commit

Permalink
deps: ssri@10.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
lukekarrys committed May 7, 2024
1 parent a9a6dcd commit 8b20f8c
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 15 deletions.
2 changes: 1 addition & 1 deletion node_modules/ssri/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ function createIntegrity (opts) {
hashes.forEach(h => h.update(chunk, enc))
return this
},
digest: function (enc) {
digest: function () {
const integrity = algorithms.reduce((acc, algo) => {
const digest = hashes.shift().digest('base64')
const hash = new Hash(
Expand Down
10 changes: 5 additions & 5 deletions node_modules/ssri/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ssri",
"version": "10.0.5",
"version": "10.0.6",
"description": "Standard Subresource Integrity library -- parses, serializes, generates, and verifies integrity metadata according to the SRI spec.",
"main": "lib/index.js",
"files": [
Expand All @@ -13,7 +13,7 @@
"posttest": "npm run lint",
"test": "tap",
"coverage": "tap",
"lint": "eslint \"**/*.js\"",
"lint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\"",
"postlint": "template-oss-check",
"template-oss-apply": "template-oss-apply --force",
"lintfix": "npm run lint -- --fix",
Expand All @@ -28,7 +28,7 @@
},
"repository": {
"type": "git",
"url": "https://github.com/npm/ssri.git"
"url": "git+https://github.com/npm/ssri.git"
},
"keywords": [
"w3c",
Expand All @@ -51,15 +51,15 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^4.0.0",
"@npmcli/template-oss": "4.18.0",
"@npmcli/template-oss": "4.22.0",
"tap": "^16.0.1"
},
"engines": {
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"version": "4.18.0",
"version": "4.22.0",
"publish": "true"
}
}
13 changes: 7 additions & 6 deletions package-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
"read": "^3.0.1",
"semver": "^7.6.0",
"spdx-expression-parse": "^4.0.0",
"ssri": "^10.0.5",
"ssri": "^10.0.6",
"supports-color": "^9.4.0",
"tar": "^6.2.1",
"text-table": "~0.2.0",
Expand Down Expand Up @@ -11100,10 +11100,11 @@
"inBundle": true
},
"node_modules/ssri": {
"version": "10.0.5",
"resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.5.tgz",
"integrity": "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==",
"version": "10.0.6",
"resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.6.tgz",
"integrity": "sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==",
"inBundle": true,
"license": "ISC",
"dependencies": {
"minipass": "^7.0.3"
},
Expand Down Expand Up @@ -14820,7 +14821,7 @@
"promise-call-limit": "^3.0.1",
"read-package-json-fast": "^3.0.2",
"semver": "^7.3.7",
"ssri": "^10.0.5",
"ssri": "^10.0.6",
"treeverse": "^3.0.0",
"walk-up-path": "^3.0.1"
},
Expand Down Expand Up @@ -15015,7 +15016,7 @@
"proc-log": "^4.2.0",
"semver": "^7.3.7",
"sigstore": "^2.2.0",
"ssri": "^10.0.5"
"ssri": "^10.0.6"
},
"devDependencies": {
"@npmcli/eslint-config": "^4.0.0",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
"read": "^3.0.1",
"semver": "^7.6.0",
"spdx-expression-parse": "^4.0.0",
"ssri": "^10.0.5",
"ssri": "^10.0.6",
"supports-color": "^9.4.0",
"tar": "^6.2.1",
"text-table": "~0.2.0",
Expand Down
2 changes: 1 addition & 1 deletion workspaces/arborist/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"promise-call-limit": "^3.0.1",
"read-package-json-fast": "^3.0.2",
"semver": "^7.3.7",
"ssri": "^10.0.5",
"ssri": "^10.0.6",
"treeverse": "^3.0.0",
"walk-up-path": "^3.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion workspaces/libnpmpublish/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"proc-log": "^4.2.0",
"semver": "^7.3.7",
"sigstore": "^2.2.0",
"ssri": "^10.0.5"
"ssri": "^10.0.6"
},
"engines": {
"node": "^16.14.0 || >=18.0.0"
Expand Down

0 comments on commit 8b20f8c

Please sign in to comment.