@duckduckgo/autoconsent 14.85.1 → 14.85.2
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/AGENTS.md +11 -0
- package/CHANGELOG.md +4 -2
- package/package.json +1 -1
package/AGENTS.md
CHANGED
|
@@ -150,6 +150,17 @@ Use the `/publicwww-search` skill to search website source code for CMP-specific
|
|
|
150
150
|
|
|
151
151
|
Requires `PUBLICWWW_KEY` environment variable.
|
|
152
152
|
|
|
153
|
+
## Checking for Existing Site Exceptions in `privacy-configuration`
|
|
154
|
+
|
|
155
|
+
Some sites have autoconsent disabled entirely via the `duckduckgo/privacy-configuration` repo. Before investigating a reported popup, check whether an exception already exists for the domain in:
|
|
156
|
+
|
|
157
|
+
- `features/autoconsent.json`
|
|
158
|
+
- `overrides/{android,ios,macos,windows,extension}-override.json` and any files under `overrides/browsers/`
|
|
159
|
+
|
|
160
|
+
**Do NOT rely on `gh search code` for this lookup.** GitHub's code search index has a per-file size limit and `features/autoconsent.json` is excluded — searches for the domain there silently return zero hits even when an exception exists.
|
|
161
|
+
|
|
162
|
+
Instead, fetch the file directly and grep locally, and/or list PRs by title.
|
|
163
|
+
|
|
153
164
|
## Verification
|
|
154
165
|
|
|
155
166
|
After creating or modifying a rule:
|
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
|
-
# v14.85.1 (
|
|
1
|
+
# v14.85.1 (Fri May 29 2026)
|
|
2
2
|
|
|
3
3
|
#### 🐛 Bug Fix
|
|
4
4
|
|
|
5
|
+
- Document a caveat for config search [#1367](https://github.com/duckduckgo/autoconsent/pull/1367) ([@muodov](https://github.com/muodov))
|
|
5
6
|
- Coverage data update [#1353](https://github.com/duckduckgo/autoconsent/pull/1353) ([@daxtheduck](https://github.com/daxtheduck))
|
|
6
7
|
|
|
7
|
-
#### Authors:
|
|
8
|
+
#### Authors: 2
|
|
8
9
|
|
|
9
10
|
- Dax ([@daxtheduck](https://github.com/daxtheduck))
|
|
11
|
+
- Maxim Tsoy ([@muodov](https://github.com/muodov))
|
|
10
12
|
|
|
11
13
|
---
|
|
12
14
|
|