@duckduckgo/autoconsent 14.13.1 → 14.14.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/.github/workflows/release.yml +25 -0
- package/CHANGELOG.md +27 -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/compact-rules.json +1 -1
- package/rules/generated/auto_AU_bbc.destination-x-game.com_sys.json +38 -0
- package/rules/generated/auto_AU_getteal.com_y3e.json +38 -0
- package/rules/generated/auto_AU_pewresearch.org_g4c.json +38 -0
- package/rules/generated/auto_AU_screen.studio_z0u.json +38 -0
- package/rules/rules.json +1 -1
- package/tests/generated/auto_AU_bbc.destination-x-game.com_sys.spec.ts +6 -0
- package/tests/generated/auto_AU_getteal.com_y3e.spec.ts +2 -0
- package/tests/generated/auto_AU_pewresearch.org_g4c.spec.ts +6 -0
- package/tests/generated/auto_AU_screen.studio_z0u.spec.ts +2 -0
|
@@ -6,8 +6,33 @@ on:
|
|
|
6
6
|
workflow_dispatch:
|
|
7
7
|
|
|
8
8
|
jobs:
|
|
9
|
+
check-for-commits:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
outputs:
|
|
12
|
+
ci_skip: ${{ steps.check_commits.outputs.ci_skip }}
|
|
13
|
+
steps:
|
|
14
|
+
- name: Checkout code
|
|
15
|
+
uses: actions/checkout@v2
|
|
16
|
+
|
|
17
|
+
- name: Check for new commits and CI skip
|
|
18
|
+
id: check_commits
|
|
19
|
+
run: |
|
|
20
|
+
git fetch origin main
|
|
21
|
+
latest_commit_message=$(git log -1 --pretty=%B HEAD)
|
|
22
|
+
echo "Latest commit message: $latest_commit_message"
|
|
23
|
+
|
|
24
|
+
if [[ "$latest_commit_message" == *"[ci skip]"* || "$latest_commit_message" == *"[skip ci]"* ]]; then
|
|
25
|
+
echo "CI skip detected in the latest commit message."
|
|
26
|
+
echo "ci_skip=true" >> $GITHUB_OUTPUT
|
|
27
|
+
else
|
|
28
|
+
echo "No CI skip detected."
|
|
29
|
+
echo "ci_skip=false" >> $GITHUB_OUTPUT
|
|
30
|
+
fi
|
|
31
|
+
|
|
9
32
|
release:
|
|
10
33
|
runs-on: ubuntu-latest
|
|
34
|
+
needs: check-for-commits
|
|
35
|
+
if: ${{ needs.check-for-commits.outputs.ci_skip == 'false' }}
|
|
11
36
|
outputs:
|
|
12
37
|
tag_name: ${{ steps.remember_tag.outputs.tag_name }}
|
|
13
38
|
steps:
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,30 @@
|
|
|
1
|
+
# v14.14.0 (Wed Aug 20 2025)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- Bump the dev-dependencies group with 4 updates [#909](https://github.com/duckduckgo/autoconsent/pull/909) ([@dependabot[bot]](https://github.com/dependabot[bot]))
|
|
6
|
+
|
|
7
|
+
#### 🐛 Bug Fix
|
|
8
|
+
|
|
9
|
+
- Prevent release if the last commit has [ci skip] (i.e. is is a release commit). [#907](https://github.com/duckduckgo/autoconsent/pull/907) ([@sammacbeth](https://github.com/sammacbeth))
|
|
10
|
+
- 🤖 Add autoconsent rules for 1 sites (0 requiring review) [#906](https://github.com/duckduckgo/autoconsent/pull/906) ([@daxtheduck](https://github.com/daxtheduck))
|
|
11
|
+
- 🤖 Add autoconsent rules for 1 sites (0 requiring review) [#903](https://github.com/duckduckgo/autoconsent/pull/903) ([@daxtheduck](https://github.com/daxtheduck))
|
|
12
|
+
- 🤖 Add autoconsent rules for 1 sites (0 requiring review) [#902](https://github.com/duckduckgo/autoconsent/pull/902) ([@daxtheduck](https://github.com/daxtheduck))
|
|
13
|
+
- 🤖 Add autoconsent rules for 1 sites (0 requiring review) [#901](https://github.com/duckduckgo/autoconsent/pull/901) ([@daxtheduck](https://github.com/daxtheduck))
|
|
14
|
+
|
|
15
|
+
#### ⚠️ Pushed to `main`
|
|
16
|
+
|
|
17
|
+
- disable nightly releases ([@muodov](https://github.com/muodov))
|
|
18
|
+
|
|
19
|
+
#### Authors: 4
|
|
20
|
+
|
|
21
|
+
- [@dependabot[bot]](https://github.com/dependabot[bot])
|
|
22
|
+
- Dax ([@daxtheduck](https://github.com/daxtheduck))
|
|
23
|
+
- Maxim Tsoy ([@muodov](https://github.com/muodov))
|
|
24
|
+
- Sam Macbeth ([@sammacbeth](https://github.com/sammacbeth))
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
1
28
|
# v14.13.1 (Fri Aug 15 2025)
|
|
2
29
|
|
|
3
30
|
|