From f627ca542b7f35bb90dde4c10aad1e7af3b27d4a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Jul 2026 23:15:05 +0000 Subject: [PATCH] chore(deps): bump com.squareup.okhttp3:mockwebserver Bumps [com.squareup.okhttp3:mockwebserver](https://github.com/square/okhttp) from 4.12.0 to 5.4.0. - [Changelog](https://github.com/lysine-dev/okhttp/blob/master/CHANGELOG.md) - [Commits](https://github.com/square/okhttp/compare/parent-4.12.0...parent-5.4.0) --- updated-dependencies: - dependency-name: com.squareup.okhttp3:mockwebserver dependency-version: 5.4.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- app/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 979fed889..723d0b5d1 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -219,7 +219,7 @@ dependencies { implementation("org.commonmark:commonmark:0.29.0") // WebSocket server for React UI bridge - implementation("com.squareup.okhttp3:okhttp:4.12.0") + implementation("com.squareup.okhttp3:okhttp:5.4.0") implementation("org.java-websocket:Java-WebSocket:1.6.0") // Security: encrypted credential storage for paired device passwords @@ -243,7 +243,7 @@ dependencies { testImplementation(kotlin("test")) // MockWebServer for AnalyticsServiceTest — version matches the OkHttp // already on the main classpath (4.12.0). - testImplementation("com.squareup.okhttp3:mockwebserver:4.12.0") + testImplementation("com.squareup.okhttp3:mockwebserver:5.4.0") // Mockito for stubbing Android Context in SkillScannerTest. Needed because // SkillScanner takes a Context to read web/data/skill-registry.json from // app assets — there's no in-memory fake equivalent (unlike SharedPreferences).