Skip to content

fix(deps): update dependency com.squareup.okhttp3:okhttp to v5#38

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/major-okhttp-monorepo
Open

fix(deps): update dependency com.squareup.okhttp3:okhttp to v5#38
renovate[bot] wants to merge 1 commit intomainfrom
renovate/major-okhttp-monorepo

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jul 3, 2025

This PR contains the following updates:

Package Change Age Confidence
com.squareup.okhttp3:okhttp (source) 4.12.05.3.2 age confidence

Release Notes

square/okhttp (com.squareup.okhttp3:okhttp)

v5.3.2

2025-11-18

  • Fix: Don't delay triggering timeouts. In Okio 3.16.0 we introduced a regression that caused
    timeouts to fire later than they were supposed to.

  • Upgrade: [Okio 3.16.4][okio_3_16_4].

v5.3.1

2025-11-16

This release is the same as 5.3.0. Okio 3.16.3 didn't have a necessary fix!

  • Upgrade: [Okio 3.16.3][okio_3_16_3].

v5.3.0

2025-10-30

  • New: Add tags to Call, including computable tags. Use this to attach application-specific
    metadata to a Call in an EventListener or Interceptor. The tag can be read in any other
    EventListener or Interceptor.

      override fun intercept(chain: Interceptor.Chain): Response {
        chain.call().tag(MyAnalyticsTag::class) {
          MyAnalyticsTag(...)
        }
    
        return chain.proceed(chain.request())
      }
  • New: Support request bodies on HTTP/1.1 connection upgrades.

  • New: EventListener.plus() makes it easier to observe events in multiple listeners.

  • Fix: Don't spam logs with ‘Method isLoggable in android.util.Log not mocked.’ when using
    OkHttp in Robolectric and Paparazzi tests.

  • Upgrade: [Kotlin 2.2.21][kotlin_2_2_21].

  • Upgrade: [Okio 3.16.2][okio_3_16_2].

  • Upgrade: [ZSTD-KMP 0.4.0][zstd_kmp_0_4_0]. This update fixes a bug that caused APKs to fail
    [16 KB ELF alignment checks][elf_alignment].

v5.2.3

2025-11-18

  • Fix: Don't delay triggering timeouts. In Okio 3.16.0 we introduced a regression that caused
    timeouts to fire later than they were supposed to.

  • Upgrade: [Okio 3.16.4][okio_3_16_4].

v5.2.2

2025-11-16

This release is the same as 5.2.1. Okio 3.16.3 didn't have a necessary fix!

  • Upgrade: [Okio 3.16.3][okio_3_16_3].

v5.2.1

2025-10-09

  • Fix: Don't crash when calling Socket.shutdownOutput() or shutdownInput() on an SSLSocket
    on Android API 21 through 23. This method throws an UnsupportedOperationException, so we now
    catch that and close the underlying stream instead.

  • Upgrade: [Okio 3.16.1][okio_3_16_1].

v5.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].

v5.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.

v5.0.0

2025-07-02

This is our first stable release of OkHttp since 2023. Here's the highlights if you're upgrading
from OkHttp 4.x:

OkHttp is now packaged as separate JVM and Android artifacts. This allows us to offer
platform-specific features and optimizations. If your build system handles [Gradle module metadata],
this change should be automatic.

MockWebServer has a new coordinate and package name. We didn’t like that our old artifact
depends on JUnit 4 so the new one doesn’t. It also has a better API built on immutable values. (We
intend to continue publishing the old okhttp3.mockwebserver artifact so there’s no urgency to
migrate.)

Coordinate Package Name Description
com.squareup.okhttp3:mockwebserver3:5.0.0 mockwebserver3 Core module. No JUnit dependency!
com.squareup.okhttp3:mockwebserver3-junit4:5.0.0 mockwebserver3.junit4 Optional JUnit 4 integration.
com.squareup.okhttp3:mockwebserver3-junit5:5.0.0 mockwebserver3.junit5 Optional JUnit 5 integration.
com.squareup.okhttp3:mockwebserver:5.0.0 okhttp3.mockwebserver Obsolete. Depends on JUnit 4.

