@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 +30 -0
- package/dist/addon-firefox/background.bundle.js +5 -1
- package/dist/addon-firefox/compact-rules.json +1 -1
- package/dist/addon-firefox/content.bundle.js +33 -2
- package/dist/addon-firefox/manifest.json +1 -1
- package/dist/addon-firefox/popup.bundle.js +5 -1
- package/dist/addon-firefox/rules.json +1 -1
- package/dist/addon-mv3/background.bundle.js +5 -1
- package/dist/addon-mv3/compact-rules.json +1 -1
- package/dist/addon-mv3/content.bundle.js +33 -2
- package/dist/addon-mv3/manifest.json +1 -1
- package/dist/addon-mv3/popup.bundle.js +5 -1
- package/dist/addon-mv3/rules.json +1 -1
- package/dist/autoconsent.cjs.js +33 -2
- package/dist/autoconsent.esm.js +33 -2
- package/dist/autoconsent.extra.cjs.js +33 -2
- package/dist/autoconsent.extra.esm.js +33 -2
- package/dist/autoconsent.playwright.js +33 -2
- package/dist/types/messages.d.ts +4 -1
- package/dist/types/types.d.ts +2 -0
- package/dist/types/web.d.ts +8 -0
- package/lib/cmps/base.ts +4 -0
- package/lib/messages.ts +11 -1
- package/lib/types.ts +2 -0
- package/lib/utils.ts +1 -0
- package/lib/web.ts +31 -2
- package/package.json +1 -1
- package/rules/autoconsent/vivenu.json +31 -0
- package/rules/compact-rules.json +1 -1
- package/rules/rules.json +1 -1
- package/tests/vivenu.spec.ts +5 -0
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 = "") {
|