@duckduckgo/autoconsent 14.91.0 → 14.93.0

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,3 +1,33 @@
1
+ # v14.93.0 (Wed Jun 10 2026)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - Disable per-rule performance measurement [#1389](https://github.com/duckduckgo/autoconsent/pull/1389) ([@sammacbeth](https://github.com/sammacbeth))
6
+
7
+ #### Authors: 1
8
+
9
+ - Sam Macbeth ([@sammacbeth](https://github.com/sammacbeth))
10
+
11
+ ---
12
+
13
+ # v14.92.0 (Tue Jun 09 2026)
14
+
15
+ #### 🚀 Enhancement
16
+
17
+ - Add vivenu rule for the cookie banner used on vivenu-powered shops [#1386](https://github.com/duckduckgo/autoconsent/pull/1386) ([@cursoragent](https://github.com/cursoragent) [@muodov](https://github.com/muodov))
18
+
19
+ #### 🐛 Bug Fix
20
+
21
+ - Add flag to enable measurement of detectCMP phase [#1385](https://github.com/duckduckgo/autoconsent/pull/1385) ([@sammacbeth](https://github.com/sammacbeth))
22
+
23
+ #### Authors: 3
24
+
25
+ - Cursor Agent ([@cursoragent](https://github.com/cursoragent))
26
+ - Maxim Tsoy ([@muodov](https://github.com/muodov))
27
+ - Sam Macbeth ([@sammacbeth](https://github.com/sammacbeth))
28
+
29
+ ---
30
+
1
31
  # v14.91.0 (Sat Jun 06 2026)
2
32
 
3
33
  #### 🚀 Enhancement
@@ -711,7 +711,8 @@
711
711
  errors: true,
712
712
  messages: false,
713
713
  waits: false
714
- }
714
+ },
715
+ performanceLoggingEnabled: false
715
716
  };
716
717
  const updatedConfig = copyObject(defaultConfig);
717
718
  for (const key of Object.keys(defaultConfig)) {
@@ -744,6 +745,9 @@
744
745
  waits: true
745
746
  };
746
747
  }
748
+ if (storedConfig.performanceLoggingEnabled === void 0) {
749
+ storedConfig.performanceLoggingEnabled = true;
750
+ }
747
751
  return normalizeConfig(storedConfig);
748
752
  }
749
753
  async function showOptOutStatus(tabId, status, cmp = "") {