This repository was archived by the owner on Mar 11, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed
Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 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 `
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ Gradle with [optional `okhttp-urlconnection` dependency](#optional-okhttp-depend
3030``` groovy
3131dependencies {
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
Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff line change 1515dependencies {
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}
You can’t perform that action at this time.
0 commit comments