Skip to content

Commit 7949877

Browse files
committed
[API-8521] Added missing fields
1 parent e7a922b commit 7949877

3 files changed

Lines changed: 15 additions & 5 deletions

File tree

CHANGES.MD

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
3.22.0 (2026-01-05)
2+
=================
3+
- Added support for `$user_email`, `$review.$reviewed_user_id` fields to `$create_content`, `$update_content` events
4+
- Added support for `$brand_name`, `$site_country`, `$site_domain` field to `$flag_content` event
5+
16
3.21.2 (2025-07-29)
27
=================
38
- Bumped version for `gson` from `2.10` to `2.13.1`

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ Java 1.7 or later.
1313
<dependency>
1414
<groupId>com.siftscience</groupId>
1515
<artifactId>sift-java</artifactId>
16-
<version>3.21.2</version>
16+
<version>3.22.0</version>
1717
</dependency>
1818
```
1919
### Gradle
2020
```
2121
dependencies {
22-
compile 'com.siftscience:sift-java:3.21.2'
22+
compile 'com.siftscience:sift-java:3.22.0'
2323
}
2424
```
2525
### Other

build.gradle

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ apply plugin: 'signing'
55
apply plugin: 'java-library-distribution'
66

77
group = 'com.siftscience'
8-
version = '3.21.2'
8+
version = '3.22.0'
99

1010
repositories {
1111
mavenCentral()
@@ -129,8 +129,8 @@ publishing {
129129
url = 'https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/'
130130

131131
credentials {
132-
username = "${sonatypeUsername}"
133-
password = "${sonatypePassword}"
132+
username = ""
133+
password = ""
134134
}
135135
}
136136
}
@@ -146,3 +146,8 @@ distributions {
146146
distributionBaseName = 'sift-java'
147147
}
148148
}
149+
150+
test {
151+
// useJUnitPlatform()
152+
useJUnit()
153+
}

0 commit comments

Comments
 (0)