Skip to content

Commit 35136d1

Browse files
committed
Fix copilot comments
1 parent 1a30bb6 commit 35136d1

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## 0.27.0
88

9-
- feat - Add CVE checking to nodify users to fix the critical/high-severity CVE issues in https://github.com/microsoft/vscode-java-dependency/pull/948
9+
- feat - Add CVE checking to notify users to fix the critical/high-severity CVE issues in https://github.com/microsoft/vscode-java-dependency/pull/948
1010

1111
## 0.26.5
1212

src/upgrade/cve.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,6 @@ function mapCvesToUpgradeIssues(
148148
}
149149
const upgradeIssues = depsCves.map((depCve) => {
150150
const mostCriticalCve = [...depCve.cves]
151-
.filter((cve) => isCveAffectingDep(cve, depCve.dep, depCve.version))
152151
.sort((a, b) => Severity[b.severity] - Severity[a.severity])[0];
153152
return {
154153
packageId: depCve.dep,

0 commit comments

Comments
 (0)