From b6108a83a197e5cb7e5e474bcc8de79cfaf994c9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 3 Sep 2026 11:56:35 +0000 Subject: [PATCH] chore(deps): bump com.squareup.okhttp3:mockwebserver Bumps [com.squareup.okhttp3:mockwebserver](https://github.com/lysine-dev/okhttp) from 4.12.0 to 5.5.0. - [Changelog](https://github.com/lysine-dev/okhttp/blob/main/CHANGELOG.md) - [Commits](https://github.com/lysine-dev/okhttp/compare/parent-4.12.0...parent-5.5.0) --- updated-dependencies: - dependency-name: com.squareup.okhttp3:mockwebserver dependency-version: 5.5.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 7b278124..bfa49aee 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -238,7 +238,7 @@ dependencies { implementation("org.commonmark:commonmark:0.30.0") // WebSocket server for React UI bridge - implementation("com.squareup.okhttp3:okhttp:4.12.0") + implementation("com.squareup.okhttp3:okhttp:5.5.0") implementation("org.java-websocket:Java-WebSocket:1.6.0") // Security: encrypted credential storage for paired device passwords @@ -262,7 +262,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.5.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).