Skip to content

Commit 5414fbd

Browse files
cornehoskamgitbook-bot
authored andcommitted
GITBOOK-78: Changelog Engage 13.5.2
1 parent d57385f commit 5414fbd

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

13/umbraco-engage/release-notes.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,21 @@ When upgrading to a major version, be sure to look at the breaking changes outli
1616

1717
This section contains the release notes for Umbraco Engage 13 including all changes for this version.
1818

19+
[13.5.2](https://www.nuget.org/packages/Umbraco.Engage/13.5.2) **(June 30th 2025)**
20+
21+
* Resolves issue where under certain edge cases, visitors without A/B Testing cookie consent were still being assigned to A/B test variants. This caused anonymous visitors to be incorrectly segmented and included in A/B test results.
22+
* This patch includes an automatic migration that removes any variant assignments for anonymous visitors. However, it does **not** automatically delete associated A/B test data, to avoid long processing times on large datasets.
23+
* After upgrading, you may optionally run the SQL query below to reset any potentially inaccurate A/B test results. Once executed, the updated data will be reflected in the backoffice within 24 hours.
24+
25+
```sql
26+
DELETE pvabtv
27+
FROM umbracoEngageAnalyticsPageviewAbTestVariant pvabtv
28+
JOIN umbracoEngageAnalyticsPageview pv ON pvabtv.pageviewId = pv.id
29+
JOIN umbracoEngageAnalyticsSession s ON pv.sessionId = s.id
30+
JOIN umbracoEngageAnalyticsVisitor v ON s.visitorId = v.id
31+
WHERE v.externalId = '11111111-1111-1111-1111-111111111111';
32+
```
33+
1934
[**13.5.1**](https://www.nuget.org/packages/Umbraco.Engage/13.5.1) **(June 30th 2025)**
2035

2136
* Resolved Data Generation issue involving duplicate primary keys in the `umbracoEngageReportingDimCampaign` table.

0 commit comments

Comments
 (0)