From 83f8d3a78364b962ba03a10484b3ef634e3b65c8 Mon Sep 17 00:00:00 2001 From: Quentin Valmori Date: Fri, 28 Jul 2023 20:08:44 +0200 Subject: [PATCH] okhttp: Update to latest 4.9.X There is an http2 bug which has been fixed in 4.9.3. See https://square.github.io/okhttp/changelogs/changelog_4x/#version-493 The diff between 4.9.2 and 4.9.3 seems pretty safe https://github.com/square/okhttp/pull/6293 --- uploadservice-okhttp/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uploadservice-okhttp/build.gradle b/uploadservice-okhttp/build.gradle index 381f6ec9..dae9cfdb 100644 --- a/uploadservice-okhttp/build.gradle +++ b/uploadservice-okhttp/build.gradle @@ -69,7 +69,7 @@ dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" - api 'com.squareup.okhttp3:okhttp:4.9.2' + api 'com.squareup.okhttp3:okhttp:4.9.3' //api "net.gotev:uploadservice:${version}" //comment the previous line and uncomment the next line for development (it uses the local lib) api project(':uploadservice')