Bump com.squareup.okhttp3:okhttp-bom from 4.12.0 to 5.1.0
Bumps com.squareup.okhttp3:okhttp-bom from 4.12.0 to 5.1.0.
Changelog
Sourced from com.squareup.okhttp3:okhttp-bom's changelog.
Version 5.1.0
2025-07-07
New:
Response.peekTrailers(). When we changedResponse.trailers()to block instead of throwing in 5.0.0, we inadvertently removed the ability for callers to peek the trailers (by catching theIllegalStateExceptionif 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 theraw()OkHttp response, after its body was decoded.Version 5.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.mockwebserverartifact 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:
... (truncated)
Commits
d2dd180Prepare for release 5.1.0.61a8735New Response.peekTrailers() API (#8921)6684401Update dependency gradle to v8.14.3 (#8915)7adb2b6Update junit-framework monorepo (#8914)e41ff18Link to new mockwebserver artifacts (#8911)0ff8751Remove Graal init tracing (#8909)b9a2560Run graal on master (#8907)8339524Remove ExperimentalOkHttpApi references (#8908)ce29ef6Fix graal tests (#8906)8579689Don't force a response body read on all trailers (#8904)- Additional commits viewable in compare view
You can trigger a rebase of this PR by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Note Automatic rebases have been disabled on this pull request as it has been open for over 30 days.