Skip to content
This repository was archived by the owner on Mar 11, 2022. It is now read-only.

Commit ae59cd1

Browse files
committed
Upgrade OkHttp to 3.12.12
1 parent d119b92 commit ae59cd1

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Unreleased
22
- [FIXED] Connection leak regression introduced in 2.18.0 caused by not closing streams from
33
successful session response bodies.
4+
- [UPGRADED] Optional OkHttp dependency to version 3.12.12.
45

56
# 2.19.0 (2020-03-02)
67
- [NEW] Add getter for total row count to `AllDocsResponse`

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Gradle with [optional `okhttp-urlconnection` dependency](#optional-okhttp-depend
3030
```groovy
3131
dependencies {
3232
compile group: 'com.cloudant', name: 'cloudant-client', version: '2.19.0'
33-
compile group: 'com.squareup.okhttp3', name: 'okhttp-urlconnection', version: '3.12.5'
33+
compile group: 'com.squareup.okhttp3', name: 'okhttp-urlconnection', version: '3.12.12'
3434
}
3535
```
3636

@@ -55,7 +55,7 @@ Maven with [optional `okhttp-urlconnection` dependency](#optional-okhttp-depende
5555
<dependency>
5656
<groupId>com.squareup.okhttp3</groupId>
5757
<artifactId>okhttp-urlconnection</artifactId>
58-
<version>3.12.5</version>
58+
<version>3.12.12</version>
5959
</dependency>
6060
~~~
6161

cloudant-client/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dependencies {
2020
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.1.0'
2121
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.1.0'
2222
testCompile group: 'org.hamcrest', name: 'hamcrest-library', version: '1.3'
23-
testCompile group: 'com.squareup.okhttp3', name: 'mockwebserver', version: '3.12.5'
23+
testCompile group: 'com.squareup.okhttp3', name: 'mockwebserver', version: '3.12.12'
2424
testCompile group: 'org.jmockit', name: 'jmockit', version: '1.34'
2525
testCompile group: 'org.littleshoot', name: 'littleproxy', version: '1.1.0'
2626
}

cloudant-http/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
dependencies {
1616
compile group: 'commons-io', name: 'commons-io', version: '2.4'
1717
//needed to compile, but optional for consumers of java-cloudant
18-
compile(group: 'com.squareup.okhttp3', name: 'okhttp-urlconnection', version: '3.12.5') {
18+
compile(group: 'com.squareup.okhttp3', name: 'okhttp-urlconnection', version: '3.12.12') {
1919
ext.optional = true
2020
}
2121
}

0 commit comments

Comments
 (0)