From 35ca98d5181f43429f6b5bbed74afd9cb9567b4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20K=C4=99pie=C5=84?= Date: Thu, 7 Dec 2023 12:04:45 +0100 Subject: [PATCH 1/4] Prepare release notes for BIND 9.18.21 --- doc/arm/notes.rst | 2 +- .../{notes-current.rst => notes-9.18.21.rst} | 20 ------------------- 2 files changed, 1 insertion(+), 21 deletions(-) rename doc/notes/{notes-current.rst => notes-9.18.21.rst} (86%) diff --git a/doc/arm/notes.rst b/doc/arm/notes.rst index 7a51b557fa..3bae4f1f7b 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.21.rst .. include:: ../notes/notes-9.18.20.rst .. include:: ../notes/notes-9.18.19.rst .. include:: ../notes/notes-9.18.18.rst diff --git a/doc/notes/notes-current.rst b/doc/notes/notes-9.18.21.rst similarity index 86% rename from doc/notes/notes-current.rst rename to doc/notes/notes-9.18.21.rst index 05cc5e90fe..b1338eccd9 100644 --- a/doc/notes/notes-current.rst +++ b/doc/notes/notes-9.18.21.rst @@ -12,16 +12,6 @@ Notes for BIND 9.18.21 ---------------------- -Security Fixes -~~~~~~~~~~~~~~ - -- None. - -New Features -~~~~~~~~~~~~ - -- None. - Removed Features ~~~~~~~~~~~~~~~~ @@ -31,16 +21,6 @@ Removed Features - The ``resolver-nonbackoff-tries`` and ``resolver-retry-interval`` options are now deprecated. A warning will be logged if they are used. :gl:`#4405` -Feature Changes -~~~~~~~~~~~~~~~ - -- None. - -Bug Fixes -~~~~~~~~~ - -- None. - Known Issues ~~~~~~~~~~~~ From b3f116fadacf92082b3ec9947a38bbbacdb40ce5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20K=C4=99pie=C5=84?= Date: Thu, 7 Dec 2023 12:04:45 +0100 Subject: [PATCH 2/4] Tweak and reword release notes --- doc/notes/notes-9.18.21.rst | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/doc/notes/notes-9.18.21.rst b/doc/notes/notes-9.18.21.rst index b1338eccd9..12876d82f7 100644 --- a/doc/notes/notes-9.18.21.rst +++ b/doc/notes/notes-9.18.21.rst @@ -15,11 +15,13 @@ Notes for BIND 9.18.21 Removed Features ~~~~~~~~~~~~~~~~ -- The support for AES algorithm for DNS cookies has been deprecated. - :gl:`#4421` +- Support for using AES as the DNS COOKIE algorithm (``cookie-algorithm + aes;``) has been deprecated and will be removed in a future release. + Please use the current default, SipHash-2-4, instead. :gl:`#4421` -- The ``resolver-nonbackoff-tries`` and ``resolver-retry-interval`` options - are now deprecated. A warning will be logged if they are used. :gl:`#4405` +- The :any:`resolver-nonbackoff-tries` and :any:`resolver-retry-interval` + statements have been deprecated. Using them now causes a warning to be + logged. :gl:`#4405` Known Issues ~~~~~~~~~~~~ From c48258011007e56448d2263f0754e25aea6b24b7 Mon Sep 17 00:00:00 2001 From: Tom Krizek Date: Thu, 7 Dec 2023 17:08:03 +0100 Subject: [PATCH 3/4] Add a CHANGES marker --- CHANGES | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index 86e2eddacc..913aad0291 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,5 @@ + --- 9.18.21 released --- + 6297. [bug] Improve LRU cleaning behaviour. [GL #4448] 6296. [func] The "resolver-nonbackoff-tries" and From cb6cff65a928fd38bf29060d7810fa3be0aa091e Mon Sep 17 00:00:00 2001 From: Tom Krizek Date: Thu, 7 Dec 2023 17:08:40 +0100 Subject: [PATCH 4/4] Update BIND version for release --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index ebed24438a..2ab8ddda66 100644 --- a/configure.ac +++ b/configure.ac @@ -17,7 +17,7 @@ m4_define([bind_VERSION_MAJOR], 9)dnl m4_define([bind_VERSION_MINOR], 18)dnl m4_define([bind_VERSION_PATCH], 21)dnl -m4_define([bind_VERSION_EXTRA], -dev)dnl +m4_define([bind_VERSION_EXTRA], )dnl m4_define([bind_DESCRIPTION], [(Extended Support Version)])dnl m4_define([bind_SRCID], [m4_esyscmd_s([git rev-parse --short HEAD | cut -b1-7])])dnl m4_define([bind_PKG_VERSION], [[bind_VERSION_MAJOR.bind_VERSION_MINOR.bind_VERSION_PATCH]bind_VERSION_EXTRA])dnl