Skip to content

Commit

Permalink
deps: update csdiff to 3.2.2
Browse files Browse the repository at this point in the history
* propagate the imp flag as level in the SARIF format
* propagate endLine/endColumn in the JSON and SARIF formats
  • Loading branch information
jamacku committed Apr 30, 2024
1 parent 8f0e0a6 commit 66b5b22
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ FROM fedora@sha256:4e007f288dce23966216be81ef62ba05d139b9338f327c1d1c73b7167dd47
ARG fedora="40"
ARG arch="x86_64"

ARG version_csdiff="3.2.1-1"
ARG version_csdiff="3.2.2-1"
ARG version_shellcheck="0.9.0-6"

ARG rpm_csdiff="csdiff-${version_csdiff}.fc${fedora}.${arch}.rpm"
Expand Down
6 changes: 6 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Next release

## v5.2.0

* Update `csutils` (`csdiff`) to 3.2.2
* propagate the imp flag as level in the SARIF format
* propagate endLine/endColumn in the JSON and SARIF formats

## v5.1.2

* Fix curl Argument list too long by using a payload.json file - by @mpoberezhniy
Expand Down
2 changes: 1 addition & 1 deletion test/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ FROM fedora@sha256:4e007f288dce23966216be81ef62ba05d139b9338f327c1d1c73b7167dd47
ARG fedora="40"
ARG arch="x86_64"

ARG version_csdiff="3.2.1-1"
ARG version_csdiff="3.2.2-1"
ARG version_shellcheck="0.9.0-6"

ARG rpm_csdiff="csdiff-${version_csdiff}.fc${fedora}.${arch}.rpm"
Expand Down
2 changes: 2 additions & 0 deletions test/fixtures/get_defects/defects.log
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"file_name": "innocent-script.sh",
"line": 7,
"column": 1,
"h_size": 11,
"event": "warning[SC2034]",
"message": "UNUSED_VAR2 appears unused. Verify use (or export if used externally).",
"verbosity_level": 0
Expand All @@ -26,6 +27,7 @@
"file_name": "innocent-script.sh",
"line": 11,
"column": 8,
"h_size": 17,
"event": "warning[SC2115]",
"message": "Use \"${var:?}\" to ensure this never expands to / .",
"verbosity_level": 0
Expand Down
1 change: 1 addition & 0 deletions test/fixtures/get_fixes/fixes.log
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"file_name": "innocent-script.sh",
"line": 6,
"column": 1,
"h_size": 10,
"event": "warning[SC2034]",
"message": "UNUSED_VAR appears unused. Verify use (or export if used externally).",
"verbosity_level": 0
Expand Down
2 changes: 1 addition & 1 deletion test/show_versions.bats
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ setup () {
assert_success
assert_output \
"ShellCheck: 0.9.0
csutils: 3.2.1"
csutils: 3.2.2"
}

0 comments on commit 66b5b22

Please sign in to comment.