This is an automated email from the git hooks/post-receive script.
pierov pushed a change to branch tor-browser-102.2.0esr-12.0-1 in repository tor-browser.
from 3a79382bda2a4 fixup! Bug 10760: Integrate TorButton to TorBrowser core new 294e26eec8fa1 fixup! Firefox preference overrides. new 0b39923ea81c0 squash! Bug 40562: Added Tor-related preferences to 000-tor-browser.js
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference.
Summary of changes: browser/app/profile/000-tor-browser.js | 4 ++++ browser/app/profile/001-base-profile.js | 2 -- 2 files changed, 4 insertions(+), 2 deletions(-)
This is an automated email from the git hooks/post-receive script.
pierov pushed a commit to branch tor-browser-102.2.0esr-12.0-1 in repository tor-browser.
commit 294e26eec8fa1508832c2d4ed193faa906295dca Author: Pier Angelo Vendrame pierov@torproject.org AuthorDate: Tue Aug 30 11:28:28 2022 +0200
fixup! Firefox preference overrides.
Enable HTTP/3 for Base Browser --- browser/app/profile/001-base-profile.js | 2 -- 1 file changed, 2 deletions(-)
diff --git a/browser/app/profile/001-base-profile.js b/browser/app/profile/001-base-profile.js index 48ecfd4763692..3cfdc30c5564b 100644 --- a/browser/app/profile/001-base-profile.js +++ b/browser/app/profile/001-base-profile.js @@ -302,8 +302,6 @@ pref("network.connectivity-service.enabled", false); // As a "defense in depth" measure, configure an empty push server URL (the // DOM Push features are disabled by default via other prefs). pref("dom.push.serverURL", ""); -// Bug 40423: Disable http/3 -pref("network.http.http3.enabled", false);
// Extension support pref("extensions.autoDisableScopes", 0);
This is an automated email from the git hooks/post-receive script.
pierov pushed a commit to branch tor-browser-102.2.0esr-12.0-1 in repository tor-browser.
commit 0b39923ea81c002f2ae992d43ea5a62e71739c4b Author: Pier Angelo Vendrame pierov@torproject.org AuthorDate: Tue Aug 30 11:28:57 2022 +0200
squash! Bug 40562: Added Tor-related preferences to 000-tor-browser.js
Bug 41137: Disable HTTP/3 until UDP is available in Tor. --- browser/app/profile/000-tor-browser.js | 4 ++++ 1 file changed, 4 insertions(+)
diff --git a/browser/app/profile/000-tor-browser.js b/browser/app/profile/000-tor-browser.js index c47a4e509525f..9a269f5a96328 100644 --- a/browser/app/profile/000-tor-browser.js +++ b/browser/app/profile/000-tor-browser.js @@ -32,6 +32,10 @@ pref("browser.uiCustomization.state", "{"placements":{"widget-overflow-fixed- // Treat .onions as secure pref("dom.securecontext.allowlist_onions", true);
+// Bug 40423/41137: Disable http/3 +// We should re-enable it as soon as Tor gets UDP support +pref("network.http.http3.enabled", false); + #expand pref("torbrowser.version", __TOR_BROWSER_VERSION_QUOTED__);
// Old torbutton prefs
tbb-commits@lists.torproject.org