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
+30Lines changed: 30 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,36 @@ 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] - 2026-02-17
9
+
10
+
- Added support to use the context `id` as the visitor UUID instead of auto-generating one. You can read the visitor UUID from the flag result via `flag.get_uuid()` (e.g. to pass to the web client).
11
+
12
+
Example usage:
13
+
14
+
```python
15
+
from vwo import init
16
+
17
+
# Initialize the SDK
18
+
vwo_client = init({
19
+
"account_id": "123456",
20
+
"sdk_key": "32-alpha-numeric-sdk-key",
21
+
})
22
+
23
+
# Default: SDK generates a UUID from id and account
Copy file name to clipboardExpand all lines: vwo/resources/debug-messages.json
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -11,5 +11,6 @@
11
11
"IMPRESSION_FOR_TRACK_USER": "Impression built for vwo_variationShown(VWO standard event for tracking user) event haivng Account ID:{accountId}, User ID:{userId}, and experiment ID:{campaignId}",
12
12
"IMPRESSION_FOR_TRACK_GOAL": "Impression built for event:{eventName} event having Account ID:{accountId}, and user ID:{userId}",
13
13
"IMPRESSION_FOR_SYNC_VISITOR_PROP": "Impression built for {eventName}(VWO internal event) event for Account ID:{accountId}, and user ID:{userId}",
14
-
"BATCHING_INITIALIZED": "BATCHING_INITIALIZED"
14
+
"BATCHING_INITIALIZED": "BATCHING_INITIALIZED",
15
+
"WEB_UUID_FOUND": "VWO Web Testing identified UUID {uuid} as the Context ID for API {apiName}"
0 commit comments