Skip to content

Update dependency com.squareup.okhttp3:mockwebserver to v5#3472

Open
solrbot wants to merge 3 commits intoapache:mainfrom
solrbot:renovate/major-squareup.okhttp3.mockwebserver
Open

Update dependency com.squareup.okhttp3:mockwebserver to v5#3472
solrbot wants to merge 3 commits intoapache:mainfrom
solrbot:renovate/major-squareup.okhttp3.mockwebserver

Conversation

@solrbot
Copy link
Copy Markdown
Collaborator

@solrbot solrbot commented Aug 12, 2025

This PR contains the following updates:

Package Type Update Change
com.squareup.okhttp3:mockwebserver (source) dependencies major 4.12.0 -> 5.3.2

Release Notes

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

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 - Only on Sunday ( * * * * 0 ) (UTC), 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 has been generated by Renovate Bot

@solrbot solrbot force-pushed the renovate/major-squareup.okhttp3.mockwebserver branch 2 times, most recently from 028ed6c to 7cc5572 Compare August 19, 2025 21:31
@solrbot solrbot force-pushed the renovate/major-squareup.okhttp3.mockwebserver branch 3 times, most recently from bd3e6bc to 54e1845 Compare August 29, 2025 15:35
@solrbot solrbot force-pushed the renovate/major-squareup.okhttp3.mockwebserver branch from 54e1845 to 27ccd84 Compare August 29, 2025 17:18
@solrbot solrbot force-pushed the renovate/major-squareup.okhttp3.mockwebserver branch 2 times, most recently from 5ac7794 to 9ebee44 Compare September 2, 2025 03:10
@solrbot solrbot force-pushed the renovate/major-squareup.okhttp3.mockwebserver branch 3 times, most recently from 3b35548 to be62a60 Compare September 14, 2025 02:33
@solrbot solrbot force-pushed the renovate/major-squareup.okhttp3.mockwebserver branch from be62a60 to b0d3f3a Compare September 16, 2025 02:38
@solrbot solrbot force-pushed the renovate/major-squareup.okhttp3.mockwebserver branch from b0d3f3a to 1fdc1ce Compare September 16, 2025 13:45
@solrbot solrbot force-pushed the renovate/major-squareup.okhttp3.mockwebserver branch from 1fdc1ce to 91dba30 Compare September 29, 2025 17:50
@solrbot solrbot force-pushed the renovate/major-squareup.okhttp3.mockwebserver branch 5 times, most recently from fe230fa to ef698b1 Compare October 16, 2025 17:26
@solrbot solrbot force-pushed the renovate/major-squareup.okhttp3.mockwebserver branch 3 times, most recently from 7de4dd9 to e1f07c4 Compare October 23, 2025 03:40
@solrbot solrbot force-pushed the renovate/major-squareup.okhttp3.mockwebserver branch from e1f07c4 to d71c90e Compare November 5, 2025 02:23
@solrbot solrbot force-pushed the renovate/major-squareup.okhttp3.mockwebserver branch from d71c90e to 0709559 Compare November 8, 2025 03:32
@janhoy janhoy force-pushed the renovate/major-squareup.okhttp3.mockwebserver branch from 0709559 to d390027 Compare November 18, 2025 17:03
@solrbot solrbot force-pushed the renovate/major-squareup.okhttp3.mockwebserver branch 3 times, most recently from 6248f22 to 0caf6fa Compare November 23, 2025 16:51
@solrbot solrbot force-pushed the renovate/major-squareup.okhttp3.mockwebserver branch 3 times, most recently from 91e4fdd to e0fef96 Compare December 18, 2025 21:30
@solrbot solrbot force-pushed the renovate/major-squareup.okhttp3.mockwebserver branch from 6792bd7 to b9cf89f Compare December 20, 2025 09:02
@solrbot solrbot force-pushed the renovate/major-squareup.okhttp3.mockwebserver branch from 76ce2e5 to afdf3b5 Compare February 23, 2026 02:44
@solrbot solrbot force-pushed the renovate/major-squareup.okhttp3.mockwebserver branch from 398743b to 42d26b3 Compare April 21, 2026 01:18
solrbot and others added 2 commits April 21, 2026 01:18
- Add mockwebserver3-LICENSE-ASL.txt/NOTICE.txt (mockwebserver renamed to
  mockwebserver3 in v5; prefix stripping does not cover the '3' suffix)
- Add okhttp-jvm alias to libs.versions.toml (new artifact in okhttp v5)
- Declare okhttp-jvm in jwt-auth testImplementation (used but undeclared)
@solrbot
Copy link
Copy Markdown
Collaborator Author

solrbot commented Apr 22, 2026

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants