diff --git a/.changeset/forty-seas-prove.md b/.changeset/forty-seas-prove.md deleted file mode 100644 index 4f10093..0000000 --- a/.changeset/forty-seas-prove.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'fingerprint-pro-server-api-java-sdk': minor ---- - -Add `relay` detection method to the VPN Detection Smart Signal diff --git a/.changeset/orange-poets-drive.md b/.changeset/orange-poets-drive.md deleted file mode 100644 index c297c6f..0000000 --- a/.changeset/orange-poets-drive.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'fingerprint-pro-server-api-java-sdk': minor ---- - -**events**: Add a `suspect` field to the `identification` product schema \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index c3ee243..f250b83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,18 @@ # Fingerprint Pro Server Java SDK +## 7.1.0 + +### Minor Changes + +- Add `relay` detection method to the VPN Detection Smart Signal ([3b6d78f](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/commit/3b6d78f162d06b3d3e633fce9227c7ee734e8722)) +- **events**: Add a `suspect` field to the `identification` product schema ([3b6d78f](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/commit/3b6d78f162d06b3d3e633fce9227c7ee734e8722)) + ## 7.0.0 ### Major Changes The underlying Server API hasn’t changed, but we made SDK type and class generation more precise, resulting in small breaking changes for the SDK itself. This change should make the SDK API a lot more stable going forward - - Rename `Webhook` class to `WebhookValidation`. Right now, `Webhook` class points to the actual data model. ([817b444](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/commit/817b4443db7d9eea45ac36d3843335762ead01b5)) - - Remove the `BrowserDetails` field `botProbability`. diff --git a/README.md b/README.md index eb7e9e9..3b42016 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Add this dependency to your project's POM: com.github.fingerprintjs fingerprint-pro-server-api-java-sdk - v7.0.0 + v7.1.0 ``` @@ -70,7 +70,7 @@ repositories { } dependencies { - implementation "com.github.fingerprintjs:fingerprint-pro-server-api-java-sdk:v7.0.0" + implementation "com.github.fingerprintjs:fingerprint-pro-server-api-java-sdk:v7.1.0" } ``` @@ -85,7 +85,7 @@ repositories { } dependencies { - implementation("com.github.fingerprintjs:fingerprint-pro-server-api-java-sdk:v7.0.0") + implementation("com.github.fingerprintjs:fingerprint-pro-server-api-java-sdk:v7.1.0") } ``` @@ -99,7 +99,7 @@ At first generate the JAR by executing: Then manually install the following JARs: -- `target/fingerprint-pro-server-api-sdk-7.0.0.jar` +- `target/fingerprint-pro-server-api-sdk-7.1.0.jar` ## Getting Started diff --git a/gradle.properties b/gradle.properties index 26619af..58014c5 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -projectVersion = 7.0.0 +projectVersion = 7.1.0 diff --git a/package.json b/package.json index a950148..06c3ec1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fingerprint-pro-server-api-java-sdk", - "version": "7.0.0", + "version": "7.1.0", "private": true, "devDependencies": { "@changesets/cli": "^2.27.8", diff --git a/sdk/src/main/java/com/fingerprint/api/FingerprintApi.java b/sdk/src/main/java/com/fingerprint/api/FingerprintApi.java index 453353e..4c67db4 100644 --- a/sdk/src/main/java/com/fingerprint/api/FingerprintApi.java +++ b/sdk/src/main/java/com/fingerprint/api/FingerprintApi.java @@ -23,7 +23,7 @@ @jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0") public class FingerprintApi { - public static final String INTEGRATION_INFO = "fingerprint-pro-server-java-sdk/7.0.0"; + public static final String INTEGRATION_INFO = "fingerprint-pro-server-java-sdk/7.1.0"; private ApiClient apiClient; public FingerprintApi() { diff --git a/sdk/src/main/java/com/fingerprint/sdk/ApiClient.java b/sdk/src/main/java/com/fingerprint/sdk/ApiClient.java index 4511c0a..903c2ee 100644 --- a/sdk/src/main/java/com/fingerprint/sdk/ApiClient.java +++ b/sdk/src/main/java/com/fingerprint/sdk/ApiClient.java @@ -135,7 +135,7 @@ public ApiClient(Map authMap) { this.dateFormat = new RFC3339DateFormat(); // Set default User-Agent. - setUserAgent("OpenAPI-Generator/7.0.0/java"); + setUserAgent("OpenAPI-Generator/7.1.0/java"); // Setup authentications (key: authentication name, value: authentication). authentications = new HashMap<>();