summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-03-19 15:59:48 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-03-19 17:59:47 +0100
commitca979e9969b34485f87efc33bc2d8547c5f9cf68 (patch)
tree30a3b212295ca3953e8c35f3ce045091968df976
parent147eb058b97faf47b186d105b9adf91cb1306b58 (diff)
downloadqutebrowser-ca979e9969b34485f87efc33bc2d8547c5f9cf68.tar.gz
qutebrowser-ca979e9969b34485f87efc33bc2d8547c5f9cf68.zip
Update changelog
-rw-r--r--doc/changelog.asciidoc12
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/changelog.asciidoc b/doc/changelog.asciidoc
index 9ada74f7e..4b9a27104 100644
--- a/doc/changelog.asciidoc
+++ b/doc/changelog.asciidoc
@@ -35,6 +35,18 @@ Added
Changed
~~~~~~~
+- The `content.ssl_strict` setting got renamed to
+ `content.tls.certificate_errors`, with new values:
+ * `ask`: Prompt on overridable certificate errors (`ssl_strict = 'ask'`)
+ * `ask-block-thirdparty`: See below
+ * `block`: Block the page load (`ssl_strict = True`)
+ * `load-insecurely`: Load the page despite the error (`ssl_strict = False`)
+- The new `content.tls.certificate_errors` setting now also understands the
+ value `ask-block-thirdparty`, which asks for page loads but automatically blocks
+ resource loads on TLS errors. This behavior is consistent with what other
+ browsers do.
+- The prompt text shown on certificate errors has been improved to make it
+ clearer what kind of error occured exactly.
- The completion now also shows bindings starting with `set-cmd-text` in its
third column, such as `o` for `:open`.