Skip to content

Commit cd68922

Browse files
fix(deps): update dependency com.squareup.okhttp3:okhttp to v5.2.0 (#612)
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [com.squareup.okhttp3:okhttp](https://square.github.io/okhttp/) ([source](https://redirect.github.com/square/okhttp)) | `5.1.0` -> `5.2.0` | [![age](https://developer.mend.io/api/mc/badges/age/maven/com.squareup.okhttp3:okhttp/5.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/com.squareup.okhttp3:okhttp/5.1.0/5.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>square/okhttp (com.squareup.okhttp3:okhttp)</summary> ### [`v5.2.0`](https://redirect.github.com/square/okhttp/blob/HEAD/CHANGELOG.md#Version-520) *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: ```kotlin 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]. </details> --- ### 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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/EmergeTools/hackernews). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xMzEuOSIsInVwZGF0ZWRJblZlciI6IjQxLjEzMS45IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent ca10d1b commit cd68922

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android/gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ espressoCore = "3.5.0" # This is to match Compose's version
1111
lifecycleRuntimeKtx = "2.9.4"
1212
activityCompose = "1.11.0"
1313
retrofit = "3.0.0"
14-
okhttp = "5.1.0"
14+
okhttp = "5.2.0"
1515
kotlinx-serialization-json = "1.9.0"
1616
viewmodel = "2.9.4"
1717
navigation = "2.9.4"

0 commit comments

Comments
 (0)