Skip to content

Commit a74bfca

Browse files
committed
Prepare for release 5.0.0-alpha.11.
1 parent d65406e commit a74bfca

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
Change Log
22
==========
33

4+
## Version 5.0.0-alpha.11
5+
6+
_2022-12-24_
7+
8+
* New: Enable fast fallback by default. It's our implementation of Happy Eyeballs,
9+
[RFC 8305][rfc_8305]. Disable with `OkHttpClient.Builder.fastFallback(false)`.
10+
* Fix: Don't log response bodies for server-sent events.
11+
* Fix: Skip early hints (status code 103) responses.
12+
* Fix: Don't log sensitive headers in `Request.toString()`.
13+
* Fix: Don't crash when the dispatcher's `ExecutorService` is shutdown with many
14+
calls still enqueued.
15+
* Upgrade: [GraalVM 22][graalvm_22].
16+
* Upgrade: [Kotlin 1.7.10][kotlin_1_7_10].
17+
18+
419
## Version 5.0.0-alpha.10
520

621
_2022-06-26_
@@ -253,10 +268,12 @@ release is the version name.
253268
[assertk]: https://github.com/willowtreeapps/assertk
254269
[graalvm]: https://www.graalvm.org/
255270
[graalvm_21]: https://www.graalvm.org/release-notes/21_0/
271+
[graalvm_22]: https://www.graalvm.org/release-notes/22_2/
256272
[kotlin_1_4_20]: https://github.com/JetBrains/kotlin/releases/tag/v1.4.20
257273
[kotlin_1_5_31]: https://github.com/JetBrains/kotlin/releases/tag/v1.5.31
258274
[kotlin_1_6_10]: https://github.com/JetBrains/kotlin/releases/tag/v1.6.10
259275
[kotlin_1_6_21]: https://github.com/JetBrains/kotlin/releases/tag/v1.6.21
276+
[kotlin_1_7_10]: https://github.com/JetBrains/kotlin/releases/tag/v1.7.10
260277
[okio_2_9_0]: https://square.github.io/okio/changelog/#version-290
261278
[okio_3_0_0]: https://square.github.io/okio/changelog/#version-300
262279
[okio_3_1_0]: https://square.github.io/okio/changelog/#version-310

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ apply(plugin = "org.jetbrains.dokka")
3636

3737
allprojects {
3838
group = "com.squareup.okhttp3"
39-
version = "5.0.0-SNAPSHOT"
39+
version = "5.0.0-alpha.11"
4040

4141
repositories {
4242
mavenCentral()

0 commit comments

Comments
 (0)