@duckduckgo/autoconsent 16.30.0 → 16.31.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/.github/workflows/asana-sync.yml +1 -1
- package/CHANGELOG.md +26 -0
- package/dist/addon-firefox/compact-rules.json +1 -1
- package/dist/addon-firefox/content.bundle.js +47 -10
- package/dist/addon-firefox/manifest.json +1 -1
- package/dist/addon-firefox/rule-index.json +1 -1
- package/dist/addon-firefox/rules.json +1 -1
- package/dist/addon-mv3/compact-rules.json +1 -1
- package/dist/addon-mv3/content.bundle.js +47 -10
- package/dist/addon-mv3/manifest.json +1 -1
- package/dist/addon-mv3/rule-index.json +1 -1
- package/dist/addon-mv3/rules.json +1 -1
- package/dist/autoconsent.cjs.js +47 -10
- package/dist/autoconsent.esm.js +47 -10
- package/dist/autoconsent.playwright.js +47 -10
- package/dist/autoconsent.standalone.js +48 -11
- package/lib/cmps/cookiebot.ts +4 -0
- package/lib/heuristic-patterns.ts +45 -8
- package/lib/heuristics.ts +2 -1
- package/package.json +1 -1
- package/rules/autoconsent/walmart-ca.json +44 -0
- package/rules/autoconsent/xnxx-com.json +1 -1
- package/rules/autoconsent/xvideos.json +1 -1
- package/rules/compact-rules.json +1 -1
- package/rules/rule-index.json +1 -1
- package/rules/rules.json +1 -1
- package/tests/cookiebot.spec.ts +4 -0
- package/tests/walmart-ca.spec.ts +3 -0
- package/tests/xnxx.spec.ts +8 -2
- package/tests/xvideos.spec.ts +3 -3
- package/tests-wtr/heuristics/get-actionable-popups.html +15 -0
- package/tests-wtr/heuristics/get-actionable-popups.ts +20 -0
- package/tests-wtr/heuristics/heuristic-cmp.html +17 -0
- package/tests-wtr/heuristics/heuristic-cmp.ts +34 -0
- package/tests-wtr/heuristics/heuristics-utils.test.ts +135 -0
- package/tests-wtr/rules/cmp-test-urls.json +0 -1
- package/rules/generated/auto_CA_algonquincollege.com_o8v.json +0 -40
- package/tests/generated/auto_CA_algonquincollege.com_o8v.spec.ts +0 -6
|
@@ -15,7 +15,7 @@ jobs:
|
|
|
15
15
|
runs-on: ubuntu-latest
|
|
16
16
|
steps:
|
|
17
17
|
- uses: actions/checkout@v3
|
|
18
|
-
- uses: duckduckgo/action-asana-sync@
|
|
18
|
+
- uses: duckduckgo/action-asana-sync@v17
|
|
19
19
|
with:
|
|
20
20
|
ASANA_ACCESS_TOKEN: ${{ secrets.ASANA_ACCESS_TOKEN }}
|
|
21
21
|
ASANA_WORKSPACE_ID: ${{ secrets.ASANA_WORKSPACE_ID }}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
# v16.31.0 (Fri Aug 28 2026)
|
|
2
|
+
|
|
3
|
+
#### ⚠️ Pushed to `main`
|
|
4
|
+
|
|
5
|
+
- Update asana-sync.yml ([@sammacbeth](https://github.com/sammacbeth))
|
|
6
|
+
|
|
7
|
+
#### Rules
|
|
8
|
+
|
|
9
|
+
- Add some Russian heuristic patterns [#1526](https://github.com/duckduckgo/autoconsent/pull/1526) ([@cursoragent](https://github.com/cursoragent) [@daxtheduck](https://github.com/daxtheduck))
|
|
10
|
+
- Rule update: CPM crawl #28: walmart.ca [#1524](https://github.com/duckduckgo/autoconsent/pull/1524) ([@cursoragent](https://github.com/cursoragent) [@daxtheduck](https://github.com/daxtheduck))
|
|
11
|
+
- Rule update: xnxx.com (manual entry) [#1525](https://github.com/duckduckgo/autoconsent/pull/1525) ([@cursoragent](https://github.com/cursoragent) [@daxtheduck](https://github.com/daxtheduck))
|
|
12
|
+
- Rule update: auto_CA_algonquincollege.com_o8v [#1495](https://github.com/duckduckgo/autoconsent/pull/1495) ([@cursoragent](https://github.com/cursoragent) [@daxtheduck](https://github.com/daxtheduck))
|
|
13
|
+
- Rule update: regression on www.wohnen.de [#1523](https://github.com/duckduckgo/autoconsent/pull/1523) ([@cursoragent](https://github.com/cursoragent) [@daxtheduck](https://github.com/daxtheduck))
|
|
14
|
+
|
|
15
|
+
#### Internal
|
|
16
|
+
|
|
17
|
+
- Fix heuristic popup candidate pruning [#1475](https://github.com/duckduckgo/autoconsent/pull/1475) ([@cursoragent](https://github.com/cursoragent) [@sammacbeth](https://github.com/sammacbeth))
|
|
18
|
+
|
|
19
|
+
#### Authors: 3
|
|
20
|
+
|
|
21
|
+
- Cursor Agent ([@cursoragent](https://github.com/cursoragent))
|
|
22
|
+
- Dax ([@daxtheduck](https://github.com/daxtheduck))
|
|
23
|
+
- Sam Macbeth ([@sammacbeth](https://github.com/sammacbeth))
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
1
27
|
# v16.30.0 (Thu Aug 27 2026)
|
|
2
28
|
|
|
3
29
|
#### Rules
|