Skip to content

Commit dbab75d

Browse files
release 1.10.0 (#41)
1 parent 3af31eb commit dbab75d

27 files changed

Lines changed: 356 additions & 46 deletions

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Add this dependency to your project's POM:
5555
<dependency>
5656
<groupId>com.dropbox.sign</groupId>
5757
<artifactId>dropbox-sign</artifactId>
58-
<version>1.9.0</version>
58+
<version>1.10.0</version>
5959
<scope>compile</scope>
6060
</dependency>
6161
```
@@ -71,7 +71,7 @@ Add this dependency to your project's build file:
7171
}
7272
7373
dependencies {
74-
implementation "com.dropbox.sign:dropbox-sign:1.9.0"
74+
implementation "com.dropbox.sign:dropbox-sign:1.10.0"
7575
}
7676
```
7777

@@ -85,7 +85,7 @@ mvn clean package
8585

8686
Then manually install the following JARs:
8787

88-
- `target/dropbox-sign-1.9.0.jar`
88+
- `target/dropbox-sign-1.10.0.jar`
8989
- `target/lib/*.jar`
9090

9191
## Getting Started
@@ -477,7 +477,7 @@ apisupport@hellosign.com
477477
This Java package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
478478

479479
- API version: `3.0.0`
480-
- Package version: `1.9.0`
480+
- Package version: `1.10.0`
481481
- Build package: `org.openapitools.codegen.languages.JavaClientCodegen`
482482

483483

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.9.0
1+
1.10.0

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ apply plugin: 'signing'
2121

2222
group = 'com.dropbox.sign'
2323
archivesBaseName = 'dropbox-sign'
24-
version = '1.9.0'
24+
version = '1.10.0'
2525
sourceCompatibility = JavaVersion.VERSION_1_8
2626
targetCompatibility = JavaVersion.VERSION_1_8
2727

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "com.dropbox.sign",
44
name := "dropbox-sign",
5-
version := "1.9.0",
5+
version := "1.10.0",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
Compile / javacOptions ++= Seq("-Xlint:deprecation"),

docs/OAuthTokenRefreshRequest.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
|------------ | ------------- | ------------- | -------------|
1111
| `grantType`<sup>*_required_</sup> | ```String``` | When refreshing an existing token use `refresh_token`. | |
1212
| `refreshToken`<sup>*_required_</sup> | ```String``` | The token provided when you got the expired access token. | |
13-
| `clientId` | ```String``` | The client ID for your API app. Mandatory from August 1st, 2025. Until then, required if the &quot;Client Credentials Required&quot; setting is enabled for token refresh; optional if disabled. | |
14-
| `clientSecret` | ```String``` | The client secret for your API app. Mandatory from August 1st, 2025. Until then, required if the &quot;Client Credentials Required&quot; setting is enabled for token refresh; optional if disabled. | |
13+
| `clientId` | ```String``` | The client ID for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings. | |
14+
| `clientSecret` | ```String``` | The client secret for your API app. Required for new API apps. To enhance security, we recommend making it required for existing apps in your app settings. | |
1515

1616

1717

docs/ReportCreateRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
---- | -----
2121
| USER_ACTIVITY | &quot;user_activity&quot; |
2222
| DOCUMENT_STATUS | &quot;document_status&quot; |
23+
| SMS_ACTIVITY | &quot;sms_activity&quot; |
2324

2425

2526

docs/ReportResponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Contains information about the report request.
2121
---- | -----
2222
| USER_ACTIVITY | &quot;user_activity&quot; |
2323
| DOCUMENT_STATUS | &quot;document_status&quot; |
24+
| SMS_ACTIVITY | &quot;sms_activity&quot; |
2425

2526

2627

docs/TemplateResponseDocumentFormFieldText.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ This class extends `TemplateResponseDocumentFormFieldBase`
1414
| `originalFontSize` | ```Integer``` | Original font size used in this form field&#39;s text. | |
1515
| `fontFamily` | ```String``` | Font family used in this form field&#39;s text. | |
1616
| `validationType` | [```ValidationTypeEnum```](#ValidationTypeEnum) | Each text field may contain a `validation_type` parameter. Check out the list of [validation types](https://faq.hellosign.com/hc/en-us/articles/217115577) to learn more about the possible values. | |
17+
| `validationCustomRegex` | ```String``` | When `validation_type` is set to `custom_regex`, this specifies the custom regular expression pattern that will be used to validate the text field. | |
18+
| `validationCustomRegexFormatLabel` | ```String``` | When `validation_type` is set to `custom_regex`, this specifies the error message displayed to the signer when the text does not match the provided regex pattern. | |
1719
| `group` | ```String``` | The name of the group this field is in. If this field is not a group, this defaults to `null` except for Radio fields. | |
1820

1921

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#target = android
77
GROUP=com.dropbox.sign
88
POM_ARTIFACT_ID=dropbox-sign
9-
VERSION_NAME=1.9.0
9+
VERSION_NAME=1.10.0
1010

1111
POM_NAME=Dropbox Sign Java SDK
1212
POM_DESCRIPTION=Use the Dropbox Sign Java SDK to connect your Java app to the service of Dropbox Sign in microseconds!

openapi-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ additionalProperties:
1616
groupId: com.dropbox.sign
1717
artifactId: dropbox-sign
1818
artifactName: Dropbox Sign Java SDK
19-
artifactVersion: "1.9.0"
19+
artifactVersion: "1.10.0"
2020
artifactUrl: https://github.com/hellosign/dropbox-sign-java
2121
artifactDescription: Use the Dropbox Sign Java SDK to connect your Java app to the service of Dropbox Sign in microseconds!
2222
scmConnection: scm:git:git://github.com/hellosign/dropbox-sign-java.git

0 commit comments

Comments
 (0)