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

Upgrade to latest GraalJS version #682

Merged
merged 1 commit into from
Jan 23, 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
23 changes: 14 additions & 9 deletions dependencyCheckSuppression.xml
Original file line number Diff line number Diff line change
Expand Up @@ -245,15 +245,6 @@
<cve>CVE-2023-35887</cve>
</suppress>

<!-- 23.0.1 includes the patch for this low severity CVE but it's still matching so manually suppress it -->
<suppress>
<notes><![CDATA[
file name: graal-sdk-23.0.1.jar
]]></notes>
<packageUrl regex="true">^pkg:maven/org\.graalvm\.sdk/graal\-sdk@.*$</packageUrl>
<vulnerabilityName>CVE-2023-22006</vulnerabilityName>
</suppress>

<!-- The CVE is against Quartz Jobs, not the core Quartz library, so this is a false positive given our actual dependency.
For additional info see: Issue #48405
-->
Expand Down Expand Up @@ -314,5 +305,19 @@
<vulnerabilityName>CVE-2023-45960</vulnerabilityName>
</suppress>

<!--
GraalJS shaded and re-versioned icu4j without changing the file name, leading to many old CVEs getting tagged.
This should be fixed soon, but suppress all CVEs for now. https://github.com/oracle/graal/issues/8204
-->
<suppress>
<notes><![CDATA[
file name: icu4j-23.1.2.jar
]]></notes>
<packageUrl regex="true">^pkg:maven/org\.graalvm\.shadowed/icu4j@.*$</packageUrl>
<cpe>cpe:/a:icu-project:international_components_for_unicode</cpe>
<cpe>cpe:/a:unicode:international_components_for_unicode</cpe>
<cpe>cpe:/a:unicode:unicode</cpe>
</suppress>

</suppressions>

2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ googleHttpClientVersion=1.43.3
googleOauthClientVersion=1.34.1
googleProtocolBufVersion=3.25.1

graalVersion=23.0.2
graalVersion=23.1.2

# Cloud and SequenceAnalysis bring gson in as a transitive dependency.
# We resolve to the later version here to keep things consistent
Expand Down