query stripping is now part of strict mode

This commit is contained in:
fxbrit 2022-05-22 12:33:23 +02:00
parent 9208d987d8
commit c03021ef29
2 changed files with 9 additions and 3 deletions

View file

@ -1,6 +1,13 @@
This changelog will be used from now on to document changes in a precise manner, with a list of changes for each setting version.
Setting versions are documented using the pref `librewolf.cfg.version`, available in about:config.
# 6.5
#### Removed preferences
```
defaultPref("privacy.query_stripping.enabled", true);
```
# 6.4
**target commit**: eea09ca07333dc166213fa9c873e4916d979e97f

View file

@ -36,6 +36,7 @@ defaultPref("librewolf.cfg.version", "6.4");
* 3. shims to avoid breakage caused by blocking lists
* 4. stricter policies for xorigin referrers
* 5. dFPI specific cookie cleaning mechanism
* 6. query stripping
*
* the desired category must be set with pref() otherwise it won't stick.
* the UI that allows to change mode manually is hidden.
@ -79,11 +80,9 @@ defaultPref("browser.sessionstore.privacy_level", 2); // prevent websites from s
defaultPref("browser.sessionstore.interval", 60000); // increase time between session saves
/** [SECTION] QUERY STRIPPING
* enable query stripping and set the strip list.
* currently we use the same one that brave uses:
* currently we set the same query stripping list that brave uses:
* https://github.com/brave/brave-core/blob/f337a47cf84211807035581a9f609853752a32fb/browser/net/brave_site_hacks_network_delegate_helper.cc#L29
*/
defaultPref("privacy.query_stripping.enabled", true);
defaultPref("privacy.query_stripping.strip_list", "__hsfp __hssc __hstc __s _hsenc _openstat dclid fbclid gbraid gclid hsCtaTracking igshid mc_eid ml_subscriber ml_subscriber_hash msclkid oly_anon_id oly_enc_id rb_clickid s_cid twclid vero_conv vero_id wbraid wickedid yclid");
/**
* librewolf specific pref that allows to include the query stripping lists in uBO by default.