@duckduckgo/autoconsent 16.20.1 → 16.22.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 +2 -1
- package/CHANGELOG.md +46 -0
- package/data/coverage.json +1362 -1255
- package/dist/addon-firefox/background.bundle.js +17 -2
- package/dist/addon-firefox/compact-rules.json +1 -1
- package/dist/addon-firefox/content.bundle.js +17 -2
- 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/background.bundle.js +17 -2
- package/dist/addon-mv3/compact-rules.json +1 -1
- package/dist/addon-mv3/content.bundle.js +17 -2
- 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 +17 -2
- package/dist/autoconsent.esm.js +17 -2
- package/dist/autoconsent.playwright.js +17 -2
- package/dist/autoconsent.standalone.js +18 -3
- package/dist/types/eval-snippets.d.ts +5 -1
- package/lib/eval-snippets.ts +17 -2
- package/package.json +1 -1
- package/rules/autoconsent/appconsent-legacy.json +31 -0
- package/rules/autoconsent/appconsent.json +31 -0
- package/rules/autoconsent/aylo-cookie-banner.json +59 -4
- package/rules/autoconsent/consentmanager-ncmp.json +34 -0
- package/rules/autoconsent/cookie-banner-element.json +8 -0
- package/rules/autoconsent/ctv-disneyonice.json +12 -0
- package/rules/autoconsent/fever.json +42 -0
- package/rules/autoconsent/ibanez.json +13 -0
- package/rules/autoconsent/krown-cookie-banner.json +34 -0
- package/rules/autoconsent/pornpics-de.json +13 -0
- package/rules/autoconsent/simplehuman-com.json +33 -0
- package/rules/autoconsent/toho-one.json +50 -0
- package/rules/autoconsent/tohotheater-jp.json +20 -0
- package/rules/compact-rules.json +1 -1
- package/rules/rule-index.json +1 -1
- package/rules/rules.json +1 -1
- package/tests/appconsent-legacy.spec.ts +7 -0
- package/tests/appconsent.spec.ts +7 -0
- package/tests/consentmanager-ncmp.spec.ts +5 -0
- package/tests/cookie-banner-element.spec.ts +7 -0
- package/tests/ctv-disneyonice.spec.ts +5 -0
- package/tests/fever.spec.ts +3 -0
- package/tests/ibanez.spec.ts +3 -0
- package/tests/krown-cookie-banner.spec.ts +3 -0
- package/tests/pornpics-de.spec.ts +3 -0
- package/tests/simplehuman-com.spec.ts +3 -0
- package/tests/toho-one.spec.ts +3 -0
- package/tests/tohotheater-jp.spec.ts +3 -0
|
@@ -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@v15
|
|
19
19
|
with:
|
|
20
20
|
ASANA_ACCESS_TOKEN: ${{ secrets.ASANA_ACCESS_TOKEN }}
|
|
21
21
|
ASANA_WORKSPACE_ID: ${{ secrets.ASANA_WORKSPACE_ID }}
|
|
@@ -23,3 +23,4 @@ jobs:
|
|
|
23
23
|
move_to_section_id: '1203409672862480'
|
|
24
24
|
GITHUB_PAT: ${{ secrets.GH_RO_PAT }}
|
|
25
25
|
ASSIGN_PR_AUTHOR: 'true'
|
|
26
|
+
REVIEW_TASKS_AS_APPROVALS: 'true'
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,49 @@
|
|
|
1
|
+
# v16.22.0 (Sat Aug 15 2026)
|
|
2
|
+
|
|
3
|
+
#### Rules
|
|
4
|
+
|
|
5
|
+
- Rule update: CPM crawl #222: pornpics.de [#1485](https://github.com/duckduckgo/autoconsent/pull/1485) ([@cursoragent](https://github.com/cursoragent) [@daxtheduck](https://github.com/daxtheduck))
|
|
6
|
+
- Rule update: Don't agree button on takahashikougei.com [#1483](https://github.com/duckduckgo/autoconsent/pull/1483) ([@cursoragent](https://github.com/cursoragent) [@daxtheduck](https://github.com/daxtheduck))
|
|
7
|
+
- Rule update: CPM crawl cluster #415: landmarkcinemas.com (consentmanager.net|inert, 14 sites) [#1482](https://github.com/duckduckgo/autoconsent/pull/1482) ([@cursoragent](https://github.com/cursoragent) [@daxtheduck](https://github.com/daxtheduck))
|
|
8
|
+
- Rule update: CPM crawl #1635: darty.com [#1481](https://github.com/duckduckgo/autoconsent/pull/1481) ([@cursoragent](https://github.com/cursoragent) [@sammacbeth](https://github.com/sammacbeth) [@daxtheduck](https://github.com/daxtheduck))
|
|
9
|
+
|
|
10
|
+
#### Authors: 3
|
|
11
|
+
|
|
12
|
+
- Cursor Agent ([@cursoragent](https://github.com/cursoragent))
|
|
13
|
+
- Dax ([@daxtheduck](https://github.com/daxtheduck))
|
|
14
|
+
- Sam Macbeth ([@sammacbeth](https://github.com/sammacbeth))
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
# v16.21.0 (Fri Aug 14 2026)
|
|
19
|
+
|
|
20
|
+
#### ⚠️ Pushed to `main`
|
|
21
|
+
|
|
22
|
+
- Bump action-asana-sync ([@sammacbeth](https://github.com/sammacbeth))
|
|
23
|
+
|
|
24
|
+
#### Rules
|
|
25
|
+
|
|
26
|
+
- Rule update: ibanez [#1486](https://github.com/duckduckgo/autoconsent/pull/1486) ([@cursoragent](https://github.com/cursoragent) [@daxtheduck](https://github.com/daxtheduck))
|
|
27
|
+
- Rule update: fever [#1487](https://github.com/duckduckgo/autoconsent/pull/1487) ([@cursoragent](https://github.com/cursoragent) [@daxtheduck](https://github.com/daxtheduck))
|
|
28
|
+
- Rule update: cookie-banner-element [#1488](https://github.com/duckduckgo/autoconsent/pull/1488) ([@cursoragent](https://github.com/cursoragent) [@daxtheduck](https://github.com/daxtheduck))
|
|
29
|
+
- Rule update: simplehuman-com [#1489](https://github.com/duckduckgo/autoconsent/pull/1489) ([@cursoragent](https://github.com/cursoragent) [@daxtheduck](https://github.com/daxtheduck))
|
|
30
|
+
- Rule update: Cookie pop-up displayed: TOHO-ONE [#1477](https://github.com/duckduckgo/autoconsent/pull/1477) ([@cursoragent](https://github.com/cursoragent) [@daxtheduck](https://github.com/daxtheduck))
|
|
31
|
+
- Rule update: CPM crawl cluster #54: youporn.com (aylo-cookie-banner|inert, 13 sites) [#1474](https://github.com/duckduckgo/autoconsent/pull/1474) ([@cursoragent](https://github.com/cursoragent) [@daxtheduck](https://github.com/daxtheduck))
|
|
32
|
+
- Rule update: tohotheater-jp [#1476](https://github.com/duckduckgo/autoconsent/pull/1476) ([@cursoragent](https://github.com/cursoragent) [@daxtheduck](https://github.com/daxtheduck))
|
|
33
|
+
- Rule update: Cookie popup on ctv.co.jp [#1478](https://github.com/duckduckgo/autoconsent/pull/1478) ([@cursoragent](https://github.com/cursoragent) [@daxtheduck](https://github.com/daxtheduck))
|
|
34
|
+
|
|
35
|
+
#### Documentation
|
|
36
|
+
|
|
37
|
+
- Coverage data update [#1480](https://github.com/duckduckgo/autoconsent/pull/1480) ([@daxtheduck](https://github.com/daxtheduck))
|
|
38
|
+
|
|
39
|
+
#### Authors: 3
|
|
40
|
+
|
|
41
|
+
- Cursor Agent ([@cursoragent](https://github.com/cursoragent))
|
|
42
|
+
- Dax ([@daxtheduck](https://github.com/daxtheduck))
|
|
43
|
+
- Sam Macbeth ([@sammacbeth](https://github.com/sammacbeth))
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
1
47
|
# v16.20.1 (Thu Aug 06 2026)
|
|
2
48
|
|
|
3
49
|
#### Rules
|