Skip to content

Commit 0388e62

Browse files
committed
Add parse-url to audit allow list
1 parent e6257f1 commit 0388e62

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

scripts/audit-allow-list

+11-1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,16 @@ const AUDIT_ALLOW_LIST = [
5454
path: "lerna>@lerna/version>@lerna/conventional-commits>conventional-changelog-core>get-pkg-repo>meow>trim-newlines",
5555
advisoryUrl: "https://www.npmjs.com/advisories/1753",
5656
justification: "dependency of lerna (dev only); low severity"
57+
},
58+
{
59+
path: "lerna>@lerna/version>@lerna/github-client>git-url-parse>git-up>parse-url",
60+
advisoryUrl: "https://github.com/advisories/GHSA-j9fq-vwqv-2fm2",
61+
justification: "dependency of lerna; moderate severity"
62+
},
63+
{
64+
path: "lerna>@lerna/publish>@lerna/version>@lerna/github-client>git-url-parse>git-up>parse-url",
65+
advisoryUrl: "https://github.com/advisories/GHSA-j9fq-vwqv-2fm2",
66+
justification: "dependency of lerna; moderate severity"
5767
}
5868
]
5969

@@ -86,4 +96,4 @@ if (numVulnerabilities > 0) {
8696
console.log(`Found ${numVulnerabilities} unrecognized vulnerabilit${pluralized} from \`npm audit\`:`)
8797
console.log(JSON.stringify(remainingVulnerabilities, null, 2))
8898
process.exit(1)
89-
}
99+
}

0 commit comments

Comments
 (0)