@duckduckgo/autoconsent 14.14.1 → 14.15.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 +13 -0
- package/dist/addon-firefox/content.bundle.js +1 -1
- package/dist/addon-firefox/manifest.json +1 -1
- package/dist/addon-firefox/rules.json +1 -1
- package/dist/addon-mv3/content.bundle.js +1 -1
- package/dist/addon-mv3/manifest.json +1 -1
- package/dist/addon-mv3/rules.json +1 -1
- package/dist/autoconsent.cjs.js +1 -1
- package/dist/autoconsent.esm.js +1 -1
- package/dist/autoconsent.extra.cjs.js +1 -1
- package/dist/autoconsent.extra.esm.js +1 -1
- package/dist/autoconsent.playwright.js +2 -2
- package/lib/web.ts +1 -2
- package/package.json +1 -1
- package/rules/compact-rules.json +1 -1
- package/rules/generated/auto_AU_asus.com_ony.json +0 -3
- package/rules/rules.json +1 -1
- package/tests/generated/auto_AU_asus.com_ony.spec.ts +1 -1
- package/rules/generated/auto_CA_asus.com_dm1.json +0 -28
- package/tests/generated/auto_CA_asus.com_dm1.spec.ts +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# v14.15.0 (Sat Aug 23 2025)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- Clean duplicated asus.com rules [#914](https://github.com/duckduckgo/autoconsent/pull/914) ([@sammacbeth](https://github.com/sammacbeth))
|
|
6
|
+
- Run heuristic detection also when site-specific rules apply. [#894](https://github.com/duckduckgo/autoconsent/pull/894) ([@sammacbeth](https://github.com/sammacbeth))
|
|
7
|
+
|
|
8
|
+
#### Authors: 1
|
|
9
|
+
|
|
10
|
+
- Sam Macbeth ([@sammacbeth](https://github.com/sammacbeth))
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
1
14
|
# v14.14.1 (Fri Aug 22 2025)
|
|
2
15
|
|
|
3
16
|
#### 🐛 Bug Fix
|
|
@@ -13180,12 +13180,12 @@
|
|
|
13180
13180
|
siteSpecificRules.map((r) => r.name)
|
|
13181
13181
|
);
|
|
13182
13182
|
await Promise.all(siteSpecificRules.map(detectCmp));
|
|
13183
|
+
this.detectHeuristics();
|
|
13183
13184
|
if (foundCMPs.length > 0) {
|
|
13184
13185
|
return foundCMPs;
|
|
13185
13186
|
}
|
|
13186
13187
|
logsConfig.lifecycle && console.log("Site-specific rules didn't match, trying generic rules");
|
|
13187
13188
|
await Promise.all(otherRules.map(detectCmp));
|
|
13188
|
-
this.detectHeuristics();
|
|
13189
13189
|
if (foundCMPs.length === 0 && retries > 0) {
|
|
13190
13190
|
try {
|
|
13191
13191
|
await Promise.all([this.domActions.wait(500), mutationObserver]);
|