Skip to content

Commit f87c505

Browse files
authored
Merge pull request #127 from fingerprintjs/changeset-release/main
Release [changeset]
2 parents fb9e0ed + e65a829 commit f87c505

File tree

7 files changed

+14
-13
lines changed

7 files changed

+14
-13
lines changed

.changeset/thick-toys-visit.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

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

3+
## 7.9.0
4+
5+
### Minor Changes
6+
7+
- Add `details` object to the `proxy` signal. This field includes the `type` of the detected proxy (`residential` or `data_center`) and the `lastSeenAt` timestamp of when an IP was last observed to show proxy-like behavior. ([c4ccff0](https://github.com/fingerprintjs/fingerprint-pro-server-api-java-sdk/commit/c4ccff044bcf967e3839027fc12c793814504853))
8+
39
## 7.8.0
410

511
### 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.8.0</version>
58+
<version>v7.9.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.8.0"
73+
implementation "com.github.fingerprintjs:fingerprint-pro-server-api-java-sdk:v7.9.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.8.0")
88+
implementation("com.github.fingerprintjs:fingerprint-pro-server-api-java-sdk:v7.9.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.8.0.jar`
102+
- `target/fingerprint-pro-server-api-sdk-7.9.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.8.0
1+
projectVersion = 7.9.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.8.0",
3+
"version": "7.9.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.8.0";
28+
public static final String INTEGRATION_INFO = "fingerprint-pro-server-java-sdk/7.9.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.8.0/java");
138+
setUserAgent("OpenAPI-Generator/7.9.0/java");
139139

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

0 commit comments

Comments
 (0)