Skip to content

Commit 4e306e4

Browse files
authored
Update analyzermanager to v1.15.2 (#380)
1 parent c8537dd commit 4e306e4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

commands/audit/sca/pnpm/pnpm_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ func TestBuildDependencyTreeLimitedDepth(t *testing.T) {
4444
name: "With transitive dependencies",
4545
treeDepth: "1",
4646
expectedUniqueDeps: []string{
47-
"npm://axios:1.8.3",
47+
"npm://axios:1.8.4",
4848
"npm://balaganjs:1.0.0",
4949
"npm://yargs:13.3.0",
5050
"npm://zen-website:1.0.0",
@@ -54,7 +54,7 @@ func TestBuildDependencyTreeLimitedDepth(t *testing.T) {
5454
Nodes: []*xrayUtils.GraphNode{
5555
{
5656
Id: "npm://balaganjs:1.0.0",
57-
Nodes: []*xrayUtils.GraphNode{{Id: "npm://axios:1.8.3"}, {Id: "npm://yargs:13.3.0"}},
57+
Nodes: []*xrayUtils.GraphNode{{Id: "npm://axios:1.8.4"}, {Id: "npm://yargs:13.3.0"}},
5858
},
5959
},
6060
},

git_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ func TestXrayAuditJasSkipNotApplicableCvesViolations(t *testing.T) {
196196
validations.ValidationParams{
197197
Violations: &validations.ViolationCount{
198198
ValidateScan: &validations.ScanCount{Sca: 8, Sast: 2, Secrets: 2},
199-
ValidateApplicabilityStatus: &validations.ApplicabilityStatusCount{NotApplicable: 1, NotCovered: 7},
199+
ValidateApplicabilityStatus: &validations.ApplicabilityStatusCount{NotApplicable: 3, NotCovered: 5},
200200
},
201201
ExactResultsMatch: true,
202202
},
@@ -220,8 +220,8 @@ func TestXrayAuditJasSkipNotApplicableCvesViolations(t *testing.T) {
220220
xrayVersion, xscVersion, "",
221221
validations.ValidationParams{
222222
Violations: &validations.ViolationCount{
223-
ValidateScan: &validations.ScanCount{Sca: 7, Sast: 2, Secrets: 2},
224-
ValidateApplicabilityStatus: &validations.ApplicabilityStatusCount{NotCovered: 7},
223+
ValidateScan: &validations.ScanCount{Sca: 5, Sast: 2, Secrets: 2},
224+
ValidateApplicabilityStatus: &validations.ApplicabilityStatusCount{NotCovered: 5},
225225
},
226226
ExactResultsMatch: true,
227227
},

jas/analyzermanager.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
const (
2525
ApplicabilityFeatureId = "contextual_analysis"
2626
AnalyzerManagerZipName = "analyzerManager.zip"
27-
defaultAnalyzerManagerVersion = "1.14.1"
27+
defaultAnalyzerManagerVersion = "1.15.2"
2828
analyzerManagerDownloadPath = "xsc-gen-exe-analyzer-manager-local/v1"
2929
analyzerManagerDirName = "analyzerManager"
3030
analyzerManagerExecutableName = "analyzerManager"

0 commit comments

Comments
 (0)