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] #80

Merged
merged 1 commit into from
Oct 14, 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/orange-taxis-fetch.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/pre.json

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Fingerprint Pro Server Java SDK

## 6.2.0

### Minor Changes

- **visitors**: Add the confidence field to the VPN Detection Smart Signal ([aec1770](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/commit/aec1770034f91bef7fcd0775b99eb6baa74241de))

## 6.2.0-develop.0

### Minor Changes
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>vdev-6.2.0-0</version>
<version>v6.2.0</version>
</dependency>
```

Expand All @@ -70,7 +70,7 @@ repositories {
}

dependencies {
implementation "com.github.fingerprintjs:fingerprint-pro-server-api-java-sdk:vdev-6.2.0-0"
implementation "com.github.fingerprintjs:fingerprint-pro-server-api-java-sdk:v6.2.0"
}
```

Expand All @@ -85,7 +85,7 @@ repositories {
}

dependencies {
implementation("com.github.fingerprintjs:fingerprint-pro-server-api-java-sdk:vdev-6.2.0-0")
implementation("com.github.fingerprintjs:fingerprint-pro-server-api-java-sdk:v6.2.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-dev-6.2.0-0.jar`
- `target/fingerprint-pro-server-api-sdk-6.2.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 = dev-6.2.0-0
projectVersion = 6.2.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": "6.2.0-develop.0",
"version": "6.2.0",
"private": true,
"devDependencies": {
"@changesets/cli": "^2.27.8",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,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/dev-6.2.0-0";
public static final String INTEGRATION_INFO = "fingerprint-pro-server-java-sdk/6.2.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/dev-6.2.0-0/java");
setUserAgent("OpenAPI-Generator/6.2.0/java");

// Setup authentications (key: authentication name, value: authentication).
authentications = new HashMap<>();
Expand Down
Loading