Skip to content

Commit 15fe862

Browse files
committed
Update Analyzer Manager to v1.28.0
1 parent 6ea4636 commit 15fe862

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

jas/analyzermanager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
const (
2424
ApplicabilityFeatureId = "contextual_analysis"
2525
AnalyzerManagerZipName = "analyzerManager.zip"
26-
defaultAnalyzerManagerVersion = "1.27.0"
26+
defaultAnalyzerManagerVersion = "1.28.0"
2727
analyzerManagerDownloadPath = "xsc-gen-exe-analyzer-manager-local/v1"
2828
analyzerManagerDirName = "analyzerManager"
2929
analyzerManagerExecutableName = "analyzerManager"

utils/results/common.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,11 @@ func ForEachJasIssue(runs []*sarif.Run, entitledForJas bool, handler ParseJasIss
5959
}
6060
for _, run := range runs {
6161
for _, result := range run.Results {
62+
if result.Kind == "informational" {
63+
// The specified rule was evaluated and produced a purely informational result that does not indicate the presence of a problem
64+
log.Verbose(fmt.Sprintf("Skipping informational result with rule id: %s", sarifutils.GetResultRuleId(result)))
65+
continue
66+
}
6267
severity, err := severityutils.ParseSeverity(result.Level, true)
6368
if err != nil {
6469
return err

0 commit comments

Comments
 (0)