-
Notifications
You must be signed in to change notification settings - Fork 107
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 ivy version to 2.5.2 #619
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,17 @@ | ||
################################ | ||
## From debezium-supplier | ||
################################ | ||
CVE-2023-1428 | ||
CVE-2023-32731 | ||
|
||
################################ | ||
# Snakeyaml 1.3.3 | ||
# SCDF usage has been mitigated. | ||
################################ | ||
CVE-2022-1471 | ||
CVE-2016-1000027 | ||
|
||
################################ | ||
# Spring Web 5.3.x | ||
# SCDF not affected. | ||
################################ | ||
CVE-2016-1000027 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,10 +14,6 @@ | |
<relativePath>../../stream-applications-core/pom.xml</relativePath> | ||
</parent> | ||
|
||
<properties> | ||
<apache-ivy.version>2.5.1</apache-ivy.version> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry, Chris, how does it work if we don’t specify version any more? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good point @artembilan - I was not clear in my description. We (stream-applications) already have dep. mgmt. for this ivy in stream-applications-build but for some reason these versions were still being hardcoded in these modules. |
||
</properties> | ||
|
||
<dependencies> | ||
|
||
<dependency> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ SCDIR=$(realpath $SCDIR) | |
if [[ "$1" != *"-sources.jar" ]] && [[ "$1" != *"-javadoc.jar" ]]; then | ||
if [ "$TRIVY_UPLOAD" == "true" ]; then | ||
echo "Scanning:$1" | ||
echo "trivy rootfs --format sarif -o \"$1.sarif\" \"$1\"" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This looks like some debug that is surely to get out of sync w/ the actual command |
||
trivy rootfs --exit-code 1 --format sarif -o "$1.sarif" "$1" | ||
if [ -f "$1.sarif" ]; then | ||
if [ -f $SCDIR/runs.sarif ]; then | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These "mute" the
grpc
andprotobuf
related CVEs being reported