mirror of
https://github.com/square/okhttp.git
synced 2025-07-31 05:04:26 +03:00
Update the changelog for 4.1.1.
This commit is contained in:
@ -1,6 +1,15 @@
|
||||
Change Log
|
||||
==========
|
||||
|
||||
## Version 4.1.1
|
||||
|
||||
_2019-09-05_
|
||||
|
||||
* Fix: Don't drop repeated headers when validating cached responses. In our Kotlin upgrade we
|
||||
introduced a regression where we iterated the number of unique header names rather than then
|
||||
number of unique headers. If you're using OkHttp's response cache this may impact you.
|
||||
|
||||
|
||||
## Version 4.1.0
|
||||
|
||||
_2019-08-12_
|
||||
|
@ -100,7 +100,7 @@ Releases
|
||||
Our [change log][changelog] has release history.
|
||||
|
||||
```kotlin
|
||||
implementation("com.squareup.okhttp3:okhttp:4.1.0")
|
||||
implementation("com.squareup.okhttp3:okhttp:4.1.1")
|
||||
```
|
||||
|
||||
Snapshot builds are [available][snap].
|
||||
@ -120,7 +120,7 @@ MockWebServer
|
||||
OkHttp includes a library for testing HTTP, HTTPS, and HTTP/2 clients.
|
||||
|
||||
```kotlin
|
||||
testImplementation("com.squareup.okhttp3:mockwebserver:4.1.0")
|
||||
testImplementation("com.squareup.okhttp3:mockwebserver:4.1.1")
|
||||
```
|
||||
|
||||
|
||||
|
@ -142,7 +142,7 @@ server.setDispatcher(dispatcher);
|
||||
### Download
|
||||
|
||||
```kotlin
|
||||
testImplementation("com.squareup.okhttp3:mockwebserver:4.1.0")
|
||||
testImplementation("com.squareup.okhttp3:mockwebserver:4.1.1")
|
||||
```
|
||||
|
||||
### License
|
||||
|
@ -14,7 +14,7 @@ OkHttpClient client = new OkHttpClient.Builder()
|
||||
```
|
||||
|
||||
```kotlin
|
||||
implementation("com.squareup.okhttp3:okhttp-brotli:4.1.0")
|
||||
implementation("com.squareup.okhttp3:okhttp-brotli:4.1.1")
|
||||
```
|
||||
|
||||
[1]: https://github.com/google/brotli
|
||||
|
@ -7,5 +7,5 @@ API is not considered stable and may change at any time.
|
||||
### Download
|
||||
|
||||
```kotlin
|
||||
testImplementation("com.squareup.okhttp3:okhttp-dnsoverhttps:4.1.0")
|
||||
testImplementation("com.squareup.okhttp3:okhttp-dnsoverhttps:4.1.1")
|
||||
```
|
||||
|
@ -37,7 +37,7 @@ Download
|
||||
--------
|
||||
|
||||
```kotlin
|
||||
implementation("com.squareup.okhttp3:logging-interceptor:4.1.0")
|
||||
implementation("com.squareup.okhttp3:logging-interceptor:4.1.1")
|
||||
```
|
||||
|
||||
|
||||
|
@ -7,5 +7,5 @@ API is not considered stable and may change at any time.
|
||||
### Download
|
||||
|
||||
```kotlin
|
||||
testImplementation("com.squareup.okhttp3:okhttp-sse:4.1.0")
|
||||
testImplementation("com.squareup.okhttp3:okhttp-sse:4.1.1")
|
||||
```
|
||||
|
@ -227,7 +227,7 @@ Download
|
||||
--------
|
||||
|
||||
```kotlin
|
||||
implementation("com.squareup.okhttp3:okhttp-tls:4.1.0")
|
||||
implementation("com.squareup.okhttp3:okhttp-tls:4.1.1")
|
||||
```
|
||||
|
||||
[held_certificate]: http://square.github.io/okhttp/4.x/okhttp-tls/okhttp3.tls/-held-certificate/
|
||||
|
@ -6,5 +6,5 @@ This module integrates OkHttp with `Authenticator` and `CookieHandler` from `jav
|
||||
### Download
|
||||
|
||||
```kotlin
|
||||
testImplementation("com.squareup.okhttp3:okhttp-urlconnection:4.1.0")
|
||||
testImplementation("com.squareup.okhttp3:okhttp-urlconnection:4.1.1")
|
||||
```
|
||||
|
Reference in New Issue
Block a user