From d3fa7e19302c5b3573b59723cc94daebdc188eca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20K=C4=99pie=C5=84?= Date: Fri, 2 Jun 2023 12:17:16 +0200 Subject: [PATCH 1/3] Re-add a code comment to the "hooks" system test Commit da74157440e02bd52e0abe6036e4e9ec7316ebd2 removed a useful code comment from the "hooks" system test. Add it back to prevent confusion. --- bin/tests/system/hooks/tests_async_plugin.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/tests/system/hooks/tests_async_plugin.py b/bin/tests/system/hooks/tests_async_plugin.py index 48f9feefbd..2f42e27379 100644 --- a/bin/tests/system/hooks/tests_async_plugin.py +++ b/bin/tests/system/hooks/tests_async_plugin.py @@ -23,4 +23,5 @@ def test_async_hook(named_port): "A", ) ans = dns.query.udp(msg, "10.53.0.1", timeout=10, port=named_port) + # the test-async plugin changes the status of any positive answer to NOTIMP assert ans.rcode() == dns.rcode.NOTIMP From ddfa5450225b621aa258c870a33c5f6dd6b98d0c Mon Sep 17 00:00:00 2001 From: Michal Nowak Date: Fri, 9 Jun 2023 12:49:08 +0200 Subject: [PATCH 2/3] Prepare release notes for BIND 9.18.16 --- doc/arm/notes.rst | 2 +- doc/notes/{notes-current.rst => notes-9.18.16.rst} | 7 ------- 2 files changed, 1 insertion(+), 8 deletions(-) rename doc/notes/{notes-current.rst => notes-9.18.16.rst} (98%) diff --git a/doc/arm/notes.rst b/doc/arm/notes.rst index 3dc0196180..4af203f336 100644 --- a/doc/arm/notes.rst +++ b/doc/arm/notes.rst @@ -35,7 +35,7 @@ information about each release, and source code. .. include:: ../notes/notes-known-issues.rst -.. include:: ../notes/notes-current.rst +.. include:: ../notes/notes-9.18.16.rst .. include:: ../notes/notes-9.18.15.rst .. include:: ../notes/notes-9.18.14.rst .. include:: ../notes/notes-9.18.13.rst diff --git a/doc/notes/notes-current.rst b/doc/notes/notes-9.18.16.rst similarity index 98% rename from doc/notes/notes-current.rst rename to doc/notes/notes-9.18.16.rst index 3c706ebe98..f13ba434b6 100644 --- a/doc/notes/notes-current.rst +++ b/doc/notes/notes-9.18.16.rst @@ -33,8 +33,6 @@ Security Fixes New Features ~~~~~~~~~~~~ -- None. - - The system test suite can now be executed with pytest (along with pytest-xdist for parallel execution). :gl:`#3978` @@ -45,11 +43,6 @@ Removed Features will be removed in a future release. A warning will be logged when the ``tkey-dhkey`` option is used in ``named.conf``. :gl:`#3905` -Feature Changes -~~~~~~~~~~~~~~~ - -- None. - Bug Fixes ~~~~~~~~~ From 7e2c9d2747a2558493e46099b73022f54c25ea36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20K=C4=99pie=C5=84?= Date: Fri, 2 Jun 2023 12:28:23 +0200 Subject: [PATCH 3/3] Tweak and reword release notes --- doc/notes/notes-9.18.16.rst | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/doc/notes/notes-9.18.16.rst b/doc/notes/notes-9.18.16.rst index f13ba434b6..9ed090ca9c 100644 --- a/doc/notes/notes-9.18.16.rst +++ b/doc/notes/notes-9.18.16.rst @@ -41,28 +41,28 @@ Removed Features - TKEY mode 2 (Diffie-Hellman Exchanged Keying) is now deprecated, and will be removed in a future release. A warning will be logged when - the ``tkey-dhkey`` option is used in ``named.conf``. :gl:`#3905` + the :any:`tkey-dhkey` option is used in ``named.conf``. :gl:`#3905` Bug Fixes ~~~~~~~~~ -- BIND could get stuck on reconfiguration when a `listen` statement - for HTTP is removed from the configuration. That has been fixed. - :gl:`#4071` +- BIND could get stuck on reconfiguration when a :any:`listen-on` + statement for HTTP is removed from the configuration. That has been + fixed. :gl:`#4071` -- It could happen that after the :any:`stale-answer-client-timeout` duration, - a delegation from cache was returned to the client. This has now been fixed. - :gl:`#3950` +- Previously, it was possible for a delegation from cache to be returned + to the client after the :any:`stale-answer-client-timeout` duration. + This has been fixed. :gl:`#3950` - BIND could allocate too big buffers when sending data via stream-based DNS transports, leading to increased memory usage. This has been fixed. :gl:`#4038` - When the :any:`stale-answer-enable` option was enabled and the - :any:`stale-answer-client-timeout` option was enabled and larger than 0, - ``named`` was taking two places from the :any:`clients-per-query` limit for - each client and was failing to gradually auto-tune its value, as configured. - This has been fixed. :gl:`#4074` + :any:`stale-answer-client-timeout` option was enabled and larger than + 0, :iscman:`named` previously allocated two slots from the + :any:`clients-per-query` limit for each client and failed to gradually + auto-tune its value, as configured. This has been fixed. :gl:`#4074` Known Issues ~~~~~~~~~~~~