@duckduckgo/autoconsent 6.4.3 → 6.5.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 +26 -0
- package/data/coverage.json +1243 -1245
- package/dist/addon-firefox/content.bundle.js +1 -0
- package/dist/addon-firefox/rules.json +71 -32
- package/dist/addon-mv3/content.bundle.js +1 -0
- package/dist/addon-mv3/rules.json +71 -32
- package/dist/autoconsent.cjs.js +1 -0
- package/dist/autoconsent.esm.js +1 -0
- package/dist/autoconsent.playwright.js +1 -1
- package/lib/eval-snippets.ts +1 -0
- package/lib/rules.ts +15 -15
- package/package.json +2 -2
- package/rules/autoconsent/blocksy.json +36 -0
- package/rules/autoconsent/civic-cookie-control.json +1 -1
- package/rules/autoconsent/{arzt-auskunft-de.json → cookie-script.json} +2 -1
- package/rules/autoconsent/google-consent-standalone.json +3 -3
- package/rules/autoconsent/jquery-cookiebar.json +1 -1
- package/rules/autoconsent/testcmp.json +1 -1
- package/rules/autoconsent/wp-cookie-notice.json +1 -1
- package/rules/create-rule.mjs +13 -3
- package/rules/rules.json +71 -32
- package/tests/blocksy.spec.ts +6 -0
- package/tests/{arzt-auskunft.spec.ts → cookie-script.spec.ts} +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
# v6.5.0 (Tue Dec 19 2023)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- Blocksy CMP [#313](https://github.com/duckduckgo/autoconsent/pull/313) ([@muodov](https://github.com/muodov))
|
|
6
|
+
|
|
7
|
+
#### 🐛 Bug Fix
|
|
8
|
+
|
|
9
|
+
- Do not click on the youtube consent page [#311](https://github.com/duckduckgo/autoconsent/pull/311) ([@muodov](https://github.com/muodov))
|
|
10
|
+
- Monthly Coverage data update [#307](https://github.com/duckduckgo/autoconsent/pull/307) (dax@duckduckgo.com [@sammacbeth](https://github.com/sammacbeth))
|
|
11
|
+
|
|
12
|
+
#### 🔩 Dependency Updates
|
|
13
|
+
|
|
14
|
+
- Bump the dev-dependencies group with 3 updates [#312](https://github.com/duckduckgo/autoconsent/pull/312) ([@dependabot[bot]](https://github.com/dependabot[bot]))
|
|
15
|
+
- Bump the dev-dependencies group with 5 updates [#309](https://github.com/duckduckgo/autoconsent/pull/309) ([@dependabot[bot]](https://github.com/dependabot[bot]))
|
|
16
|
+
- Bump the dev-dependencies group with 5 updates [#308](https://github.com/duckduckgo/autoconsent/pull/308) ([@dependabot[bot]](https://github.com/dependabot[bot]))
|
|
17
|
+
|
|
18
|
+
#### Authors: 4
|
|
19
|
+
|
|
20
|
+
- [@dependabot[bot]](https://github.com/dependabot[bot])
|
|
21
|
+
- Dax the Deployer (dax@duckduckgo.com)
|
|
22
|
+
- Maxim Tsoy ([@muodov](https://github.com/muodov))
|
|
23
|
+
- Sam Macbeth ([@sammacbeth](https://github.com/sammacbeth))
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
1
27
|
# v6.4.3 (Mon Dec 04 2023)
|
|
2
28
|
|
|
3
29
|
#### 🐛 Bug Fix
|