diff options
author | Tomas Krizek <tomas.krizek@nic.cz> | 2021-05-27 15:20:53 +0200 |
---|---|---|
committer | Tomas Krizek <tomas.krizek@nic.cz> | 2021-05-31 15:38:15 +0200 |
commit | 6d1a878e7874423f157d63a06ccb0967de797f69 (patch) | |
tree | d21ca86e82d6702c0e4e415874e489b81acc9f05 /doc | |
parent | Merge branch 'improve-assertions' into 'master' (diff) | |
download | knot-resolver-6d1a878e7874423f157d63a06ccb0967de797f69.tar.xz knot-resolver-6d1a878e7874423f157d63a06ccb0967de797f69.zip |
rename kind="doh" to kind="doh_legacy"
The purpose of this change is to make it harder to accidentally use the
legacy DoH implementation and free up the "doh" kind which may be used
as an alias to a modern implementation in the future.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/upgrading.rst | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/doc/upgrading.rst b/doc/upgrading.rst index ff739f7a..497b2225 100644 --- a/doc/upgrading.rst +++ b/doc/upgrading.rst @@ -18,9 +18,6 @@ Following section provides information about selected changes in not-yet-release We advise users to prepare for these changes sooner rather than later to make it easier to upgrade to newer versions when they are released. -* Going forward DNS-over-HTTP (DoH) will be supported only over HTTP/2 with TLS. - This limitation allows us to provide a new :ref:`more reliable and scalable implementation - of DoH <dns-over-https>` (``kind='doh2'``). * Command line option ``--forks`` (``-f``) `is deprecated and will be eventually removed <https://gitlab.nic.cz/knot/knot-resolver/-/issues/631>`_. Preferred way to manage :ref:`systemd-multiple-instances` is to use a process manager, @@ -29,6 +26,13 @@ newer versions when they are released. .. _`systemd`: https://systemd.io/ .. _`supervisord`: http://supervisord.org/ +5.3 to 5.4 +========== + +Configuration file +------------------ + +* ``kind='doh'`` in :func:`net.listen` was renamed to ``kind='doh_legacy'``. It is recommended to switch to the new DoH implementation with ``kind='doh2'``. 5.2 to 5.3 ========== |