Merge pull request #799 from microsoft/copilot/resolve-prototype-pollution-vulnerability

Patch transitive JSON5 prototype pollution vulnerability
copilot/resolve-dos-vulnerability
Lee Stott 2 months ago committed by GitHub
commit 678ae95931
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

23
package-lock.json generated

@ -1370,10 +1370,14 @@
"dev": true "dev": true
}, },
"node_modules/json5": { "node_modules/json5": {
"version": "0.5.1", "version": "1.0.2",
"resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz",
"integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=", "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==",
"dev": true, "dev": true,
"license": "MIT",
"dependencies": {
"minimist": "^1.2.0"
},
"bin": { "bin": {
"json5": "lib/cli.js" "json5": "lib/cli.js"
} }
@ -3965,10 +3969,13 @@
"dev": true "dev": true
}, },
"json5": { "json5": {
"version": "0.5.1", "version": "1.0.2",
"resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz",
"integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=", "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==",
"dev": true "dev": true,
"requires": {
"minimist": "^1.2.0"
}
}, },
"jsonfile": { "jsonfile": {
"version": "4.0.0", "version": "4.0.0",
@ -4450,7 +4457,7 @@
"requires": { "requires": {
"debug": "^2.2.0", "debug": "^2.2.0",
"js-yaml": "^3.6.1", "js-yaml": "^3.6.1",
"json5": "^0.5.0", "json5": "1.0.2",
"object-assign": "^4.1.0", "object-assign": "^4.1.0",
"object-keys": "^1.0.9", "object-keys": "^1.0.9",
"path-exists": "^2.1.0", "path-exists": "^2.1.0",

@ -25,5 +25,10 @@
"homepage": "https://github.com/microsoft/Data-Science-For-Beginners#readme", "homepage": "https://github.com/microsoft/Data-Science-For-Beginners#readme",
"devDependencies": { "devDependencies": {
"docsify-to-pdf": "0.0.5" "docsify-to-pdf": "0.0.5"
},
"overrides": {
"rcfile": {
"json5": "1.0.2"
}
} }
} }

Loading…
Cancel
Save