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.
|
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.
|
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
|
# 7.1
|
||||||
|
|
||||||
**target commit**:
|
**target commit**:
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
*
|
*
|
||||||
* WARNING: make sure the first line of this file is empty. this is a known bug.
|
* 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
|
/** INDEX
|
||||||
|
|
@ -193,9 +193,7 @@ defaultPref("security.OCSP.require", true); // set to hard-fail, might cause SEC
|
||||||
/** [SECTION] TLS/SSL */
|
/** [SECTION] TLS/SSL */
|
||||||
pref("security.tls.enable_0rtt_data", false); // disable 0 RTT to improve tls 1.3 security
|
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()
|
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.xul.error_pages.expert_bad_cert", true); // 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);
|
|
||||||
|
|
||||||
/** [SECTION] PERMISSIONS */
|
/** [SECTION] PERMISSIONS */
|
||||||
pref("permissions.delegation.enabled", false); // force permission request to show real origin
|
pref("permissions.delegation.enabled", false); // force permission request to show real origin
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue