Skip to content

Commit 45e24cb

Browse files
chore(release): changeset created a new release (develop)
1 parent 3c10022 commit 45e24cb

File tree

7 files changed

+24
-9
lines changed

7 files changed

+24
-9
lines changed

.changeset/pre.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,9 @@
44
"initialVersions": {
55
"fingerprint-pro-server-api-java-sdk": "7.7.0"
66
},
7-
"changesets": []
7+
"changesets": [
8+
"dark-dogs-play",
9+
"sharp-facts-boil",
10+
"ten-plums-tickle"
11+
]
812
}

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Fingerprint Pro Server Java SDK
22

3+
## 7.8.0-develop.0
4+
5+
### Minor Changes
6+
7+
- Mark `replayed` field required in the `identification` product schema. This field will always be present. ([0a0a401](https://github.com/fingerprintjs/fingerprint-pro-server-api-java-sdk/commit/0a0a40165031649be96ad9197e929409c642cfad))
8+
- Add `sdk` field with platform metadata to `identification` ([0a0a401](https://github.com/fingerprintjs/fingerprint-pro-server-api-java-sdk/commit/0a0a40165031649be96ad9197e929409c642cfad))
9+
10+
### Patch Changes
11+
12+
- Deprecate the Remote Control Detection Smart Signal. This signal is no longer available. ([0a0a401](https://github.com/fingerprintjs/fingerprint-pro-server-api-java-sdk/commit/0a0a40165031649be96ad9197e929409c642cfad))
13+
314
## 7.7.0
415

516
### Minor Changes

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.github.fingerprintjs</groupId>
5757
<artifactId>fingerprint-pro-server-api-java-sdk</artifactId>
58-
<version>v7.7.0</version>
58+
<version>v7.8.0-develop.0</version>
5959
</dependency>
6060
```
6161

@@ -70,7 +70,7 @@ repositories {
7070
}
7171
7272
dependencies {
73-
implementation "com.github.fingerprintjs:fingerprint-pro-server-api-java-sdk:v7.7.0"
73+
implementation "com.github.fingerprintjs:fingerprint-pro-server-api-java-sdk:v7.8.0-develop.0"
7474
}
7575
```
7676

@@ -85,7 +85,7 @@ repositories {
8585
}
8686

8787
dependencies {
88-
implementation("com.github.fingerprintjs:fingerprint-pro-server-api-java-sdk:v7.7.0")
88+
implementation("com.github.fingerprintjs:fingerprint-pro-server-api-java-sdk:v7.8.0-develop.0")
8989
}
9090
```
9191

@@ -99,7 +99,7 @@ At first generate the JAR by executing:
9999

100100
Then manually install the following JARs:
101101

102-
- `target/fingerprint-pro-server-api-sdk-7.7.0.jar`
102+
- `target/fingerprint-pro-server-api-sdk-7.8.0-develop.0.jar`
103103

104104
## Getting Started
105105

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
projectVersion = 7.7.0
1+
projectVersion = 7.8.0-develop.0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fingerprint-pro-server-api-java-sdk",
3-
"version": "7.7.0",
3+
"version": "7.8.0-develop.0",
44
"private": true,
55
"devDependencies": {
66
"@changesets/cli": "^2.27.8",

sdk/src/main/java/com/fingerprint/api/FingerprintApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
2727
public class FingerprintApi {
28-
public static final String INTEGRATION_INFO = "fingerprint-pro-server-java-sdk/7.7.0";
28+
public static final String INTEGRATION_INFO = "fingerprint-pro-server-java-sdk/7.8.0-develop.0";
2929
private ApiClient apiClient;
3030

3131
public FingerprintApi() {

sdk/src/main/java/com/fingerprint/sdk/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public ApiClient(Map<String, Authentication> authMap) {
135135
this.dateFormat = new RFC3339DateFormat();
136136

137137
// Set default User-Agent.
138-
setUserAgent("OpenAPI-Generator/7.7.0/java");
138+
setUserAgent("OpenAPI-Generator/7.8.0-develop.0/java");
139139

140140
// Setup authentications (key: authentication name, value: authentication).
141141
authentications = new HashMap<>();

0 commit comments

Comments
 (0)