OkHttp now supports Happy Eyeballs ([RFC 8305][rfc_8305]) for IPv4+IPv6 networks. It attempts
both IPv6 and IPv4 connections concurrently, keeping whichever connects first.

We’ve improved our Kotlin APIs. You can skip the builder:

val request = Request(
  url = "https://cash.app/".toHttpUrl(),
)

OkHttp now supports [GraalVM].

Here’s what has changed since 5.0.0-alpha.17:

  • Upgrade: [Okio 3.15.0][okio_3_15_0].
  • Upgrade: [Kotlin 2.2.0][kotlin_2_2_0].
  • Fix: Don't crash with a NoSuchMethodError when using OkHttp with the Sentry SDK.
  • Fix: Retain the query data in the old okhttp3.mockwebserver.RecordedRequest.path property. We
    inadvertently changed this behavior when we introduced the mockwebserver3 API.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@coderabbitai
Copy link

coderabbitai bot commented Jul 3, 2025

Important

Review skipped

Auto reviews are disabled on this repository.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Walkthrough

The OkHttp library version was updated from 4.12.0 to 5.0.0 in the project's version catalog file, affecting dependency management for builds that rely on this library.

Changes

File(s) Change Summary
gradle/libs.versions.toml Updated OkHttp version from 4.12.0 to 5.0.0

Poem

A hop, a skip, a version leap,
OkHttp climbs, its promise to keep.
From four to five, the numbers grow,
Faster, stronger, onward we go!
🐇✨


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Support

Need help? Join our Discord community for assistance with any issues or questions.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@codetortoiseai
Copy link

codetortoiseai bot commented Jul 3, 2025

@coderabbitai review

@coderabbitai
Copy link

coderabbitai bot commented Jul 3, 2025

✅ Actions performed

Review triggered.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 0

🧹 Nitpick comments (1)
gradle/libs.versions.toml (1)

12-12: OkHttp 5 artifact split – verify that :okhttp is still the right coordinate

Starting with 5.0, OkHttp ships separate artifacts (okhttp-jvm / okhttp-android).
Gradle module metadata should rewrite :okhttp:okhttp-android automatically, but this only works when:

• Gradle ≥ 7.6 and metadata resolution isn’t disabled
• No custom dependency substitution rules intercept the module id

If either prerequisite is missing you’ll silently pick the JVM artifact, losing Android-specific TLS/Conscrypt optimisations and increasing APK size with duplicate resources.

Action items

  1. Run a ./gradlew :app:dependencies --configuration releaseRuntimeClasspath to confirm that com.squareup.okhttp3:okhttp-android:5.0.0 is ultimately brought in.
  2. If the JVM variant is resolved, swap the coordinate manually:
-okhttp = { module = "com.squareup.okhttp3:okhttp", version.ref = "okhttp" }
+okhttp = { module = "com.squareup.okhttp3:okhttp-android", version.ref = "okhttp" }
  1. Re-compile & run unit / instrumentation tests – OkHttp 5 contains breaking API changes (e.g. HandshakeCertificates, Cache constructor, immutable Request/Response). Fix call-sites where needed.

Also applies to: 32-32

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 8a0aa1d and 57bf63f.

📒 Files selected for processing (1)
  • gradle/libs.versions.toml (1 hunks)
