@duckduckgo/autoconsent 6.4.0 → 6.4.1
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/dependabot.yml +5 -0
- package/CHANGELOG.md +25 -0
- package/data/coverage.json +772 -758
- package/dist/addon-firefox/content.bundle.js +6 -6
- package/dist/addon-firefox/manifest.json +1 -1
- package/dist/addon-mv3/content.bundle.js +6 -6
- package/dist/addon-mv3/manifest.json +1 -1
- package/dist/autoconsent.cjs.js +6 -6
- package/dist/autoconsent.esm.js +6 -6
- package/dist/autoconsent.playwright.js +1 -1
- package/lib/cmps/base.ts +0 -1
- package/lib/cmps/sourcepoint-frame.ts +9 -5
- package/lib/config.ts +1 -0
- package/lib/rule-executors.ts +1 -1
- package/lib/web.ts +1 -2
- package/package.json +4 -4
- package/tests/sourcepoint.spec.ts +1 -0
package/.github/dependabot.yml
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
# v6.4.1 (Mon Nov 27 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- CCPA fix for Sourcepoint [#302](https://github.com/duckduckgo/autoconsent/pull/302) ([@muodov](https://github.com/muodov))
|
|
6
|
+
- Group dependabot PRs [#299](https://github.com/duckduckgo/autoconsent/pull/299) ([@sammacbeth](https://github.com/sammacbeth))
|
|
7
|
+
- Monthly Coverage data update [#293](https://github.com/duckduckgo/autoconsent/pull/293) (dax@duckduckgo.com [@sammacbeth](https://github.com/sammacbeth))
|
|
8
|
+
|
|
9
|
+
#### 🔩 Dependency Updates
|
|
10
|
+
|
|
11
|
+
- Bump the dev-dependencies group with 6 updates [#300](https://github.com/duckduckgo/autoconsent/pull/300) ([@dependabot[bot]](https://github.com/dependabot[bot]))
|
|
12
|
+
- Bump typescript from 5.2.2 to 5.3.2 [#298](https://github.com/duckduckgo/autoconsent/pull/298) ([@dependabot[bot]](https://github.com/dependabot[bot]))
|
|
13
|
+
- Bump eslint from 8.53.0 to 8.54.0 [#297](https://github.com/duckduckgo/autoconsent/pull/297) ([@dependabot[bot]](https://github.com/dependabot[bot]))
|
|
14
|
+
- Bump esbuild from 0.19.5 to 0.19.6 [#295](https://github.com/duckduckgo/autoconsent/pull/295) ([@dependabot[bot]](https://github.com/dependabot[bot]))
|
|
15
|
+
- Bump @playwright/test from 1.39.0 to 1.40.0 [#294](https://github.com/duckduckgo/autoconsent/pull/294) ([@dependabot[bot]](https://github.com/dependabot[bot]))
|
|
16
|
+
|
|
17
|
+
#### Authors: 4
|
|
18
|
+
|
|
19
|
+
- [@dependabot[bot]](https://github.com/dependabot[bot])
|
|
20
|
+
- Dax the Deployer (dax@duckduckgo.com)
|
|
21
|
+
- Maxim Tsoy ([@muodov](https://github.com/muodov))
|
|
22
|
+
- Sam Macbeth ([@sammacbeth](https://github.com/sammacbeth))
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
1
26
|
# v6.4.0 (Mon Nov 20 2023)
|
|
2
27
|
|
|
3
28
|
#### 🚀 Enhancement
|