Skip to content

Commit 1809472

Browse files
authored
Merge pull request #109 from docusign/2.10.0-RC2
Version 2.10.0-RC2
2 parents a7794a0 + bcdfb15 commit 1809472

File tree

10 files changed

+35
-35
lines changed

10 files changed

+35
-35
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
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-RC2] - eSignature API v19.1.02 - 2019-05-09
5+
### Fixed
6+
* A regression bug where the ApiClient authentications member field was locked and prevented writing to it.
7+
48
## [v2.10.0-RC1] - eSignature API v19.1.02 - 2019-05-03
59
### Changed
610
* The SDK now supports version 19.1.02 of the DocuSign eSignature API.

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-RC1</version>
37+
<version>2.10.0-RC2</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-RC1'
5+
version = '2.10.0-RC2'
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-RC1</version>
7+
<version>2.10.0-RC2</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 & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,13 +127,11 @@ public ApiClient() {
127127
mapper.setDateFormat((DateFormat) dateFormat.clone());
128128

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

132132
// Setup authentications (key: authentication name, value: authentication).
133133
authentications = new HashMap<String, Authentication>();
134134
authentications.put("docusignAccessCode", new OAuth(null, null, null));
135-
// Prevent the authentications from being modified.
136-
authentications = Collections.unmodifiableMap(authentications);
137135

138136
// Derive the OAuth base path from the Rest API base url
139137
this.deriveOAuthBasePathFromRestBasePath();
-105 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-RC1
2+
version=2.10.0-RC2
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: 9.461 s - in SdkUnitTests
4+
Tests run: 16, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 16.353 s - in SdkUnitTests

target/surefire-reports/TEST-SdkUnitTests.xml

Lines changed: 25 additions & 27 deletions
Large diffs are not rendered by default.
-223 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)