From abc4c3604b811d9cb71bcff410d99f702dc52e0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Le=C3=B3n=20Keurogli=C3=A1n?= Date: Fri, 22 Dec 2023 12:08:47 -0300 Subject: [PATCH] Updating Dependencies (#2591) Updated okhttp from 4.10.0 to 4.12.0 Updated jackson-core from 2.14.1 to 2.16.0 Updated jackson-databind from 2.14.1 to 2.16.0 Updated junit-jupiter from 5.8.2 to 5.10.1 Addressed CVEs: CVE-2023-35116 CVE-2022-24329 CVE-2023-3635 --- build.gradle.kts | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index beabd400c6..a5afc832dd 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -105,7 +105,7 @@ dependencies { //Web Connection Support api("com.neovisionaries:nv-websocket-client:2.14") - api("com.squareup.okhttp3:okhttp:4.10.0") + api("com.squareup.okhttp3:okhttp:4.12.0") //Opus library support api("club.minnced:opus-java:1.1.1") @@ -122,9 +122,8 @@ dependencies { //General Utility implementation("net.sf.trove4j:trove4j:3.0.3") - // Match the minor version of lavaplayers jackson dependency - implementation("com.fasterxml.jackson.core:jackson-core:2.14.1") - implementation("com.fasterxml.jackson.core:jackson-databind:2.14.1") + implementation("com.fasterxml.jackson.core:jackson-core:2.16.0") + implementation("com.fasterxml.jackson.core:jackson-databind:2.16.0") //Sets the dependencies for the examples configurations["examplesImplementation"].withDependencies { @@ -133,7 +132,7 @@ dependencies { addAll(configurations["compileOnly"].allDependencies) } - testImplementation("org.junit.jupiter:junit-jupiter:5.8.2") + testImplementation("org.junit.jupiter:junit-jupiter:5.10.1") testImplementation("org.reflections:reflections:0.10.2") }