Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 8, 2025

Bumps squareup-okhttp3 from 4.12.0 to 5.2.0.
Updates com.squareup.okhttp3:okhttp from 4.12.0 to 5.2.0

Changelog

Sourced from com.squareup.okhttp3:okhttp's changelog.

Version 5.2.0

2025-10-07

  • New: Support [HTTP 101] responses with Response.socket. This mechanism is only supported on HTTP/1.1. We also reimplemented our websocket client to use this new mechanism.

  • New: The okhttp-zstd module negotiates [Zstandard (zstd)][zstd] compression with servers that support it. It integrates a new (unstable) [ZSTD-KMP] library, also from Square. Enable it like this:

    val client = OkHttpClient.Builder()
      .addInterceptor(CompressionInterceptor(Zstd, Gzip))
      .build()
  • New: Support the QUERY HTTP method. You will need to set the Request.cacheUrlOverride property to cache calls made with this method. The RequestBody.sha256() may be helpful here; use it to compose a cache URL from the query body.

  • New: Publish events when calls must wait to execute. EventListener.dispatcherQueueStart() is invoked when a call starts waiting, and dispatcherQueueEnd() is invoked when it's done.

  • New: Request.toCurl() returns a copy-pasteable [curl] command consistent with Chrome’s and Firefox’s ‘copy as cURL’ features.

  • New: Support [JPMS]. We replaced our Automatic-Module-Name metadata with proper module-info.java files.

  • Fix: Recover gracefully when worker threads are interrupted. When we introduced fast fallback in OkHttp 5.0, we started using background threads while connecting. Sadly that code didn't handle interruptions well. This is now fixed.

  • Upgrade: [Kotlin 2.2.20][kotlin_2_2_20].

  • Upgrade: [Okio 3.16.0][okio_3_16_0].

Version 5.1.0

