@duckduckgo/autoconsent 12.6.0 → 12.7.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 +19 -0
- package/dist/addon-firefox/background.bundle.js +0 -1
- package/dist/addon-firefox/content.bundle.js +7 -5
- package/dist/addon-firefox/manifest.json +1 -1
- package/dist/addon-firefox/rules.json +76 -174
- package/dist/addon-mv3/background.bundle.js +0 -1
- package/dist/addon-mv3/content.bundle.js +7 -5
- package/dist/addon-mv3/manifest.json +1 -1
- package/dist/addon-mv3/rules.json +76 -174
- package/dist/autoconsent.cjs.js +5 -3
- package/dist/autoconsent.esm.js +5 -3
- package/dist/autoconsent.extra.cjs.js +7 -5
- package/dist/autoconsent.extra.esm.js +7 -5
- package/dist/autoconsent.playwright.js +83 -179
- package/lib/cmps/sourcepoint-frame.ts +11 -3
- package/lib/eval-snippets.ts +0 -1
- package/lib/filterlist-engine.ts +2 -2
- package/package.json +1 -1
- package/rules/autoconsent/aa.json +0 -6
- package/rules/autoconsent/affinity-serif-com.json +3 -17
- package/rules/autoconsent/consent-manager.json +36 -0
- package/rules/autoconsent/dpgmedia-nl.json +6 -6
- package/rules/autoconsent/ef-ccpa.json +29 -0
- package/rules/filterlist.txt +79 -418
- package/rules/rules.json +76 -174
- package/tests/aa.spec.ts +3 -1
- package/tests/admiral.spec.ts +1 -9
- package/tests/adroll.spec.ts +0 -2
- package/tests/aquasana-com.spec.ts +1 -5
- package/tests/consent-manager.spec.ts +3 -0
- package/tests/ef-ccpa.spec.ts +3 -0
- package/rules/autoconsent/192.json +0 -15
- package/rules/autoconsent/1password-com.json +0 -9
- package/rules/autoconsent/agolde-com.json +0 -9
- package/rules/autoconsent/almacmp.json +0 -13
- package/rules/autoconsent/altium-com.json +0 -9
- package/tests/192.spec.ts +0 -5
- package/tests/1password-com.spec.ts +0 -3
- package/tests/agolde-com.spec.ts +0 -3
- package/tests/almacmp.spec.ts +0 -3
- package/tests/altium-com.spec.ts +0 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
# v12.7.0 (Fri Jan 24 2025)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- Update EasyList Cookie to c9d3f97eb2e68f73a6648dcc76e607be41ed952c [#600](https://github.com/duckduckgo/autoconsent/pull/600) ([@sammacbeth](https://github.com/sammacbeth) [@github-actions[bot]](https://github.com/github-actions[bot]))
|
|
6
|
+
- Fix sourcepoint on the US version of theguardian.com [#598](https://github.com/duckduckgo/autoconsent/pull/598) ([@muodov](https://github.com/muodov))
|
|
7
|
+
- Cleaning up tests: 1-as [#597](https://github.com/duckduckgo/autoconsent/pull/597) ([@sammacbeth](https://github.com/sammacbeth))
|
|
8
|
+
- Add consent-manager rule [#542](https://github.com/duckduckgo/autoconsent/pull/542) ([@sammacbeth](https://github.com/sammacbeth))
|
|
9
|
+
- Add ef-ccpa rule [#545](https://github.com/duckduckgo/autoconsent/pull/545) ([@sammacbeth](https://github.com/sammacbeth))
|
|
10
|
+
- Fix dpgmedia rule https://gathering.tweakers.net/ [#596](https://github.com/duckduckgo/autoconsent/pull/596) ([@muodov](https://github.com/muodov))
|
|
11
|
+
|
|
12
|
+
#### Authors: 3
|
|
13
|
+
|
|
14
|
+
- [@github-actions[bot]](https://github.com/github-actions[bot])
|
|
15
|
+
- Maxim Tsoy ([@muodov](https://github.com/muodov))
|
|
16
|
+
- Sam Macbeth ([@sammacbeth](https://github.com/sammacbeth))
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
1
20
|
# v12.6.0 (Fri Jan 17 2025)
|
|
2
21
|
|
|
3
22
|
#### 🚀 Enhancement
|
|
@@ -55,7 +55,6 @@
|
|
|
55
55
|
// declarative rules
|
|
56
56
|
EVAL_ABC_TEST: () => document.cookie.includes("trackingconsent"),
|
|
57
57
|
EVAL_ADROLL_0: () => !document.cookie.includes("__adroll_fpc"),
|
|
58
|
-
EVAL_ALMACMP_0: () => document.cookie.includes('"name":"Google","consent":false'),
|
|
59
58
|
EVAL_AFFINITY_SERIF_COM_0: () => document.cookie.includes("serif_manage_cookies_viewed") && !document.cookie.includes("serif_allow_analytics"),
|
|
60
59
|
EVAL_ARBEITSAGENTUR_TEST: () => document.cookie.includes("cookie_consent=denied"),
|
|
61
60
|
EVAL_AXEPTIO_0: () => document.cookie.includes("axeptio_authorized_vendors=%2C%2C"),
|