@duckduckgo/autoconsent 14.0.0 → 14.0.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/workflows/privacy-config-pr.yml +2 -10
- package/CHANGELOG.md +14 -0
- package/dist/addon-firefox/manifest.json +1 -1
- package/dist/addon-firefox/rules.json +1 -1
- package/dist/addon-mv3/manifest.json +1 -1
- package/dist/addon-mv3/rules.json +1 -1
- package/dist/autoconsent.playwright.js +1 -1
- package/package.json +1 -1
- package/rules/autoconsent/termsfeed.json +24 -1
- package/rules/compact-rules.json +1 -1
- package/rules/rules.json +1 -1
- package/scripts/bundle-config-rules.mjs +1 -4
- package/tests/termsfeed.spec.ts +5 -1
|
@@ -24,20 +24,15 @@ jobs:
|
|
|
24
24
|
with:
|
|
25
25
|
path: autoconsent/
|
|
26
26
|
- uses: ./autoconsent/.github/actions/setup-release-scripts
|
|
27
|
-
|
|
28
27
|
- name: Checkout config
|
|
29
28
|
uses: actions/checkout@v3
|
|
30
29
|
with:
|
|
31
30
|
repository: duckduckgo/privacy-configuration
|
|
32
31
|
path: privacy-configuration/
|
|
33
|
-
token: ${{ secrets.
|
|
34
|
-
- uses: actions/setup-node@v3
|
|
35
|
-
with:
|
|
36
|
-
node-version: current
|
|
32
|
+
token: ${{ secrets.PRIVACY_CONFIG_PAT }}
|
|
37
33
|
- name: Build and compact rules
|
|
38
34
|
run: |
|
|
39
35
|
cd autoconsent
|
|
40
|
-
npm ci
|
|
41
36
|
npm run build-rules
|
|
42
37
|
npm run bundle-config-rules ../privacy-configuration
|
|
43
38
|
- name: Prepare and update privacy-config
|
|
@@ -45,19 +40,16 @@ jobs:
|
|
|
45
40
|
cd privacy-configuration
|
|
46
41
|
npm ci
|
|
47
42
|
npm run lint-fix
|
|
48
|
-
npm install @duckduckgo/autoconsent@${{ env.TAG }}
|
|
49
43
|
- name: Create config PR
|
|
50
44
|
uses: peter-evans/create-pull-request@v7
|
|
51
45
|
id: create-pr
|
|
52
46
|
with:
|
|
53
47
|
path: privacy-configuration/
|
|
54
48
|
add-paths: |
|
|
55
|
-
package.json
|
|
56
|
-
package-lock.json
|
|
57
49
|
overrides/*
|
|
58
50
|
features/autoconsent.json
|
|
59
51
|
commit-message: Update autoconsent to ${{ env.TAG }}
|
|
60
52
|
branch: update-autoconsent
|
|
61
53
|
title: Update autoconsent to ${{ env.TAG }}
|
|
62
54
|
body: ''
|
|
63
|
-
token: ${{ secrets.
|
|
55
|
+
token: ${{ secrets.PRIVACY_CONFIG_PAT }}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# v14.0.1 (Mon Jun 02 2025)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Add support for non-'reject-all' version of the termsfeed popup. [#750](https://github.com/duckduckgo/autoconsent/pull/750) ([@sammacbeth](https://github.com/sammacbeth) [@muodov](https://github.com/muodov))
|
|
6
|
+
- CI: Fix release PR to privacy config repo [#751](https://github.com/duckduckgo/autoconsent/pull/751) ([@sammacbeth](https://github.com/sammacbeth))
|
|
7
|
+
|
|
8
|
+
#### Authors: 2
|
|
9
|
+
|
|
10
|
+
- Maxim Tsoy ([@muodov](https://github.com/muodov))
|
|
11
|
+
- Sam Macbeth ([@sammacbeth](https://github.com/sammacbeth))
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
1
15
|
# v13.0.0 (Tue May 20 2025)
|
|
2
16
|
|
|
3
17
|
#### 💥 Breaking Change
|