1
0
mirror of https://github.com/square/okhttp.git synced 2026-01-14 07:22:20 +03:00

Merge pull request #5279 from square/jwilson.0710.401_changelog

Update the changelog for OkHttp 4.0.1
This commit is contained in:
Jesse Wilson
2019-07-10 11:41:16 -04:00
committed by GitHub
8 changed files with 18 additions and 8 deletions

View File

@@ -1,6 +1,16 @@
Change Log
==========
## Version 4.0.1
_2019-07-10_
* Fix: Tolerate null-hostile lists in public API. Lists created with `List.of(...)` don't like it
when you call `contains(null)` on them!
* Fix: Retain binary-compatibility in `okhttp3.internal.HttpHeaders.hasBody()`. Some unscrupulous
coders call this and we don't want their users to suffer.
## Version 4.0.0
_2019-06-26_

View File

@@ -100,7 +100,7 @@ Releases
Our [change log][changelog] has release history.
```kotlin
implementation("com.squareup.okhttp3:okhttp:4.0.0")
implementation("com.squareup.okhttp3:okhttp:4.0.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.0.0")
testImplementation("com.squareup.okhttp3:mockwebserver:4.0.1")
```

View File

@@ -142,7 +142,7 @@ server.setDispatcher(dispatcher);
### Download
```kotlin
testImplementation("com.squareup.okhttp3:mockwebserver:4.0.0")
testImplementation("com.squareup.okhttp3:mockwebserver:4.0.1")
```
### License

View File

@@ -7,5 +7,5 @@ API is not considered stable and may change at any time.
### Download
```kotlin
testImplementation("com.squareup.okhttp3:okhttp-dnsoverhttps:4.0.0")
testImplementation("com.squareup.okhttp3:okhttp-dnsoverhttps:4.0.1")
```

View File

@@ -37,7 +37,7 @@ Download
--------
```kotlin
implementation("com.squareup.okhttp3:logging-interceptor:4.0.0")
implementation("com.squareup.okhttp3:logging-interceptor:4.0.1")
```

View File

@@ -7,5 +7,5 @@ API is not considered stable and may change at any time.
### Download
```kotlin
testImplementation("com.squareup.okhttp3:okhttp-sse:4.0.0")
testImplementation("com.squareup.okhttp3:okhttp-sse:4.0.1")
```

View File

@@ -227,7 +227,7 @@ Download
--------
```kotlin
implementation("com.squareup.okhttp3:okhttp-tls:4.0.0")
implementation("com.squareup.okhttp3:okhttp-tls:4.0.1")
```
[held_certificate]: http://square.github.io/okhttp/4.x/okhttp-tls/okhttp3.tls/-held-certificate/

View File

@@ -6,5 +6,5 @@ This module integrates OkHttp with `Authenticator` and `CookieHandler` from `jav
### Download
```kotlin
testImplementation("com.squareup.okhttp3:okhttp-urlconnection:4.0.0")
testImplementation("com.squareup.okhttp3:okhttp-urlconnection:4.0.1")
```