@kameleoon/javascript-sdk-core 5.14.3 → 5.14.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Change Log
2
2
 
3
+ ## 5.14.4 (2025-08-13)
4
+
5
+ > [!WARNING]
6
+ > If you're upgrading from a version earlier than 5.14.0 and run into any unexpected build or SDK-related issues, please reach out to the Kameleoon Support Team. We're here to ensure your transition is smooth and will promptly address any concerns.
7
+
8
+ ### Patch Changes
9
+
10
+ - Fixed an issue where using [`getRemoteVisitorData`][getRemoteVisitorData] with `personalization=true` or [`evaluateAudiences`][evaluateAudiences] could cause a visitor’s targeting data to be unexpectedly removed from storage.
11
+
3
12
  ## 5.14.3 (2025-08-12)
4
13
 
5
14
  > [!WARNING]
@@ -5271,6 +5271,8 @@ class IntegrityChecker {
5271
5271
  switch (key) {
5272
5272
  case exports.KameleoonData.PageView:
5273
5273
  case exports.KameleoonData.Conversion:
5274
+ case exports.KameleoonData.Personalization:
5275
+ case exports.KameleoonData.TargetedSegment:
5274
5276
  case exports.KameleoonData.CustomData: {
5275
5277
  const hasBadFields = Object.values(data).some((obj) => hasInvalidFields(obj));
5276
5278
  if (hasBadFields) {