Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d9876e2d authored by csagan5's avatar csagan5
Browse files

Release 90.0.4430.101

parent 38eeb63d
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
# 90.0.4430.101
* disable RTCGetCurrentBrowsingContextMedia by default
* disable FLoC by default

# 90.0.4430.92
* restore horizontal tab switcher feature (fixes https://github.com/bromite/bromite/issues/1077)
* fix a couple of bugs in proxy saving UI (thanks to @uazo, fixes https://github.com/bromite/bromite/issues/1072)
+2 −0
Original line number Diff line number Diff line
@@ -60,6 +60,8 @@ ETH donations address: `0xf47ff39223d828f99fec5ab53bd068c5c0522042`
* ignore enterprise policies that disallow secure DNS
* ask permission to play protected media
* disable the DIAL repeating discovery
* disable RTCGetCurrentBrowsingContextMedia by default
* disable FLoC by default

## Features not related to privacy
* import/export bookmarks
+1 −1
Original line number Diff line number Diff line
90.0.4430.92
90.0.4430.101
+2 −0
Original line number Diff line number Diff line
@@ -148,4 +148,6 @@ Remove-offline-measurement-background-task.patch
User-agent-customization.patch
Add-AllowUserCertificates-flag.patch
Add-IsCleartextPermitted-flag.patch
Disable-RTCGetCurrentBrowsingContextMedia-by-default.patch
Disable-FLoC-by-default.patch
Automated-domain-substitution.patch
+25 −0
Original line number Diff line number Diff line
From: csagan5 <32685696+csagan5@users.noreply.github.com>
Date: Thu, 29 Apr 2021 20:28:16 +0200
Subject: Disable FLoC by default

This is redundant since the privacy sandbox is already disabled by default,
but added as an extra measure
---
 components/federated_learning/features/features.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/federated_learning/features/features.cc b/components/federated_learning/features/features.cc
--- a/components/federated_learning/features/features.cc
+++ b/components/federated_learning/features/features.cc
@@ -24,7 +24,7 @@ const base::Feature kFlocIdSortingLshBasedComputation{
 // required.
 // TODO(yaoxia): merge other floc features into this one.
 const base::Feature kFederatedLearningOfCohorts{
-    "FederatedLearningOfCohorts", base::FEATURE_ENABLED_BY_DEFAULT};
+    "FederatedLearningOfCohorts", base::FEATURE_DISABLED_BY_DEFAULT};
 constexpr base::FeatureParam<base::TimeDelta> kFlocIdScheduledUpdateInterval{
     &kFederatedLearningOfCohorts, "update_interval",
     base::TimeDelta::FromDays(7)};
-- 
2.17.1
Loading