Skip to content

[RORDEV-1394] CVE-2024-57699 CVE-2025-25193 CVE-2025-24970 #1075

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

Merged
merged 2 commits into from
Feb 15, 2025
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
10 changes: 5 additions & 5 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,11 @@ dependencies {
testImplementation group: 'com.dimafeng', name: 'testcontainers-scala-core_3', version: '0.41.4'

constraints {
api group: 'io.netty', name: 'netty-codec-http2', version: '4.1.115.Final'
api group: 'io.netty', name: 'netty-handler-proxy', version: '4.1.115.Final'
api group: 'io.netty', name: 'netty-transport-native-unix-common', version: '4.1.115.Final'
api group: 'io.netty', name: 'netty-transport-native-epoll', version: '4.1.115.Final'
api group: 'io.netty', name: 'netty-transport-native-kqueue', version: '4.1.115.Final'
api group: 'io.netty', name: 'netty-codec-http2', version: '4.1.118.Final'
api group: 'io.netty', name: 'netty-handler-proxy', version: '4.1.118.Final'
api group: 'io.netty', name: 'netty-transport-native-unix-common', version: '4.1.118.Final'
api group: 'io.netty', name: 'netty-transport-native-epoll', version: '4.1.118.Final'
api group: 'io.netty', name: 'netty-transport-native-kqueue', version: '4.1.118.Final'
api group: 'com.google.guava', name: 'guava', version: '32.0.1-jre'
api group: 'io.spray', name: 'spray-json_3', version: '1.3.6'
api group: 'org.asynchttpclient', name: 'async-http-client', version: '3.0.1'
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
publishedPluginVersion=1.62.0
pluginVersion=1.63.0-pre2
pluginVersion=1.63.0-pre3
pluginName=readonlyrest

org.gradle.jvmargs=-Xmx6144m
6 changes: 5 additions & 1 deletion ror-shadowed-libs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@ dependencies {
shadowCompile group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.13.5'
shadowCompile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.13.5'
shadowCompile group: 'org.yaml', name: 'snakeyaml', version: '2.2'
shadowCompile group: 'com.jayway.jsonpath', name: 'json-path', version: '2.9.0'
shadowCompile(group: 'com.jayway.jsonpath', name: 'json-path', version: '2.9.0') {
exclude group: 'net.minidev'
}
//It's a fix for transitive dependency for json-path, listed here to fix CVE. It can be removed after json-path update
shadowCompile group: 'net.minidev', name: 'json-smart', version: '2.5.2'
}

shadowJar {
Expand Down
Loading