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:
10
CHANGELOG.md
10
CHANGELOG.md
@@ -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_
|
||||
|
||||
@@ -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")
|
||||
```
|
||||
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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")
|
||||
```
|
||||
|
||||
@@ -37,7 +37,7 @@ Download
|
||||
--------
|
||||
|
||||
```kotlin
|
||||
implementation("com.squareup.okhttp3:logging-interceptor:4.0.0")
|
||||
implementation("com.squareup.okhttp3:logging-interceptor:4.0.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.0.0")
|
||||
testImplementation("com.squareup.okhttp3:okhttp-sse:4.0.1")
|
||||
```
|
||||
|
||||
@@ -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/
|
||||
|
||||
@@ -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")
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user