You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+35-2Lines changed: 35 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,40 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
-
## [1.19.0] - 2025-02-18
8
+
## [1.20.0] - 2026-03-03
9
+
10
+
### Added
11
+
12
+
- Added support for custom bucketing seed on the `VWOContext` so that bucketing can be driven by a caller-provided seed instead of the raw `userId`, with automatic fallback to `userId` when the seed is not set.
13
+
14
+
Example usage:
15
+
16
+
```java
17
+
importcom.vwo.VWO;
18
+
importcom.vwo.models.user.VWOContext;
19
+
importcom.vwo.models.user.GetFlag;
20
+
importcom.vwo.models.user.VWOInitOptions;
21
+
importjava.util.HashMap;
22
+
importjava.util.Map;
23
+
24
+
VWOInitOptions options =newVWOInitOptions();
25
+
options.setAccountId(123456);
26
+
options.setSdkKey("32-alpha-numeric-sdk-key");
27
+
28
+
VWO vwoClient =VWO.init(options);
29
+
30
+
// Use custom bucketing seed so different userIds can share bucketing
31
+
VWOContext context =newVWOContext();
32
+
context.setId("user-123");
33
+
context.setBucketingSeed("shared-seed-1");
34
+
35
+
GetFlag flag = vwoClient.getFlag("feature-key", context);
36
+
37
+
// If bucketingSeed is invalid (non-string, empty or whitespace-only),
38
+
// the SDK logs INVALID_PARAM for bucketingSeed and falls back to userId.
39
+
```
40
+
41
+
## [1.19.0] - 2026-02-18
9
42
### Added
10
43
11
44
- Added session management capabilities to enable integration with VWO's web client testing campaigns. The SDK now automatically generates and manages session IDs to connect server-side feature flag decisions with client-side user sessions.
@@ -90,7 +123,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
0 commit comments