Skip to content

Commit 50641ee

Browse files
authored
Merge pull request #110 from fingerprintjs/changeset-release/main
2 parents 8b9f6f7 + b15d9e7 commit 50641ee

File tree

7 files changed

+26
-9
lines changed

7 files changed

+26
-9
lines changed

.changeset/pre.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,10 @@
44
"initialVersions": {
55
"fingerprint-pro-server-api-java-sdk": "7.4.0"
66
},
7-
"changesets": []
7+
"changesets": [
8+
"fuzzy-pumas-end",
9+
"sharp-chicken-yawn",
10+
"shiny-ghosts-sin",
11+
"thick-clouds-ring"
12+
]
813
}

CHANGELOG.md

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

3+
## 7.5.0-develop.0
4+
5+
### Minor Changes
6+
7+
- **events-search**: Event search now supports a new set of filter parameters: `vpn`, `virtual_machine`, `tampering`, `anti_detect_browser`, `incognito`, `privacy_settings`, `jailbroken`, `frida`, `factory_reset`, `cloned_app`, `emulator`, `root_apps`, `vpn_confidence`, `min_suspect_score`. ([057c1bc](https://github.com/fingerprintjs/fingerprint-pro-server-api-java-sdk/commit/057c1bc8bc87d080d22ee88b4e5b26d0737d3907))
8+
- **events-search**: Event search now supports two new filter parameters: `ip_blocklist`, `datacenter` ([b6ef518](https://github.com/fingerprintjs/fingerprint-pro-server-api-java-sdk/commit/b6ef5181f749eed24b0dfe031c3eb35d344ffb29))
9+
10+
### Patch Changes
11+
12+
- **events**: Update Tampering descriptions to reflect Android support. ([057c1bc](https://github.com/fingerprintjs/fingerprint-pro-server-api-java-sdk/commit/057c1bc8bc87d080d22ee88b4e5b26d0737d3907))
13+
- **webhook**: Add `environmentId` property ([057c1bc](https://github.com/fingerprintjs/fingerprint-pro-server-api-java-sdk/commit/057c1bc8bc87d080d22ee88b4e5b26d0737d3907))
14+
315
## 7.4.0
416

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

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

0 commit comments

Comments
 (0)