Skip to content

Commit 1639a5b

Browse files
garg-muditroot
andauthored
Version 6.6.0-v2.1-25.4.01.00 release (#313)
Co-authored-by: root <root@devcenteradmin.docusigntest.com>
1 parent 64c95b2 commit 1639a5b

File tree

13 files changed

+5141
-23
lines changed

13 files changed

+5141
-23
lines changed

CHANGELOG.md

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

4-
## [v6.5.0] - eSignature API v2.1-25.3.01.00 - 2025-09-29
4+
## [v6.6.0] - eSignature API v2.1-25.4.01.00 - 2026-01-27
5+
### Changed
6+
- Added support for version v2.1-25.4.01.00 of the DocuSign ESignature API.
7+
- Updated the SDK release version.
8+
9+
## [v6.5.0] - eSignature API v2.1-25.3.01.00 - 2025-12-11
510
### Changed
611
- Added support for version v2.1-25.3.01.00 of the Docusign ESignature API.
712
- Updated the SDK release version.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ This client SDK is provided as open source, which enables you to customize its f
5757
<dependency>
5858
<groupId>com.docusign</groupId>
5959
<artifactId>docusign-esign-java</artifactId>
60-
<version>6.5.0</version>
60+
<version>6.6.0</version>
6161
</dependency>
6262
```
6363
8. If your project is still open, restart Eclipse.

pom.xml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>docusign-esign-java</artifactId>
66
<packaging>jar</packaging>
77
<name>docusign-esign-java</name>
8-
<version>6.5.0</version>
8+
<version>6.6.0</version>
99
<url>https://developers.docusign.com</url>
1010
<description>The official Docusign eSignature JAVA client is based on version 2.1 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>
1111

@@ -210,13 +210,8 @@
210210
<artifactId>maven-compiler-plugin</artifactId>
211211
<version>3.6.1</version>
212212
<configuration>
213-
<source>1.8</source>
214-
<target>1.8</target>
215-
<fork>true</fork>
216-
<executable>javac</executable>
217-
<compilerArgs>
218-
<arg>-J-Xss4m</arg>
219-
</compilerArgs>
213+
<source>1.8</source>
214+
<target>1.8</target>
220215
</configuration>
221216
</plugin>
222217
<plugin>
@@ -238,8 +233,6 @@
238233
<version>12.1.1</version>
239234
<configuration>
240235
<failBuildOnCVSS>8</failBuildOnCVSS>
241-
<ossindexAnalyzerEnabled>false</ossindexAnalyzerEnabled>
242-
<failOnError>false</failOnError>
243236
</configuration>
244237
<executions>
245238
<execution>
@@ -298,7 +291,7 @@
298291
<plugin>
299292
<groupId>org.apache.maven.plugins</groupId>
300293
<artifactId>maven-gpg-plugin</artifactId>
301-
<version>1.6</version>
294+
<version>1.5</version>
302295
<executions>
303296
<execution>
304297
<id>sign-artifacts</id>

src/main/java/com/docusign/esign/api/EnvelopesApi.java

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5248,6 +5248,7 @@ public class GetEnvelopeOptions
52485248
private String advancedUpdate = null;
52495249
private String include = null;
52505250
private String includeAnchorTabLocations = null;
5251+
private String userId = null;
52515252

52525253
/**
52535254
* setAdvancedUpdate method.
@@ -5296,6 +5297,22 @@ public void setIncludeAnchorTabLocations(String includeAnchorTabLocations) {
52965297
public String getIncludeAnchorTabLocations() {
52975298
return this.includeAnchorTabLocations;
52985299
}
5300+
5301+
/**
5302+
* setUserId method.
5303+
*/
5304+
public void setUserId(String userId) {
5305+
this.userId = userId;
5306+
}
5307+
5308+
/**
5309+
* getUserId method.
5310+
*
5311+
* @return String
5312+
*/
5313+
public String getUserId() {
5314+
return this.userId;
5315+
}
52995316
}
53005317

53015318
/**
@@ -5362,6 +5379,8 @@ public ApiResponse<Envelope > getEnvelopeWithHttpInfo(String accountId, String e
53625379
localVarQueryParams.addAll(apiClient.parameterToPair("include", options.include));
53635380
}if (options != null) {
53645381
localVarQueryParams.addAll(apiClient.parameterToPair("include_anchor_tab_locations", options.includeAnchorTabLocations));
5382+
}if (options != null) {
5383+
localVarQueryParams.addAll(apiClient.parameterToPair("user_id", options.userId));
53655384
}
53665385

53675386

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public ApiClient() {
9393
String javaVersion = System.getProperty("java.version");
9494

9595
// Set default User-Agent.
96-
setUserAgent("Swagger-Codegen/v2.1/6.5.0/Java/" + javaVersion);
96+
setUserAgent("Swagger-Codegen/v2.1/6.6.0/Java/" + javaVersion);
9797

9898
// Setup authentications (key: authentication name, value: authentication).
9999
authentications = new HashMap<String, Authentication>();

0 commit comments

Comments
 (0)