deprecate browser.ssl_override_behavior
This commit is contained in:
parent
33e1ec1cb9
commit
7211e954b8
2 changed files with 18 additions and 4 deletions
|
|
@ -1,6 +1,22 @@
|
|||
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.
|
||||
|
||||
# 7.2
|
||||
|
||||
**target commit**:
|
||||
|
||||
**base librewolf version**:
|
||||
|
||||
**References**:
|
||||
|
||||
-
|
||||
|
||||
#### Removed preferences
|
||||
|
||||
```
|
||||
defaultPref("browser.ssl_override_behavior", 1); // deprecated
|
||||
```
|
||||
|
||||
# 7.1
|
||||
|
||||
**target commit**:
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
*
|
||||
* WARNING: make sure the first line of this file is empty. this is a known bug.
|
||||
*/
|
||||
lockpref("librewolf.cfg.version", "7.1");
|
||||
lockpref("librewolf.cfg.version", "7.2");
|
||||
|
||||
|
||||
/** INDEX
|
||||
|
|
@ -193,9 +193,7 @@ defaultPref("security.OCSP.require", true); // set to hard-fail, might cause SEC
|
|||
/** [SECTION] TLS/SSL */
|
||||
pref("security.tls.enable_0rtt_data", false); // disable 0 RTT to improve tls 1.3 security
|
||||
pref("security.tls.version.enable-deprecated", false); // make TLS downgrades session only by enforcing it with pref()
|
||||
// show relevant and advanced issues on warnings and error screens
|
||||
defaultPref("browser.ssl_override_behavior", 1);
|
||||
defaultPref("browser.xul.error_pages.expert_bad_cert", true);
|
||||
defaultPref("browser.xul.error_pages.expert_bad_cert", true); // show relevant and advanced issues on warnings and error screens
|
||||
|
||||
/** [SECTION] PERMISSIONS */
|
||||
pref("permissions.delegation.enabled", false); // force permission request to show real origin
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue