-
Notifications
You must be signed in to change notification settings - Fork 519
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ToDo: diffs FF52-FF53 #47
Comments
Passive TrackingProtectionLower priority of HTTP requests for resources on the Tracking Protection list ( RESOLVED FIXED in FF53 )
Part 1: Enable to update TP list if TP is disabled // Annotate channels based on the tracking protection list in all modes
pref("privacy.trackingprotection.annotate_channels", false); Add a passive (detection only) mode for Tracking Protection ( RESOLVED FIXED in FF53 ) // Lower the priority of network loads for resources on the tracking protection list.
// Note that this requires the privacy.trackingprotection.annotate_channels pref to be on in order to have any effect.
pref("privacy.trackingprotection.lower_network_priority", false); |
services.blocklist.pinning.*Create a services client for augmenting the PKP preload list between releases
https://bugzilla.mozilla.org/show_bug.cgi?id=1306470#c12 :
pref("services.blocklist.pinning.enabled", true);
pref("services.blocklist.pinning.bucket", "pinning");
pref("services.blocklist.pinning.collection", "pins");
pref("services.blocklist.pinning.checked", 0); |
from those pages:
it seems to be only used by WebGL and we can safely ignore this pref IMO. |
|
=> add this to 2706
=> the default empty string seems fine since we strongly recommend not to use Flash. IMO we can ignore this pref. If we care about Flash now, we probably also need to look at
|
https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API https://bugzilla.mozilla.org/show_bug.cgi?id=1243846
https://bugzilla.mozilla.org/show_bug.cgi?id=1321865
https://wicg.github.io/IntersectionObserver/
|
/* 2426: disable Intersection Observer API (FF53+)
* [1] https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API
* [2] https://wicg.github.io/IntersectionObserver/
* [3] https://bugzilla.mozilla.org/show_bug.cgi?id=1243846 ***/
user_pref("dom.IntersectionObserver.enabled", false); or /* 2426: disable Intersection Observer API (FF53+)
* [1] https://github.com/ghacksuserjs/ghacks-user.js/issues/47#issuecomment-293303172 ***/
user_pref("dom.IntersectionObserver.enabled", false); Maybe add a note about this allowing for pixel-accurate information about what was actually displayed /* 3027: decode URLs on copy from the URL bar (FF53+)
* [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1320061 ***/
user_pref("browser.urlbar.decodeURLsOnCopy", true); /* 0403: disable augmenting the PKP preload list between releases (FF53+)
* [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1306470#c12 ***/
// user_pref("services.blocklist.pinning.enabled", false); => commented out or active, idc - you decide /* 0422: disable passive TrackingProtection (FF53+)
* [1] https://github.com/ghacksuserjs/ghacks-user.js/issues/47#issuecomment-285638216 ***/
user_pref("privacy.trackingprotection.annotate_channels", false);
user_pref("privacy.trackingprotection.lower_network_priority", false); -> maybe add a note that this requires some URL prefs (0410d ??) are left intact ? |
changes between FF53 beta9 and FF53.0 stable not changed anymore in stable:
changed in stable:
|
curiously it sent the requests twice, once with |
A1 - mozilla - kinto? yes |
The feature of getting pinning updates between FF releases is totally independent of the remaining kinto updates. To kill the whole thing you could just clear the URL pref and all the collection prefs and services.blocklist.update_enabled or set the interval to a gazillion years or something. And then there's also extensions.blocklist.enabled. Currently (and I suspect it will stay that way) the pinning data update list is empty. But it does 10 additional requests every 24 hours (11 if you count the ocsp request), basically for no reason because there's nothing to update. (Quiet fox etc) |
v52.0 vs v53.0
133 diffs ( 74 new, 38 gone, 21 different )
new in v53.0:
2671
551427f1606
removed, renamed or hidden in v53.0:
See d87bcfd
132273613295622d7af132a40c1317109131711013171081130670changed in v53.0:
(striked ones changed in a beta version but the change didn't land in stable)
pref("browser.crashReports.unsubmittedCheck.enabled", true); // prev: false0351
pref("browser.migrate.automigrate.enabled", true); // prev: false3023
0410c
2022
0608
already keeping an eye on
(sticky: items to investigate keep an eye on #20)pref("security.tls.version.max", 4); // prev: 31202
2011
ignore
==NEW
==REMOVED or HIDDEN
==CHANGED
The text was updated successfully, but these errors were encountered: