Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release [changeset] #90

Merged
merged 1 commit into from
Nov 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/forty-seas-prove.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/orange-poets-drive.md

This file was deleted.

8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.github.fingerprintjs</groupId>
<artifactId>fingerprint-pro-server-api-java-sdk</artifactId>
<version>v7.0.0</version>
<version>v7.1.0</version>
</dependency>
```

Expand All @@ -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"
}
```

Expand All @@ -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")
}
```

Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
projectVersion = 7.0.0
projectVersion = 7.1.0
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/main/java/com/fingerprint/sdk/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public ApiClient(Map<String, Authentication> 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<>();
Expand Down
Loading