🧰 Additional context used
🧠 Learnings (1)
gradle/libs.versions.toml (10)
Learnt from: CR
PR: testpress/TPStreamsAndroidPlayer#0
File: .cursor/rules/general-best-practices.mdc:0-0
Timestamp: 2025-07-03T12:33:42.617Z
Learning: Applies to app/src/main/java/com/package/**/*.kt : Follow Material Design 3 guidelines and components.
Learnt from: CR
PR: testpress/TPStreamsAndroidPlayer#0
File: .cursor/rules/ui-guidelines.mdc:0-0
Timestamp: 2025-07-03T12:34:10.879Z
Learning: Applies to app/src/main/java/com/package/presentation/**/*.kt : Use proper theming with MaterialTheme
Learnt from: CR
PR: testpress/TPStreamsAndroidPlayer#0
File: .cursor/rules/general-best-practices.mdc:0-0
Timestamp: 2025-07-03T12:33:42.617Z
Learning: Applies to app/src/main/java/com/package/**/*.kt : Use Compose navigation for screen management.
Learnt from: CR
PR: testpress/TPStreamsAndroidPlayer#0
File: .cursor/rules/ui-guidelines.mdc:0-0
Timestamp: 2025-07-03T12:34:10.879Z
Learning: Applies to app/src/main/java/com/package/presentation/**/*.kt : Use proper Compose modifiers ordering
Learnt from: CR
PR: testpress/TPStreamsAndroidPlayer#0
File: .cursor/rules/general-best-practices.mdc:0-0
Timestamp: 2025-07-03T12:33:42.617Z
Learning: Applies to app/src/main/java/com/package/**/*.kt : Implement dependency injection using Hilt.
Learnt from: CR
PR: testpress/TPStreamsAndroidPlayer#0
File: .cursor/rules/performance-guidelines.mdc:0-0
Timestamp: 2025-07-03T12:33:50.349Z
Learning: Applies to app/src/main/java/com/package/**/*.kt : Minimize recomposition using proper keys in Jetpack Compose
Learnt from: CR
PR: testpress/TPStreamsAndroidPlayer#0
File: .cursor/rules/general-best-practices.mdc:0-0
Timestamp: 2025-07-03T12:33:42.617Z
Learning: Applies to app/src/main/java/com/package/**/*.kt : Use Kotlin coroutines and Flow for asynchronous operations.
Learnt from: CR
PR: testpress/TPStreamsAndroidPlayer#0
File: .cursor/rules/performance-guidelines.mdc:0-0
Timestamp: 2025-07-03T12:33:50.349Z
Learning: Applies to app/src/main/java/com/package/**/*.kt : Use proper lazy loading with LazyColumn and LazyRow in Jetpack Compose
Learnt from: CR
PR: testpress/TPStreamsAndroidPlayer#0
File: .cursor/rules/performance-guidelines.mdc:0-0
Timestamp: 2025-07-03T12:33:50.349Z
Learning: Applies to app/src/main/java/com/package/**/*.kt : Use proper background processing in Jetpack Compose
Learnt from: CR
PR: testpress/TPStreamsAndroidPlayer#0
File: .cursor/rules/ui-guidelines.mdc:0-0
Timestamp: 2025-07-03T12:34:10.879Z
Learning: Applies to app/src/main/java/com/package/presentation/**/*.kt : Implement proper animation patterns

@renovate renovate bot force-pushed the renovate/major-okhttp-monorepo branch from 57bf63f to 5abffb4 Compare July 7, 2025 20:54
@renovate renovate bot force-pushed the renovate/major-okhttp-monorepo branch from 5abffb4 to 6214c99 Compare August 10, 2025 12:43
@renovate renovate bot force-pushed the renovate/major-okhttp-monorepo branch 2 times, most recently from f1bf95e to fdda9b0 Compare October 10, 2025 01:49
@renovate renovate bot force-pushed the renovate/major-okhttp-monorepo branch from fdda9b0 to a154104 Compare October 31, 2025 03:07
@renovate renovate bot force-pushed the renovate/major-okhttp-monorepo branch 2 times, most recently from f569df0 to e2c38f0 Compare November 18, 2025 23:59
@renovate renovate bot force-pushed the renovate/major-okhttp-monorepo branch 2 times, most recently from fd165c3 to 140690c Compare December 31, 2025 16:11
@renovate renovate bot force-pushed the renovate/major-okhttp-monorepo branch from 140690c to 42909b7 Compare January 19, 2026 15:12
@renovate renovate bot force-pushed the renovate/major-okhttp-monorepo branch from 42909b7 to 7462579 Compare February 2, 2026 18:03
@renovate renovate bot force-pushed the renovate/major-okhttp-monorepo branch from 7462579 to fa5a2a0 Compare March 5, 2026 10:13
@renovate renovate bot force-pushed the renovate/major-okhttp-monorepo branch from fa5a2a0 to 29fe191 Compare March 13, 2026 17:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants