Skip to content

Commit c651953

Browse files
Version 2.23.0-v2-21.3.00.00 release (#209)
Co-authored-by: DevCenter-DocuSign <[email protected]>
1 parent 6be049a commit c651953

File tree

391 files changed

+57690
-14050
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

391 files changed

+57690
-14050
lines changed

.swagger-codegen/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.13-SNAPSHOT
1+
2.4.21-SNAPSHOT

CHANGELOG.md

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

4+
## [v2.23.0] - ESignature API v2-21.3.00.00 - 2021-09-29
5+
### Changed
6+
- Added support for version v2-21.3.00.00 of the DocuSign eSignature API.
7+
- Updated the SDK release version.
8+
### Added
9+
- SSL certificate chain-of-trust validation. (DCM-5802)
10+
### Removed
11+
- Removed Joda dependency.
12+
413
## [v2.23.0-RC1] - ESignature API v2-21.2.02.00 - 2021-08-30
514
### Changed
615
- Added support for version v2-21.2.02.00 of the DocuSign ESignature API.

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ This SDK is provided as open source, which enables you to customize its function
2929
<dependency>
3030
<groupId>com.docusign</groupId>
3131
<artifactId>docusign-esign-java</artifactId>
32-
<version>2.23.0-RC1</version>
32+
<version>2.23.0</version>
3333
</dependency>
3434
```
3535
8. If your project is still open, restart Eclipse.
@@ -44,8 +44,6 @@ This client has the following external dependencies:
4444
* fasterxml.jackson.core:jackson-annotations:jar:2.12.1
4545
* fasterxml.jackson.core:jackson-databind:jar:2.12.1
4646
* fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:jar:2.12.1
47-
* fasterxml.jackson.datatype:jackson-datatype-joda:jar:2.12.1
48-
* joda-time:joda-time:jar:2.9.3
4947
* brsanthu:migbase64:jar:2.2
5048
* apache.oltu.oauth2:org.apache.oltu.oauth2.client:1.0.2
5149
* junit:junit:jar:4.13.1

build.gradle

Lines changed: 1 addition & 2 deletions
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.23.0-RC1'
5+
version = '2.23.0'
66

77
buildscript {
88
repositories {
@@ -133,7 +133,6 @@ dependencies {
133133
compile "com.fasterxml.jackson.core:jackson-core:$jackson_version"
134134
compile "com.fasterxml.jackson.core:jackson-annotations:$jackson_version"
135135
compile "com.fasterxml.jackson.core:jackson-databind:$jackson_version"
136-
compile "com.fasterxml.jackson.datatype:jackson-datatype-joda:$jackson_version"
137136
compile "com.brsanthu:migbase64:2.2"
138137
testCompile "junit:junit:$junit_version"
139138
compile "org.apache.oltu.oauth2:org.apache.oltu.oauth2.client:$oltu_version"

checkstyle.xml

Lines changed: 328 additions & 0 deletions
Large diffs are not rendered by default.

pom.xml

Lines changed: 7 additions & 10 deletions
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.23.0-RC1</version>
7+
<version>2.23.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://developers.docusign.com</url>
1010

@@ -100,7 +100,7 @@
100100
<plugin>
101101
<groupId>org.apache.maven.plugins</groupId>
102102
<artifactId>maven-javadoc-plugin</artifactId>
103-
<version>2.10.4</version>
103+
<version>3.1.0</version>
104104
<executions>
105105
<execution>
106106
<id>attach-javadocs</id>
@@ -110,7 +110,9 @@
110110
</execution>
111111
</executions>
112112
<configuration>
113-
<additionalparam>-Xdoclint:none</additionalparam>
113+
<additionalOptions>
114+
<additionalOption>-Xdoclint:none</additionalOption>
115+
</additionalOptions>
114116
</configuration>
115117
</plugin>
116118

@@ -165,8 +167,8 @@
165167
<artifactId>maven-compiler-plugin</artifactId>
166168
<version>2.3.2</version>
167169
<configuration>
168-
<source>1.7</source>
169-
<target>1.7</target>
170+
<source>11</source>
171+
<target>11</target>
170172
</configuration>
171173
</plugin>
172174
</plugins>
@@ -264,11 +266,6 @@
264266
<artifactId>jackson-dataformat-csv</artifactId>
265267
<version>${jackson-version}</version>
266268
</dependency>
267-
<dependency>
268-
<groupId>com.fasterxml.jackson.datatype</groupId>
269-
<artifactId>jackson-datatype-joda</artifactId>
270-
<version>${jackson-version}</version>
271-
</dependency>
272269
<!-- Base64 encoding that works in both JVM and Android -->
273270
<dependency>
274271
<groupId>com.brsanthu</groupId>

0 commit comments

Comments
 (0)