|
1 | 1 | Change Log |
2 | 2 | ========== |
3 | 3 |
|
| 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 | + |
4 | 19 | ## Version 5.0.0-alpha.10 |
5 | 20 |
|
6 | 21 | _2022-06-26_ |
@@ -253,10 +268,12 @@ release is the version name. |
253 | 268 | [assertk]: https://github.com/willowtreeapps/assertk |
254 | 269 | [graalvm]: https://www.graalvm.org/ |
255 | 270 | [graalvm_21]: https://www.graalvm.org/release-notes/21_0/ |
| 271 | +[graalvm_22]: https://www.graalvm.org/release-notes/22_2/ |
256 | 272 | [kotlin_1_4_20]: https://github.com/JetBrains/kotlin/releases/tag/v1.4.20 |
257 | 273 | [kotlin_1_5_31]: https://github.com/JetBrains/kotlin/releases/tag/v1.5.31 |
258 | 274 | [kotlin_1_6_10]: https://github.com/JetBrains/kotlin/releases/tag/v1.6.10 |
259 | 275 | [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 |
260 | 277 | [okio_2_9_0]: https://square.github.io/okio/changelog/#version-290 |
261 | 278 | [okio_3_0_0]: https://square.github.io/okio/changelog/#version-300 |
262 | 279 | [okio_3_1_0]: https://square.github.io/okio/changelog/#version-310 |
|
0 commit comments