@duckduckgo/autoconsent 6.2.0 → 6.4.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 +42 -0
- package/data/coverage.json +820 -793
- package/dist/addon-firefox/content.bundle.js +14 -6
- package/dist/addon-firefox/manifest.json +1 -1
- package/dist/addon-firefox/rules.json +105 -2
- package/dist/addon-mv3/content.bundle.js +14 -6
- package/dist/addon-mv3/manifest.json +1 -1
- package/dist/addon-mv3/rules.json +105 -2
- package/dist/autoconsent.cjs.js +14 -6
- package/dist/autoconsent.esm.js +14 -6
- package/dist/autoconsent.playwright.js +1 -1
- package/lib/cmps/onetrust.ts +13 -9
- package/lib/eval-snippets.ts +2 -0
- package/lib/web.ts +4 -0
- package/package.json +3 -3
- package/rules/autoconsent/cc-banner-springer.json +26 -0
- package/rules/autoconsent/takealot-com.json +7 -2
- package/rules/autoconsent/zdf.json +9 -0
- package/rules/rules.json +105 -2
- package/tests/cc-banner-springer.spec.ts +6 -0
- package/tests/onetrust.spec.ts +0 -1
- package/tests/takealot-com.spec.ts +9 -1
- package/tests/zdf.spec.ts +5 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,45 @@
|
|
|
1
|
+
# v6.4.0 (Mon Nov 20 2023)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- Add a rule for nature.com [#290](https://github.com/duckduckgo/autoconsent/pull/290) ([@muodov](https://github.com/muodov))
|
|
6
|
+
|
|
7
|
+
#### 🐛 Bug Fix
|
|
8
|
+
|
|
9
|
+
- Takealot fix [#292](https://github.com/duckduckgo/autoconsent/pull/292) ([@muodov](https://github.com/muodov))
|
|
10
|
+
- Monthly Coverage data update [#289](https://github.com/duckduckgo/autoconsent/pull/289) (dax@duckduckgo.com [@sammacbeth](https://github.com/sammacbeth))
|
|
11
|
+
|
|
12
|
+
#### Authors: 3
|
|
13
|
+
|
|
14
|
+
- Dax the Deployer (dax@duckduckgo.com)
|
|
15
|
+
- Maxim Tsoy ([@muodov](https://github.com/muodov))
|
|
16
|
+
- Sam Macbeth ([@sammacbeth](https://github.com/sammacbeth))
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
# v6.3.0 (Tue Nov 14 2023)
|
|
21
|
+
|
|
22
|
+
#### 🚀 Enhancement
|
|
23
|
+
|
|
24
|
+
- Some optimizations [#283](https://github.com/duckduckgo/autoconsent/pull/283) ([@muodov](https://github.com/muodov))
|
|
25
|
+
- Bump web-ext from 7.7.0 to 7.8.0 [#284](https://github.com/duckduckgo/autoconsent/pull/284) ([@dependabot[bot]](https://github.com/dependabot[bot]))
|
|
26
|
+
|
|
27
|
+
#### 🐛 Bug Fix
|
|
28
|
+
|
|
29
|
+
- Bump chai and @types/chai [#285](https://github.com/duckduckgo/autoconsent/pull/285) ([@dependabot[bot]](https://github.com/dependabot[bot]))
|
|
30
|
+
- Bump @types/mocha from 10.0.1 to 10.0.4 [#286](https://github.com/duckduckgo/autoconsent/pull/286) ([@dependabot[bot]](https://github.com/dependabot[bot]))
|
|
31
|
+
|
|
32
|
+
#### 🔩 Dependency Updates
|
|
33
|
+
|
|
34
|
+
- Bump @types/chrome from 0.0.245 to 0.0.251 [#287](https://github.com/duckduckgo/autoconsent/pull/287) ([@dependabot[bot]](https://github.com/dependabot[bot]))
|
|
35
|
+
|
|
36
|
+
#### Authors: 2
|
|
37
|
+
|
|
38
|
+
- [@dependabot[bot]](https://github.com/dependabot[bot])
|
|
39
|
+
- Maxim Tsoy ([@muodov](https://github.com/muodov))
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
1
43
|
# v6.2.0 (Fri Nov 10 2023)
|
|
2
44
|
|
|
3
45
|
#### 🚀 Enhancement
|