2025-07-07

  • New: Response.peekTrailers(). When we changed Response.trailers() to block instead of throwing in 5.0.0, we inadvertently removed the ability for callers to peek the trailers (by catching the IllegalStateException if they weren't available). This new API restores that capability.

  • Fix: Don't crash on trailers() if the response doesn't have a body. We broke [Retrofit] users who read the trailers on the raw() OkHttp response, after its body was decoded.

... (truncated)

Commits
  • 2a95ed0 Prepare for release 5.2.0.
  • acfae32 Revert "Add minimal HttpLoggingInterceptor support for streaming request and ...
  • d82e875 Put Brotli and Gzip in top-level files (#9116)
  • d4a5be1 Fix RequestBody events on upgraded connections (#8970)
  • 112a19d Add RequestBody.sha256() (#9109)
  • d41a755 Start publishing dispatcher queue events (#9111)
  • c06ff31 Get Content-Type from the request body (#9113)
  • fdac86b Make Request.toCurl work more like Chrome's 'copy as cURL' (#9112)
  • fa84a6e feat: add curl() method to Request for generating cURL commands (#8897)
  • e3e9960 Use a single synchronized block in Dispatcher (#9110)
  • Additional commits viewable in compare view

Updates com.squareup.okhttp3:okhttp-urlconnection from 4.12.0 to 5.2.0

Changelog

Sourced from com.squareup.okhttp3:okhttp-urlconnection's changelog.

Version 5.2.0

2025-10-07

  • New: Support [HTTP 101] responses with Response.socket. This mechanism is only supported on HTTP/1.1. We also reimplemented our websocket client to use this new mechanism.

  • New: The okhttp-zstd module negotiates [Zstandard (zstd)][zstd] compression with servers that support it. It integrates a new (unstable) [ZSTD-KMP] library, also from Square. Enable it like this:

    val client = OkHttpClient.Builder()
      .addInterceptor(CompressionInterceptor(Zstd, Gzip))
      .build()
  • New: Support the QUERY HTTP method. You will need to set the Request.cacheUrlOverride property to cache calls made with this method. The RequestBody.sha256() may be helpful here; use it to compose a cache URL from the query body.

  • New: Publish events when calls must wait to execute. EventListener.dispatcherQueueStart() is invoked when a call starts waiting, and dispatcherQueueEnd() is invoked when it's done.

  • New: Request.toCurl() returns a copy-pasteable [curl] command consistent with Chrome’s and Firefox’s ‘copy as cURL’ features.

  • New: Support [JPMS]. We replaced our Automatic-Module-Name metadata with proper module-info.java files.

  • Fix: Recover gracefully when worker threads are interrupted. When we introduced fast fallback in OkHttp 5.0, we started using background threads while connecting. Sadly that code didn't handle interruptions well. This is now fixed.

  • Upgrade: [Kotlin 2.2.20][kotlin_2_2_20].

  • Upgrade: [Okio 3.16.0][okio_3_16_0].

Version 5.1.0

2025-07-07

  • New: Response.peekTrailers(). When we changed Response.trailers() to block instead of throwing in 5.0.0, we inadvertently removed the ability for callers to peek the trailers (by catching the IllegalStateException if they weren't available). This new API restores that capability.

  • Fix: Don't crash on trailers() if the response doesn't have a body. We broke [Retrofit] users who read the trailers on the raw() OkHttp response, after its body was decoded.

... (truncated)

Commits
  • 2a95ed0 Prepare for release 5.2.0.
  • acfae32 Revert "Add minimal HttpLoggingInterceptor support for streaming request and ...
  • d82e875 Put Brotli and Gzip in top-level files (#9116)
  • d4a5be1 Fix RequestBody events on upgraded connections (#8970)
  • 112a19d Add RequestBody.sha256() (#9109)
  • d41a755 Start publishing dispatcher queue events (#9111)
  • c06ff31 Get Content-Type from the request body (#9113)
  • fdac86b Make Request.toCurl work more like Chrome's 'copy as cURL' (#9112)
  • fa84a6e feat: add curl() method to Request for generating cURL commands (#8897)
  • e3e9960 Use a single synchronized block in Dispatcher (#9110)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps `squareup-okhttp3` from 4.12.0 to 5.2.0.

Updates `com.squareup.okhttp3:okhttp` from 4.12.0 to 5.2.0
- [Changelog](https://github.com/square/okhttp/blob/master/CHANGELOG.md)
- [Commits](square/okhttp@parent-4.12.0...parent-5.2.0)

Updates `com.squareup.okhttp3:okhttp-urlconnection` from 4.12.0 to 5.2.0
- [Changelog](https://github.com/square/okhttp/blob/master/CHANGELOG.md)
- [Commits](square/okhttp@parent-4.12.0...parent-5.2.0)

---
updated-dependencies:
- dependency-name: com.squareup.okhttp3:okhttp
  dependency-version: 5.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: com.squareup.okhttp3:okhttp-urlconnection
  dependency-version: 5.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the bot: dependencies update PRs that update a dependency file, used by Dependabot. label Oct 8, 2025
@dependabot dependabot bot requested a review from a team as a code owner October 8, 2025 08:06
@dependabot dependabot bot requested review from adalpari and removed request for a team October 8, 2025 08:06
@dependabot dependabot bot added the bot: dependencies update PRs that update a dependency file, used by Dependabot. label Oct 8, 2025
@dangermattic
Copy link
Collaborator

1 Warning
⚠️ PR is not assigned to a milestone.

Generated by 🚫 Danger

@wpmobilebot
Copy link
Contributor

wpmobilebot commented Oct 8, 2025

Project manifest changes for WordPress

The following changes in the WordPress's merged AndroidManifest.xml file were detected (build variant: wordpressVanillaRelease):

--- ./build/reports/diff_manifest/WordPress/wordpressVanillaRelease/base_manifest.txt	2025-10-10 10:50:58.291373828 +0000
+++ ./build/reports/diff_manifest/WordPress/wordpressVanillaRelease/head_manifest.txt	2025-10-10 10:51:08.121417644 +0000
@@ -1126,6 +1126,9 @@
             <meta-data
                 android:name="androidx.profileinstaller.ProfileInstallerInitializer"
                 android:value="androidx.startup" />
+            <meta-data
+                android:name="okhttp3.internal.platform.PlatformInitializer"
+                android:value="androidx.startup" />
         </provider>
 
         <activity

Go to https://buildkite.com/automattic/wordpress-android/builds/23584/canvas?sid=0199cdba-ef8b-4830-98fc-acca1d84d60b, click on the Artifacts tab and audit the files.

@wpmobilebot
Copy link
Contributor

wpmobilebot commented Oct 8, 2025

Project dependencies changes

list
+ New Dependencies
com.squareup.okhttp3:okhttp-android:5.2.0
com.squareup.okhttp3:okhttp-java-net-cookiejar:5.2.0

! Upgraded Dependencies
androidx.startup:startup-runtime:1.2.0, (changed from 1.1.1)
com.squareup.okhttp3:okhttp:5.2.0, (changed from 4.12.0)
com.squareup.okhttp3:okhttp-urlconnection:5.2.0, (changed from 4.12.0)
com.squareup.okio:okio:3.16.0, (changed from 3.9.0)
com.squareup.okio:okio-jvm:3.16.0, (changed from 3.9.0)
org.jetbrains.kotlin:kotlin-stdlib:2.2.20, (changed from 2.2.10)
org.jetbrains.kotlin:kotlin-stdlib-common:2.2.20, (changed from 2.2.10)
tree
 +--- androidx.databinding:viewbinding:8.7.3
 |    \--- androidx.annotation:annotation:1.0.0 -> 1.9.1
 |         \--- androidx.annotation:annotation-jvm:1.9.1
-|              \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.10
-|                   +--- org.jetbrains:annotations:13.0 -> 23.0.0
-|                   +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 -> 1.9.24 (c)
-|                   +--- org.jetbrains.kotlin:kotlin-stdlib-common:2.2.10 (c)
-|                   \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0 -> 1.9.24 (c)
+|              \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.20
+|                   +--- org.jetbrains:annotations:13.0 -> 23.0.0
+|                   +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 -> 1.9.24 (c)
+|                   +--- org.jetbrains.kotlin:kotlin-stdlib-common:2.2.20 (c)
+|                   \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0 -> 1.9.24 (c)
-+--- org.jetbrains.kotlin:kotlin-stdlib:2.2.10 (*)
++--- org.jetbrains.kotlin:kotlin-stdlib:2.2.10 -> 2.2.20 (*)
 +--- androidx.navigation:navigation-compose:2.9.5
 |    \--- androidx.navigation:navigation-compose-android:2.9.5
 |         +--- androidx.activity:activity:1.8.0 -> 1.10.1
 |         |    +--- androidx.core:core-ktx:1.13.0 -> 1.16.0
 |         |    |    +--- androidx.core:core:1.16.0
 |         |    |    |    +--- androidx.annotation:annotation-experimental:1.4.1 -> 1.5.0
-|         |    |    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    |    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
 |         |    |    |    +--- androidx.collection:collection:1.4.2 -> 1.5.0
 |         |    |    |    |    \--- androidx.collection:collection-jvm:1.5.0
-|         |    |    |    |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    |    |    |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |    |    |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.10 (c)
+|         |    |    |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.20 (c)
 |         |    |    |    +--- androidx.core:core-viewtree:1.0.0
-|         |    |    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    |    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.10 (c)
+|         |    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.20 (c)
 |         |    |    |    +--- androidx.lifecycle:lifecycle-runtime:2.6.2 -> 2.9.4
 |         |    |    |    |    \--- androidx.lifecycle:lifecycle-runtime-android:2.9.4
 |         |    |    |    |         +--- androidx.lifecycle:lifecycle-common:2.9.4
 |         |    |    |    |         |    \--- androidx.lifecycle:lifecycle-common-jvm:2.9.4
-|         |    |    |    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    |    |    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
 |         |    |    |    |         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1 -> 1.10.2
 |         |    |    |    |         |         |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.2
-|         |    |    |    |         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.2.10 (*)
+|         |    |    |    |         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.2.20 (*)
-|         |    |    |    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |    |    |    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
 |         |    |    |    |         +--- androidx.profileinstaller:profileinstaller:1.4.0
-|         |    |    |    |         |    \--- androidx.startup:startup-runtime:1.1.1
-|         |    |    |    |         |         +--- androidx.annotation:annotation:1.1.0 -> 1.9.1 (*)
-|         |    |    |    |         |         \--- androidx.tracing:tracing:1.0.0 -> 1.2.0
-|         |    |    |    |         |              +--- androidx.annotation:annotation:1.2.0 -> 1.9.1 (*)
-|         |    |    |    |         |              \--- androidx.tracing:tracing-ktx:1.2.0 (c)
+|         |    |    |    |         |    \--- androidx.startup:startup-runtime:1.1.1 -> 1.2.0
+|         |    |    |    |         |         +--- androidx.annotation:annotation:1.8.1 -> 1.9.1 (*)
+|         |    |    |    |         |         \--- androidx.tracing:tracing:1.0.0 -> 1.2.0
+|         |    |    |    |         |              +--- androidx.annotation:annotation:1.2.0 -> 1.9.1 (*)
+|         |    |    |    |         |              \--- androidx.tracing:tracing-ktx:1.2.0 (c)
-|         |    |    |    |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    |    |    |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
 |         |    |    |    |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.1 -> 1.10.2
-|         |    |    |    |         |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.2.10 (*)
+|         |    |    |    |         |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.2.20 (*)
-|         |    |    |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |    |    |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
-|         |    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.10 (c)
+|         |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.20 (c)
-|         |    |    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    |    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.10 (c)
+|         |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.20 (c)
 |         |    +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.9.4
 |         |    |    \--- androidx.lifecycle:lifecycle-viewmodel-android:2.9.4
-|         |    |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
 |         |    +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.1 -> 2.9.4
 |         |    |    \--- androidx.lifecycle:lifecycle-viewmodel-savedstate-android:2.9.4
 |         |    |         +--- androidx.lifecycle:lifecycle-livedata-core:2.9.4
-|         |    |         |    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    |         |    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |    |         |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |    |         |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
 |         |    |         +--- androidx.savedstate:savedstate:1.3.1 -> 1.3.3
 |         |    |         |    \--- androidx.savedstate:savedstate-android:1.3.3
-|         |    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
 |         |    |         |         +--- org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3
 |         |    |         |         |    \--- org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.7.3
-|         |    |         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.2.10 (*)
+|         |    |         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.2.20 (*)
-|         |    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
-|         |    |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
-|         |    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.10 (c)
+|         |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.20 (c)
 |         +--- androidx.activity:activity-compose:1.8.0 -> 1.10.1
 |         |    +--- androidx.activity:activity-ktx:1.10.1
 |         |    |    +--- androidx.lifecycle:lifecycle-runtime-ktx:2.6.1 -> 2.9.4
 |         |    |    |    \--- androidx.lifecycle:lifecycle-runtime-ktx-android:2.9.4
-|         |    |    |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    |    |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |    |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |    |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
 |         |    |    +--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1 -> 2.9.4
-|         |    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
 |         |    |    \--- androidx.savedstate:savedstate-ktx:1.2.1 -> 1.3.3
-|         |    |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
 |         |    +--- androidx.compose.runtime:runtime:1.7.0 -> 1.9.2
 |         |    |    \--- androidx.compose.runtime:runtime-android:1.9.2
 |         |    |         +--- androidx.compose.runtime:runtime-annotation:1.9.2
 |         |    |         |    \--- androidx.compose.runtime:runtime-annotation-android:1.9.2
-|         |    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
-|         |    |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
 |         |    +--- androidx.compose.runtime:runtime-saveable:1.7.0 -> 1.9.2
 |         |    |    \--- androidx.compose.runtime:runtime-saveable-android:1.9.2
-|         |    |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
 |         |    +--- androidx.compose.ui:ui:1.0.1 -> 1.9.2
 |         |    |    \--- androidx.compose.ui:ui-android:1.9.2
 |         |    |         +--- androidx.compose.ui:ui-geometry:1.9.2
 |         |    |         |    \--- androidx.compose.ui:ui-geometry-android:1.9.2
 |         |    |         |         +--- androidx.compose.ui:ui-util:1.9.2
 |         |    |         |         |    \--- androidx.compose.ui:ui-util-android:1.9.2
-|         |    |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |    |         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |    |         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
-|         |    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
 |         |    |         +--- androidx.compose.ui:ui-graphics:1.9.2
 |         |    |         |    \--- androidx.compose.ui:ui-graphics-android:1.9.2
 |         |    |         |         +--- androidx.compose.ui:ui-unit:1.9.2
 |         |    |         |         |    \--- androidx.compose.ui:ui-unit-android:1.9.2
-|         |    |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    |         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |    |         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |    |         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
 |         |    |         |         +--- androidx.graphics:graphics-path:1.0.1
-|         |    |         |         |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.10 (*)
+|         |    |         |         |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.20 (*)
-|         |    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
 |         |    |         +--- androidx.compose.ui:ui-text:1.9.2
 |         |    |         |    \--- androidx.compose.ui:ui-text-android:1.9.2
 |         |    |         |         +--- androidx.emoji2:emoji2:1.4.0
 |         |    |         |         |    +--- androidx.lifecycle:lifecycle-process:2.4.1 -> 2.9.4
-|         |    |         |         |    |    +--- androidx.startup:startup-runtime:1.1.1 (*)
+|         |    |         |         |    |    +--- androidx.startup:startup-runtime:1.1.1 -> 1.2.0 (*)
-|         |    |         |         |    |    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    |         |         |    |    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |    |         |         |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |    |         |         |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
-|         |    |         |         |    \--- androidx.startup:startup-runtime:1.0.0 -> 1.1.1 (*)
+|         |    |         |         |    \--- androidx.startup:startup-runtime:1.0.0 -> 1.2.0 (*)
-|         |    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
 |         |    |         +--- androidx.customview:customview-poolingcontainer:1.0.0
-|         |    |         |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 2.2.10 (*)
+|         |    |         |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.6.21 -> 2.2.20 (*)
-|         |    |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
-|         |    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.10 (c)
+|         |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.20 (c)
 |         +--- androidx.compose.animation:animation:1.7.2 -> 1.9.2
 |         |    \--- androidx.compose.animation:animation-android:1.9.2
 |         |         +--- androidx.compose.animation:animation-core:1.9.2
 |         |         |    \--- androidx.compose.animation:animation-core-android:1.9.2
-|         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
 |         |         +--- androidx.compose.foundation:foundation-layout:1.9.2
 |         |         |    \--- androidx.compose.foundation:foundation-layout-android:1.9.2
-|         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
-|         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
 |         +--- androidx.lifecycle:lifecycle-viewmodel-compose:2.8.2 -> 2.9.4
 |         |    \--- androidx.lifecycle:lifecycle-viewmodel-compose-android:2.9.4
-|         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
 |         +--- androidx.navigation:navigation-common:2.9.5
 |         |    \--- androidx.navigation:navigation-common-android:2.9.5
-|         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
 |         +--- androidx.navigation:navigation-runtime:2.9.5
 |         |    \--- androidx.navigation:navigation-runtime-android:2.9.5
-|         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
-|         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
 +--- project :libs:analytics
 |    +--- com.automattic:Automattic-Tracks-Android:6.0.6
-|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (*)
+|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (*)
 |    \--- androidx.preference:preference:1.2.1
 |         +--- androidx.appcompat:appcompat:1.1.0 -> 1.7.1
 |         |    +--- androidx.fragment:fragment:1.5.4 -> 1.8.9
 |         |    |    +--- androidx.loader:loader:1.0.0
 |         |    |    |    \--- androidx.lifecycle:lifecycle-livedata:2.0.0 -> 2.9.4
 |         |    |    |         +--- androidx.lifecycle:lifecycle-livedata-core-ktx:2.9.4
-|         |    |    |         |    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    |    |         |    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |    |    |         |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |    |    |         |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
-|         |    |    |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |    |    |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |    |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |    |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
-|         |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.10 (*)
+|         |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.20 (*)
-|         |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.10 (*)
+|         |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.20 (*)
 |         +--- androidx.fragment:fragment-ktx:1.3.6 -> 1.8.9
-|         |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.10 (*)
+|         |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.20 (*)
 |         \--- androidx.slidingpanelayout:slidingpanelayout:1.2.0
 |              \--- androidx.window:window:1.0.0 -> 1.3.0
 |                   +--- androidx.window.extensions.core:core:1.0.0
-|                   |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.2.10 (*)
+|                   |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.20 -> 2.2.20 (*)
-|                   \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.10 (*)
+|                   \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.20 (*)
 +--- project :libs:image-editor
-|    +--- org.jetbrains.kotlin:kotlin-stdlib:2.2.10 (*)
+|    +--- org.jetbrains.kotlin:kotlin-stdlib:2.2.10 -> 2.2.20 (*)
 |    +--- com.google.android.material:material:1.12.0
 |    |    \--- org.jetbrains.kotlin:kotlin-bom:1.8.22
-|    |         +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.10 (c)
+|    |         +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.20 (c)
-|    |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.10 (c)
+|    |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.20 (c)
 |    +--- androidx.navigation:navigation-fragment:2.9.5
-|    |    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|    |    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
 |    +--- com.automattic:ucrop:2.2.11
-|    |    \--- com.squareup.okhttp3:okhttp:3.12.13 -> 4.12.0
-|    |         +--- com.squareup.okio:okio:3.6.0 -> 3.9.0
-|    |         |    \--- com.squareup.okio:okio-jvm:3.9.0
-|    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.21 -> 2.2.10 (*)
-|    |         \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21 -> 1.9.24
-|    |              +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.10 (*)
-|    |              \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.24
-|    |                   \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.10 (*)
+|    |    \--- com.squareup.okhttp3:okhttp:3.12.13 -> 5.2.0
+|    |         \--- com.squareup.okhttp3:okhttp-android:5.2.0
+|    |              +--- androidx.annotation:annotation:1.9.1 (*)
+|    |              +--- androidx.startup:startup-runtime:1.2.0 (*)
+|    |              +--- com.squareup.okio:okio:3.16.0
+|    |              |    \--- com.squareup.okio:okio-jvm:3.16.0
+|    |              |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.0 -> 2.2.20 (*)
+|    |              \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 (*)
 |    \--- org.jetbrains.kotlin:kotlin-parcelize-runtime:2.2.10
-|         +--- org.jetbrains.kotlin:kotlin-stdlib:2.2.10 (*)
+|         +--- org.jetbrains.kotlin:kotlin-stdlib:2.2.10 -> 2.2.20 (*)
 |         \--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:2.2.10
-|              \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.10 (*)
+|              \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.10 -> 2.2.20 (*)
 +--- project :libs:editor
 |    +--- org.wordpress:aztec:{strictly v2.1.4} -> v2.1.4
-|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.10 (*)
+|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.20 (*)
 |    +--- org.wordpress.aztec:wordpress-shortcodes:{strictly v2.1.4} -> v2.1.4
-|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.10 (*)
+|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.20 (*)
 |    +--- org.wordpress.aztec:wordpress-comments:{strictly v2.1.4} -> v2.1.4
-|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.10 (*)
+|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.20 (*)
-|    +--- org.jetbrains.kotlin:kotlin-stdlib:2.2.10 (*)
+|    +--- org.jetbrains.kotlin:kotlin-stdlib:2.2.10 -> 2.2.20 (*)
 |    +--- com.facebook.react:react-android:0.73.3
 |    |    +--- com.facebook.fresco:fresco:3.1.3
 |    |    |    +--- com.facebook.fresco:soloader:3.1.3
 |    |    |    |    \--- com.facebook.fresco:fbcore:3.1.3
-|    |    |    |         \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21 -> 1.9.24 (*)
+|    |    |    |         \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21 -> 1.9.24
+|    |    |    |              +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.20 (*)
+|    |    |    |              \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.24
+|    |    |    |                   \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.20 (*)
 |    |    |    \--- com.facebook.fresco:drawee:3.1.3
 |    |    |         \--- com.facebook.fresco:imagepipeline:3.1.3
-|    |    |              \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.21 -> 2.2.10 (*)
+|    |    |              \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.21 -> 2.2.20 (*)
 |    |    +--- com.facebook.fresco:imagepipeline-okhttp3:3.1.3
-|    |    |    \--- com.squareup.okhttp3:okhttp:3.12.1 -> 4.12.0 (*)
+|    |    |    \--- com.squareup.okhttp3:okhttp:3.12.1 -> 5.2.0 (*)
-|    |    +--- com.squareup.okhttp3:okhttp-urlconnection:4.9.2 -> 4.12.0
-|    |    |    +--- com.squareup.okhttp3:okhttp:4.12.0 (*)
-|    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21 -> 1.9.24 (*)
+|    |    +--- com.squareup.okhttp3:okhttp-urlconnection:4.9.2 -> 5.2.0
+|    |    |    +--- com.squareup.okhttp3:okhttp:5.2.0 (*)
+|    |    |    +--- com.squareup.okhttp3:okhttp-java-net-cookiejar:5.2.0
+|    |    |    |    +--- com.squareup.okhttp3:okhttp:5.2.0 (*)
+|    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 (*)
+|    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 (*)
-|    |    +--- com.squareup.okhttp3:okhttp:4.9.2 -> 4.12.0 (*)
+|    |    +--- com.squareup.okhttp3:okhttp:4.9.2 -> 5.2.0 (*)
-|    |    \--- com.squareup.okio:okio:2.9.0 -> 3.9.0 (*)
+|    |    \--- com.squareup.okio:okio:2.9.0 -> 3.16.0 (*)
 |    +--- org.wordpress.gutenberg-mobile:react-native-gutenberg-bridge:v1.121.0
 |    |    +--- com.github.wordpress-mobile:react-native-video:5.2.0-wp-7
 |    |    |    +--- com.google.android.exoplayer:extension-okhttp:2.13.3
-|    |    |    |    \--- com.squareup.okhttp3:okhttp:3.12.11 -> 4.12.0 (*)
+|    |    |    |    \--- com.squareup.okhttp3:okhttp:3.12.11 -> 5.2.0 (*)
-|    |    |    \--- com.squareup.okhttp3:okhttp:${OKHTTP_VERSION} -> 4.12.0 (*)
+|    |    |    \--- com.squareup.okhttp3:okhttp:${OKHTTP_VERSION} -> 5.2.0 (*)
 |    |    +--- org.wordpress.react-native-libraries.v6:react-native-safe-area-context:4.8.2
-|    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.21 -> 2.2.10 (*)
+|    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.21 -> 2.2.20 (*)
 |    |    +--- org.wordpress.react-native-libraries.v6:react-native-webview:13.6.1
-|    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.21 -> 2.2.10 (*)
+|    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.21 -> 2.2.20 (*)
 |    |    +--- org.wordpress.react-native-libraries.v6:react-native-fast-image:8.5.11
 |    |    |    \--- com.github.bumptech.glide:okhttp3-integration:4.12.0
-|    |    |         \--- com.squareup.okhttp3:okhttp:3.9.1 -> 4.12.0 (*)
+|    |    |         \--- com.squareup.okhttp3:okhttp:3.9.1 -> 5.2.0 (*)
 |    |    \--- org.wordpress.react-native-libraries.v6:react-native-gesture-handler:2.14.1
-|    |         \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.21 -> 2.2.10 (*)
+|    |         \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.21 -> 2.2.20 (*)
 |    +--- org.wordpress.gutenbergkit:android:v0.9.0
-|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (*)
+|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (*)
 |    \--- com.automattic.tracks:crashlogging:6.0.6
 |         +--- io.sentry:sentry-compose-android -> 8.18.0
 |         |    \--- androidx.compose.material3:material3:1.2.1 -> 1.4.0
 |         |         \--- androidx.compose.material3:material3-android:1.4.0
 |         |              +--- androidx.compose.foundation:foundation:1.8.1 -> 1.9.2
 |         |              |    \--- androidx.compose.foundation:foundation-android:1.9.2
-|         |              |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |              |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |              |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |              |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
 |         |              +--- androidx.compose.material:material-ripple:1.8.1 -> 1.9.2
 |         |              |    \--- androidx.compose.material:material-ripple-android:1.9.2
-|         |              |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |              |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |              |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |              |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
-|         |              +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         |              +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         |              \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         |              \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
-|         +--- com.squareup.okhttp3:okhttp:4.9.0 -> 4.12.0 (*)
+|         +--- com.squareup.okhttp3:okhttp:4.9.0 -> 5.2.0 (*)
-|         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (*)
+|         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (*)
 +--- project :libs:fluxc
-|    +--- com.squareup.okhttp3:okhttp:4.12.0 (*)
+|    +--- com.squareup.okhttp3:okhttp:5.2.0 (*)
-|    +--- org.jetbrains.kotlin:kotlin-stdlib:2.2.10 (*)
+|    +--- org.jetbrains.kotlin:kotlin-stdlib:2.2.10 -> 2.2.20 (*)
-|    +--- com.squareup.okhttp3:okhttp-urlconnection:4.12.0 (*)
+|    +--- com.squareup.okhttp3:okhttp-urlconnection:5.2.0 (*)
 |    +--- androidx.room:room-runtime:2.8.2
 |    |    \--- androidx.room:room-runtime-android:2.8.2
 |    |         +--- androidx.room:room-common:2.8.2
 |    |         |    \--- androidx.room:room-common-jvm:2.8.2
-|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.20 -> 2.2.10 (c)
+|    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.20 -> 2.2.20 (c)
 |    |         +--- androidx.sqlite:sqlite:2.6.1
 |    |         |    \--- androidx.sqlite:sqlite-android:2.6.1
-|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.20 -> 2.2.10 (c)
+|    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.20 -> 2.2.20 (c)
 |    |         +--- androidx.sqlite:sqlite-framework:2.6.1
 |    |         |    \--- androidx.sqlite:sqlite-framework-android:2.6.1
-|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.20 -> 2.2.10 (c)
+|    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.20 -> 2.2.20 (c)
-|    |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|    |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|    |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.20 -> 2.2.10 (c)
+|    |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.20 -> 2.2.20 (c)
 |    +--- androidx.room:room-ktx:2.8.2
-|    |    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|    |    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.20 -> 2.2.10 (c)
+|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.20 -> 2.2.20 (c)
 |    \--- rs.wordpress.api:android:trunk-d0c9eebab77e8701810077ac1fba7d39ef8d121f
-|         +--- com.squareup.okhttp3:okhttp:4.12.0 (*)
+|         +--- com.squareup.okhttp3:okhttp:4.12.0 -> 5.2.0 (*)
 |         +--- com.squareup.okhttp3:okhttp-tls:4.12.0
-|         |    +--- com.squareup.okhttp3:okhttp:4.12.0 (*)
+|         |    +--- com.squareup.okhttp3:okhttp:4.12.0 -> 5.2.0 (*)
-|         |    \--- com.squareup.okio:okio:3.6.0 -> 3.9.0 (*)
+|         |    \--- com.squareup.okio:okio:3.6.0 -> 3.16.0 (*)
 |         +--- rs.wordpress.api:kotlin:trunk-d0c9eebab77e8701810077ac1fba7d39ef8d121f
-|         |    +--- com.squareup.okhttp3:okhttp:4.12.0 (*)
+|         |    +--- com.squareup.okhttp3:okhttp:4.12.0 -> 5.2.0 (*)
-|         |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 -> 2.2.10 (*)
+|         |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 -> 2.2.20 (*)
-|         \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 -> 2.2.10 (*)
+|         \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 -> 2.2.20 (*)
 +--- project :libs:login
-|    +--- org.jetbrains.kotlin:kotlin-stdlib:2.2.10 (*)
+|    +--- org.jetbrains.kotlin:kotlin-stdlib:2.2.10 -> 2.2.20 (*)
 |    +--- com.gravatar:gravatar:2.5.0
 |    |    +--- com.squareup.moshi:moshi:1.15.1
-|    |    |    \--- com.squareup.okio:okio:3.7.0 -> 3.9.0 (*)
+|    |    |    \--- com.squareup.okio:okio:3.7.0 -> 3.16.0 (*)
-|    |    +--- com.squareup.okhttp3:okhttp:4.12.0 (*)
+|    |    +--- com.squareup.okhttp3:okhttp:4.12.0 -> 5.2.0 (*)
-|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (*)
+|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (*)
 |    +--- androidx.credentials:credentials:1.2.0
-|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.10 (*)
+|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.20 (*)
 |    \--- androidx.credentials:credentials-play-services-auth:1.2.0
 |         +--- com.google.android.libraries.identity.googleid:googleid:1.1.0
-|         |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.0 -> 2.2.10 (*)
+|         |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.0 -> 2.2.20 (*)
-|         \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.10 (*)
+|         \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.20 (*)
 +--- com.automattic:about:1.5.1
 |    +--- androidx.compose.ui:ui-tooling:1.6.6 -> 1.9.2
 |    |    \--- androidx.compose.ui:ui-tooling-android:1.9.2
 |    |         +--- androidx.compose.material:material:1.0.0 -> 1.9.2
 |    |         |    \--- androidx.compose.material:material-android:1.9.2
-|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
 |    |         +--- androidx.compose.ui:ui-tooling-data:1.9.2
 |    |         |    \--- androidx.compose.ui:ui-tooling-data-android:1.9.2
-|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
 |    |         +--- androidx.compose.ui:ui-tooling-preview:1.9.2
 |    |         |    \--- androidx.compose.ui:ui-tooling-preview-android:1.9.2
-|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-common -> 2.2.10
-|    |         |         |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.10 (*)
+|    |         |         +--- org.jetbrains.kotlin:kotlin-stdlib-common -> 2.2.20
+|    |         |         |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 (*)
-|    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:2.0.21 -> 2.2.10 (c)
+|    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:2.0.21 -> 2.2.20 (c)
-|    |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|    |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|    |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|    |         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
-|    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.2.10 (*)
+|    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.2.20 (*)
 +--- com.gravatar:gravatar-quickeditor:2.5.0
 |    +--- com.gravatar:gravatar-ui:2.5.0
 |    |    +--- io.coil-kt:coil-compose:2.7.0
 |    |    |    +--- io.coil-kt:coil-compose-base:2.7.0
 |    |    |    |    +--- io.coil-kt:coil-base:2.7.0
-|    |    |    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.2.10 (*)
+|    |    |    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.2.20 (*)
-|    |    |    |    |    +--- com.squareup.okhttp3:okhttp:4.12.0 (*)
+|    |    |    |    |    +--- com.squareup.okhttp3:okhttp:4.12.0 -> 5.2.0 (*)
-|    |    |    |    |    \--- com.squareup.okio:okio:3.9.0 (*)
+|    |    |    |    |    \--- com.squareup.okio:okio:3.9.0 -> 3.16.0 (*)
-|    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.2.10 (*)
+|    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.2.20 (*)
 |    |    |    +--- io.coil-kt:coil:2.7.0
-|    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.2.10 (*)
+|    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.2.20 (*)
-|    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.2.10 (*)
+|    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.2.20 (*)
 |    |    +--- io.coil-kt:coil-svg:2.7.0
-|    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.2.10 (*)
+|    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.2.20 (*)
-|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (*)
+|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (*)
 |    +--- io.github.osipxd:security-crypto-datastore-preferences:1.1.1-beta03
 |    |    +--- io.github.osipxd:encrypted-datastore-preferences:1.1.1-beta03
 |    |    |    +--- io.github.osipxd:encrypted-datastore:1.1.1-beta03
-|    |    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.2.10 (*)
+|    |    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.2.20 (*)
 |    |    |    |    \--- androidx.datastore:datastore-core:1.1.1 -> 1.1.7
 |    |    |    |         \--- androidx.datastore:datastore-core-android:1.1.7
-|    |    |    |              \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.10 (*)
+|    |    |    |              \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.20 (*)
 |    |    |    +--- androidx.datastore:datastore-preferences-core:1.1.1 -> 1.1.7
 |    |    |    |    \--- androidx.datastore:datastore-preferences-core-android:1.1.7
 |    |    |    |         +--- androidx.datastore:datastore-core-okio:1.1.7
 |    |    |    |         |    \--- androidx.datastore:datastore-core-okio-jvm:1.1.7
-|    |    |    |         |         +--- com.squareup.okio:okio:3.4.0 -> 3.9.0 (*)
+|    |    |    |         |         +--- com.squareup.okio:okio:3.4.0 -> 3.16.0 (*)
-|    |    |    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.10 (*)
+|    |    |    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.20 (*)
-|    |    |    |         +--- com.squareup.okio:okio:3.4.0 -> 3.9.0 (*)
+|    |    |    |         +--- com.squareup.okio:okio:3.4.0 -> 3.16.0 (*)
-|    |    |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.10 (*)
+|    |    |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.20 (*)
-|    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.2.10 (*)
+|    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.2.20 (*)
 |    |    +--- io.github.osipxd:security-crypto-datastore:1.1.1-beta03
 |    |    |    +--- androidx.datastore:datastore:1.1.1 -> 1.1.7
 |    |    |    |    \--- androidx.datastore:datastore-android:1.1.7
-|    |    |    |         +--- com.squareup.okio:okio:3.4.0 -> 3.9.0 (*)
+|    |    |    |         +--- com.squareup.okio:okio:3.4.0 -> 3.16.0 (*)
-|    |    |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.10 (*)
+|    |    |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.20 (*)
-|    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.2.10 (*)
+|    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.2.20 (*)
 |    |    +--- androidx.datastore:datastore-preferences:1.1.1 -> 1.1.7
 |    |    |    \--- androidx.datastore:datastore-preferences-android:1.1.7
-|    |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.10 (*)
+|    |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.20 (*)
-|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.2.10 (*)
+|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.23 -> 2.2.20 (*)
-|    +--- androidx.startup:startup-runtime:1.1.1 (*)
+|    +--- androidx.startup:startup-runtime:1.1.1 -> 1.2.0 (*)
 |    +--- androidx.compose.material3.adaptive:adaptive:1.0.0 -> 1.1.0
 |    |    \--- androidx.compose.material3.adaptive:adaptive-android:1.1.0
 |    |         +--- androidx.window:window-core:1.3.0
 |    |         |    \--- androidx.window:window-core-android:1.3.0
-|    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.10 (*)
+|    |         |         \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.20 (*)
-|    |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|    |         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|    |         \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.10 (c)
+|    |         \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.20 (c)
 |    +--- com.composables:core:1.30.0
 |    |    \--- com.composables:core-android:1.30.0
-|    |         +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.2.10 (*)
+|    |         +--- org.jetbrains.kotlin:kotlin-stdlib:2.0.20 -> 2.2.20 (*)
 |    |         \--- org.jetbrains.compose.foundation:foundation:1.7.0
 |    |              \--- org.jetbrains.compose.animation:animation:1.7.0
 |    |                   \--- org.jetbrains.compose.animation:animation-core:1.7.0
 |    |                        +--- org.jetbrains.compose.annotation-internal:annotation:1.7.0
-|    |                        |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.10 (*)
+|    |                        |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.20 (*)
 |    |                        +--- org.jetbrains.compose.collection-internal:collection:1.7.0
-|    |                        |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.10 (*)
+|    |                        |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.20 (*)
 |    |                        |    \--- org.jetbrains.kotlinx:atomicfu:0.23.2
 |    |                        |         \--- org.jetbrains.kotlinx:atomicfu-jvm:0.23.2
-|    |                        |              \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 1.9.21} -> 2.2.10 (*)
+|    |                        |              \--- org.jetbrains.kotlin:kotlin-stdlib:{prefer 1.9.21} -> 2.2.20 (*)
 |    |                        \--- org.jetbrains.compose.ui:ui:1.7.0
 |    |                             +--- org.jetbrains.androidx.lifecycle:lifecycle-common:2.8.3
-|    |                             |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.10 (*)
+|    |                             |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.20 (*)
 |    |                             +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime:2.8.3
-|    |                             |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.10 (*)
+|    |                             |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.20 (*)
 |    |                             +--- org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose:2.8.3
-|    |                             |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.10 (*)
+|    |                             |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.20 (*)
 |    |                             \--- org.jetbrains.androidx.lifecycle:lifecycle-viewmodel:2.8.3
-|    |                                  \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.10 (*)
+|    |                                  \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.20 (*)
-|    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (*)
+|    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (*)
 +--- com.google.android.flexbox:flexbox:3.0.0
-|    \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.32 -> 2.2.10 (*)
+|    \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.32 -> 2.2.20 (*)
 +--- androidx.work:work-runtime:2.10.5
 |    +--- androidx.concurrent:concurrent-futures-ktx:1.1.0
-|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 2.2.10 (*)
+|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.71 -> 2.2.20 (*)
 |    +--- androidx.lifecycle:lifecycle-service:2.6.2 -> 2.9.4
-|    |    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|    |    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
-|    +--- androidx.startup:startup-runtime:1.1.1 (*)
+|    +--- androidx.startup:startup-runtime:1.1.1 -> 1.2.0 (*)
 |    +--- androidx.tracing:tracing-ktx:1.2.0
-|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.21 -> 2.2.10 (*)
+|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.21 -> 2.2.20 (*)
-|    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.10 (c)
+|    \--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.20 (c)
 +--- androidx.camera:camera-camera2:1.5.0
 |    \--- androidx.camera:camera-core:1.5.0
-|         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|         +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|         \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
 +--- com.squareup.retrofit2:retrofit:3.0.0
-|    +--- com.squareup.okhttp3:okhttp:4.12.0 (*)
+|    +--- com.squareup.okhttp3:okhttp:4.12.0 -> 5.2.0 (*)
-|    \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 -> 2.2.10 (*)
+|    \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 -> 2.2.20 (*)
 +--- com.airbnb.android:lottie:6.6.10
-|    \--- com.squareup.okio:okio:{require 1.17.6; reject _} -> 3.9.0 (*)
+|    \--- com.squareup.okio:okio:{require 1.17.6; reject _} -> 3.16.0 (*)
 +--- com.zendesk:support:5.5.0
 |    +--- com.squareup.picasso:picasso:2.8
-|    |    \--- com.squareup.okhttp3:okhttp:3.10.0 -> 4.12.0 (*)
+|    |    \--- com.squareup.okhttp3:okhttp:3.10.0 -> 5.2.0 (*)
 |    +--- com.zendesk:guide:1.5.0
-|    |    +--- com.squareup.okhttp3:okhttp:4.12.0 (*)
+|    |    +--- com.squareup.okhttp3:okhttp:4.12.0 -> 5.2.0 (*)
 |    |    +--- com.zendesk:guide-providers:1.3.0
 |    |    |    +--- com.zendesk:core:4.2.0
-|    |    |    |    +--- com.squareup.okhttp3:okhttp:4.12.0 (*)
+|    |    |    |    +--- com.squareup.okhttp3:okhttp:4.12.0 -> 5.2.0 (*)
 |    |    |    |    +--- com.squareup.okhttp3:logging-interceptor:4.12.0
-|    |    |    |    |    \--- com.squareup.okhttp3:okhttp:4.12.0 (*)
+|    |    |    |    |    \--- com.squareup.okhttp3:okhttp:4.12.0 -> 5.2.0 (*)
 |    |    |    |    +--- com.zendesk:java-common:2.0.0
-|    |    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.32 -> 2.2.10 (*)
+|    |    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.32 -> 2.2.20 (*)
-|    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.10 (*)
+|    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.20 (*)
-|    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.10 (*)
+|    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.20 (*)
 |    |    +--- com.zendesk:messaging:5.7.0
 |    |    |    +--- com.zendesk:common-ui:4.4.0
-|    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.10 (*)
+|    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.20 (*)
 |    |    |    +--- com.zendesk:messaging-api:5.5.0
 |    |    |    |    +--- com.zendesk:sdk-configurations:2.2.0
-|    |    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.10 (*)
+|    |    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.20 (*)
-|    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.10 (*)
+|    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.20 (*)
-|    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.10 (*)
+|    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.20 (*)
-|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.10 (*)
+|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.20 (*)
 |    +--- com.zendesk:support-providers:5.3.0
-|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.10 (*)
+|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.20 (*)
-|    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.10 (*)
+|    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.24 -> 2.2.20 (*)
 +--- com.google.dagger:hilt-android:2.57.2
-|    \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 -> 2.2.10 (*)
+|    \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 -> 2.2.20 (*)
 +--- com.google.firebase:firebase-messaging -> 25.0.1
 |    +--- com.google.firebase:firebase-common:22.0.1
 |    |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.9.0 -> 1.10.2
-|    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.2.10 (*)
+|    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.2.20 (*)
-|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (*)
+|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (*)
 |    +--- com.google.firebase:firebase-installations:18.0.0 -> 19.0.1
-|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (*)
+|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (*)
-|    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (*)
+|    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (*)
 +--- androidx.compose.runtime:runtime-livedata -> 1.9.2
-|    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.10 (*)
+|    +--- org.jetbrains.kotlin:kotlin-stdlib -> 2.2.20 (*)
-|    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.10 (c)
+|    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.21 -> 2.2.20 (c)
 +--- androidx.compose.material:material-icons-extended -> 1.7.8
 |    \--- androidx.compose.material:material-icons-extended-android:1.7.8
 |         +--- androidx.compose.material:material-icons-core:1.7.8
 |         |    \--- androidx.compose.material:material-icons-core-android:1.7.8
-|         |         +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.10 (*)
+|         |         +--- org.jetbrains.kotlin:kotlin-stdlib:1.8.22 -> 2.2.20 (*)
-|         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.10 (*)
+|         |         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.20 (*)
-|         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.10 (*)
+|         \--- org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22 -> 2.2.20 (*)
 +--- io.coil-kt:coil-video:2.7.0
-|    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.2.10 (*)
+|    \--- org.jetbrains.kotlin:kotlin-stdlib:2.0.0 -> 2.2.20 (*)
 +--- com.airbnb.android:lottie-compose:6.6.10
-|    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.22 -> 2.2.10 (*)
+|    \--- org.jetbrains.kotlin:kotlin-stdlib:1.9.22 -> 2.2.20 (*)
 \--- com.automattic:encryptedlogging:1.1.1
-     \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 -> 2.2.10 (*)
+     \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.21 -> 2.2.20 (*)

@wpmobilebot
Copy link
Contributor

wpmobilebot commented Oct 8, 2025

Project manifest changes for WordPress

The following changes in the WordPress's merged AndroidManifest.xml file were detected (build variant: jetpackVanillaRelease):

--- ./build/reports/diff_manifest/WordPress/jetpackVanillaRelease/base_manifest.txt	2025-10-10 10:51:12.583691982 +0000
+++ ./build/reports/diff_manifest/WordPress/jetpackVanillaRelease/head_manifest.txt	2025-10-10 10:51:22.443691150 +0000
@@ -1153,6 +1153,9 @@
             <meta-data
                 android:name="androidx.profileinstaller.ProfileInstallerInitializer"
                 android:value="androidx.startup" />
+            <meta-data
+                android:name="okhttp3.internal.platform.PlatformInitializer"
+                android:value="androidx.startup" />
         </provider>
 
         <activity

Go to https://buildkite.com/automattic/wordpress-android/builds/23584/canvas?sid=0199cdba-ef8c-4606-8955-bbc787ce4f5c, click on the Artifacts tab and audit the files.

@adalpari
Copy link
Contributor

Copy link

@wpmobilebot
Copy link
Contributor

WordPress📲 You can test the changes from this Pull Request in WordPress by scanning the QR code below to install the corresponding build.
App NameWordPress WordPress
FlavorJalapeno
Build TypeDebug
Versionpr22265-82430fe
Commit82430fe
Direct Downloadwordpress-prototype-build-pr22265-82430fe.apk
Note: Google Login is not supported on these builds.

@wpmobilebot
Copy link
Contributor

Jetpack📲 You can test the changes from this Pull Request in Jetpack by scanning the QR code below to install the corresponding build.
App NameJetpack Jetpack
FlavorJalapeno
Build TypeDebug
Versionpr22265-82430fe
Commit82430fe
Direct Downloadjetpack-prototype-build-pr22265-82430fe.apk
Note: Google Login is not supported on these builds.

Copy link

codecov bot commented Oct 10, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 39.86%. Comparing base (5f8b754) to head (82430fe).
⚠️ Report is 1 commits behind head on trunk.

Additional details and impacted files
@@           Coverage Diff           @@
##            trunk   #22265   +/-   ##
=======================================
  Coverage   39.86%   39.86%           
=======================================
  Files        2168     2168           
  Lines      102894   102894           
  Branches    14840    14840           
=======================================
  Hits        41015    41015           
  Misses      58399    58399           
  Partials     3480     3480           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Copy link
Contributor

@adalpari adalpari left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

@adalpari adalpari merged commit bfed66a into trunk Oct 10, 2025
23 checks passed
@adalpari adalpari deleted the dependabot/gradle/squareup-okhttp3-5.2.0 branch October 10, 2025 11:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

bot: dependencies update PRs that update a dependency file, used by Dependabot.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants