Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update csdiff to 3.2.2 🚀 #395

Merged
merged 1 commit into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
}