Skip to content

Commit 50198f6

Browse files
authored
Merge pull request #110 from docusign/2.10.0
2.10.0 release of the Java SDK
2 parents 7647e09 + 419e470 commit 50198f6

File tree

9 files changed

+41
-25
lines changed

9 files changed

+41
-25
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
# DocuSign Java Client Changelog
22
See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.
33

4+
## [v2.10.0] - eSignature API v19.1.02 - 2019-05-16
5+
### Changed
6+
* The SDK now supports version 19.1.02 of the DocuSign eSignature API.
7+
* SDK Release Version updated.
8+
### Added
9+
* Added support for the new http.nonProxyHosts Proxy option, which you can use to indicate hosts that should be accessed without going through a proxy. (DCM-2850)
10+
* Added new Cache-Control and Pragma headers to OAuth server request calls. (DCM-2242)
11+
* Added a new *tabGroupLabels* field to all Tabs models
12+
* Added a new *Witnesses* field to all Recipients models
13+
* Implemented models for Smart Sections feature
14+
* Implemented initial support of HMAC for DocuSign Connect
15+
### Fixed
16+
* A bug with that could cause the *moveEnvelopes* method call to return a response without a *Content-Type* header. (DCM-1403)
17+
* A bug that could prevent a user from replacing their JWT auth token. (DCM-3209)
18+
* Removed Gradle references to an insecure/outdated Jackson package. (DCM-3267)
19+
420
## [v2.10.0-RC2] - eSignature API v19.1.02 - 2019-05-09
521
### Fixed
622
* A regression bug where the ApiClient authentications member field was locked and prevented writing to it.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Note: DocuSign uses **Eclipse** with **Maven** for testing purposes.
3434
<dependency>
3535
<groupId>com.docusign</groupId>
3636
<artifactId>docusign-esign-java</artifactId>
37-
<version>2.10.0-RC2</version>
37+
<version>2.10.0</version>
3838
</dependency>
3939
```
4040

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'idea'
22
apply plugin: 'eclipse'
33

44
group = 'com.docusign'
5-
version = '2.10.0-RC2'
5+
version = '2.10.0'
66

77
buildscript {
88
repositories {

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<artifactId>docusign-esign-java</artifactId>
55
<packaging>jar</packaging>
66
<name>docusign-esign-java</name>
7-
<version>2.10.0-RC2</version>
7+
<version>2.10.0</version>
88
<description>The official DocuSign eSignature JAVA client is based on version 2 of the DocuSign REST API and provides libraries for JAVA application integration. It is recommended that you use this version of the library for new development.</description>
99
<url>https://www.docusign.com/developer-center</url>
1010

src/main/java/com/docusign/esign/client/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public ApiClient() {
127127
mapper.setDateFormat((DateFormat) dateFormat.clone());
128128

129129
// Set default User-Agent.
130-
setUserAgent("Swagger-Codegen/2.10.0-RC2/java");
130+
setUserAgent("Swagger-Codegen/2.10.0/java");
131131

132132
// Setup authentications (key: authentication name, value: authentication).
133133
authentications = new HashMap<String, Authentication>();
-4 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#Created by Apache Maven 3.6.0
2-
version=2.10.0-RC2
2+
version=2.10.0
33
groupId=com.docusign
44
artifactId=docusign-esign-java
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
-------------------------------------------------------------------------------
22
Test set: SdkUnitTests
33
-------------------------------------------------------------------------------
4-
Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 16.353 s - in SdkUnitTests
4+
Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 11.365 s - in SdkUnitTests

target/surefire-reports/TEST-SdkUnitTests.xml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<testsuite xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://maven.apache.org/surefire/maven-surefire-plugin/xsd/surefire-test-report-3.0.xsd" version="3.0" name="SdkUnitTests" time="16.353" tests="16" errors="0" skipped="0" failures="0">
2+
<testsuite xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://maven.apache.org/surefire/maven-surefire-plugin/xsd/surefire-test-report-3.0.xsd" version="3.0" name="SdkUnitTests" time="11.365" tests="16" errors="0" skipped="0" failures="0">
33
<properties>
44
<property name="java.vm.info" value="mixed mode"/>
55
<property name="file.encoding.pkg" value="sun.io"/>
@@ -27,7 +27,7 @@
2727
<property name="java.vm.specification.vendor" value="Oracle Corporation"/>
2828
<property name="java.specification.version" value="1.7"/>
2929
<property name="awt.toolkit" value="sun.lwawt.macosx.LWCToolkit"/>
30-
<property name="sun.java.command" value="/Users/majid.mallis/dev/docusign-java-client/target/surefire/surefirebooter2592660818346592993.jar /Users/majid.mallis/dev/docusign-java-client/target/surefire 2019-05-09T13-23-54_282-jvmRun1 surefire6809241564129890732tmp surefire_07545311445193678902tmp"/>
30+
<property name="sun.java.command" value="/Users/majid.mallis/dev/docusign-java-client/target/surefire/surefirebooter1634490734200270088.jar /Users/majid.mallis/dev/docusign-java-client/target/surefire 2019-05-16T14-32-03_255-jvmRun1 surefire4367456487674665861tmp surefire_08739077607928103094tmp"/>
3131
<property name="user.timezone" value="America/Los_Angeles"/>
3232
<property name="surefire.test.class.path" value="/Users/majid.mallis/dev/docusign-java-client/target/test-classes:/Users/majid.mallis/dev/docusign-java-client/target/classes:/Users/majid.mallis/.m2/repository/io/swagger/swagger-annotations/1.5.8/swagger-annotations-1.5.8.jar:/Users/majid.mallis/.m2/repository/com/sun/jersey/jersey-client/1.19.1/jersey-client-1.19.1.jar:/Users/majid.mallis/.m2/repository/com/sun/jersey/jersey-core/1.19.1/jersey-core-1.19.1.jar:/Users/majid.mallis/.m2/repository/javax/ws/rs/jsr311-api/1.1.1/jsr311-api-1.1.1.jar:/Users/majid.mallis/.m2/repository/com/sun/jersey/contribs/jersey-multipart/1.19.1/jersey-multipart-1.19.1.jar:/Users/majid.mallis/.m2/repository/org/jvnet/mimepull/mimepull/1.9.3/mimepull-1.9.3.jar:/Users/majid.mallis/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.9.8/jackson-core-2.9.8.jar:/Users/majid.mallis/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.9.8/jackson-annotations-2.9.8.jar:/Users/majid.mallis/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.9.8/jackson-databind-2.9.8.jar:/Users/majid.mallis/.m2/repository/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.9.8/jackson-jaxrs-json-provider-2.9.8.jar:/Users/majid.mallis/.m2/repository/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.9.8/jackson-jaxrs-base-2.9.8.jar:/Users/majid.mallis/.m2/repository/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.9.8/jackson-module-jaxb-annotations-2.9.8.jar:/Users/majid.mallis/.m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformat-csv/2.9.8/jackson-dataformat-csv-2.9.8.jar:/Users/majid.mallis/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-joda/2.1.5/jackson-datatype-joda-2.1.5.jar:/Users/majid.mallis/.m2/repository/joda-time/joda-time/2.9.3/joda-time-2.9.3.jar:/Users/majid.mallis/.m2/repository/org/apache/oltu/oauth2/org.apache.oltu.oauth2.client/1.0.2/org.apache.oltu.oauth2.client-1.0.2.jar:/Users/majid.mallis/.m2/repository/org/apache/oltu/oauth2/org.apache.oltu.oauth2.common/1.0.2/org.apache.oltu.oauth2.common-1.0.2.jar:/Users/majid.mallis/.m2/repository/org/json/json/20140107/json-20140107.jar:/Users/majid.mallis/.m2/repository/org/slf4j/slf4j-api/1.7.7/slf4j-api-1.7.7.jar:/Users/majid.mallis/.m2/repository/com/auth0/java-jwt/3.4.1/java-jwt-3.4.1.jar:/Users/majid.mallis/.m2/repository/commons-codec/commons-codec/1.11/commons-codec-1.11.jar:/Users/majid.mallis/.m2/repository/org/bouncycastle/bcprov-jdk15on/1.60/bcprov-jdk15on-1.60.jar:/Users/majid.mallis/.m2/repository/com/brsanthu/migbase64/2.2/migbase64-2.2.jar:/Users/majid.mallis/.m2/repository/junit/junit/4.12/junit-4.12.jar:/Users/majid.mallis/.m2/repository/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar:"/>
3333
<property name="java.runtime.version" value="1.7.0_79-b15"/>
@@ -42,7 +42,7 @@
4242
<property name="java.runtime.name" value="Java(TM) SE Runtime Environment"/>
4343
<property name="java.vendor.url" value="http://java.oracle.com/"/>
4444
<property name="sun.boot.class.path" value="/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/resources.jar:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/rt.jar:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/sunrsasign.jar:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/jsse.jar:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/jce.jar:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/charsets.jar:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/jfr.jar:/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/classes"/>
45-
<property name="surefire.real.class.path" value="/Users/majid.mallis/dev/docusign-java-client/target/surefire/surefirebooter2592660818346592993.jar"/>
45+
<property name="surefire.real.class.path" value="/Users/majid.mallis/dev/docusign-java-client/target/surefire/surefirebooter1634490734200270088.jar"/>
4646
<property name="java.endorsed.dirs" value="/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre/lib/endorsed"/>
4747
<property name="gopherProxySet" value="false"/>
4848
<property name="loggerPath" value="conf/log4j.properties"/>
@@ -60,20 +60,20 @@
6060
<property name="java.vm.name" value="Java HotSpot(TM) 64-Bit Server VM"/>
6161
<property name="user.country" value="US"/>
6262
</properties>
63-
<testcase name="UpdateChunkedUpload" classname="SdkUnitTests" time="15.525"/>
64-
<testcase name="RequestASignatureTest" classname="SdkUnitTests" time="9.697"/>
65-
<testcase name="ListStatusTest" classname="SdkUnitTests" time="8.162"/>
66-
<testcase name="ListStatusChangesTest" classname="SdkUnitTests" time="8.059"/>
67-
<testcase name="ListDocumentsTest" classname="SdkUnitTests" time="8.005"/>
68-
<testcase name="JWTLoginTest" classname="SdkUnitTests" time="7.363"/>
69-
<testcase name="GetDiagnosticLogsTest" classname="SdkUnitTests" time="16.353"/>
70-
<testcase name="RequestSignatureFromTemplate" classname="SdkUnitTests" time="9.278"/>
71-
<testcase name="DownLoadEnvelopeDocumentsTest" classname="SdkUnitTests" time="10.676"/>
72-
<testcase name="CreateTemplateTest" classname="SdkUnitTests" time="8.941"/>
73-
<testcase name="ImplicitLoginTest" classname="SdkUnitTests" time="6.118"/>
74-
<testcase name="EmbeddedSigningTest" classname="SdkUnitTests" time="9.94"/>
75-
<testcase name="ResendEnvelopeTest" classname="SdkUnitTests" time="15.897"/>
76-
<testcase name="UpdateBulkRecipientsTest" classname="SdkUnitTests" time="9.639"/>
77-
<testcase name="UpdateBrandLogoByTypeTest" classname="SdkUnitTests" time="8.16"/>
78-
<testcase name="AuthorizationCodeLoginTest" classname="SdkUnitTests" time="6.12"/>
63+
<testcase name="DownLoadEnvelopeDocumentsTest" classname="SdkUnitTests" time="10.729"/>
64+
<testcase name="ResendEnvelopeTest" classname="SdkUnitTests" time="9.878"/>
65+
<testcase name="RequestSignatureFromTemplate" classname="SdkUnitTests" time="8.511"/>
66+
<testcase name="UpdateBrandLogoByTypeTest" classname="SdkUnitTests" time="8.004"/>
67+
<testcase name="ListStatusTest" classname="SdkUnitTests" time="7.705"/>
68+
<testcase name="RequestASignatureTest" classname="SdkUnitTests" time="9.577"/>
69+
<testcase name="ListStatusChangesTest" classname="SdkUnitTests" time="7.756"/>
70+
<testcase name="EmbeddedSigningTest" classname="SdkUnitTests" time="9.579"/>
71+
<testcase name="JWTLoginTest" classname="SdkUnitTests" time="7.222"/>
72+
<testcase name="CreateTemplateTest" classname="SdkUnitTests" time="8.52"/>
73+
<testcase name="ListDocumentsTest" classname="SdkUnitTests" time="7.438"/>
74+
<testcase name="GetDiagnosticLogsTest" classname="SdkUnitTests" time="11.365"/>
75+
<testcase name="AuthorizationCodeLoginTest" classname="SdkUnitTests" time="5.657"/>
76+
<testcase name="ImplicitLoginTest" classname="SdkUnitTests" time="5.662"/>
77+
<testcase name="UpdateBulkRecipientsTest" classname="SdkUnitTests" time="9.584"/>
78+
<testcase name="UpdateChunkedUpload" classname="SdkUnitTests" time="10.081"/>
7979
</testsuite>

0 commit comments

Comments
 (0)