@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 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]);
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "manifest_version": 2,
3
3
  "name": "Autoconsent",
4
- "version": "2025.8.20",
4
+ "version": "2025.8.22",
5
5
  "background": {
6
6
  "scripts": [
7
7
  "background.bundle.js"