]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Set up release notes for BIND 9.17.11
authorMichał Kępień <michal@isc.org>
Wed, 17 Feb 2021 21:25:26 +0000 (22:25 +0100)
committerMichał Kępień <michal@isc.org>
Wed, 17 Feb 2021 21:25:26 +0000 (22:25 +0100)
doc/arm/notes.rst
doc/notes/notes-current.rst [new file with mode: 0644]

index c0a6a4da0ae6b66d54148dc1043a39771149108a..ffec04a485dd5a3a109019dd1767fa8e1346c6b3 100644 (file)
@@ -52,6 +52,7 @@ https://www.isc.org/download/. There you will find additional
 information about each release, source code, and pre-compiled versions
 for Microsoft Windows operating systems.
 
+.. include:: ../notes/notes-current.rst
 .. include:: ../notes/notes-9.17.10.rst
 .. include:: ../notes/notes-9.17.9.rst
 .. include:: ../notes/notes-9.17.8.rst
diff --git a/doc/notes/notes-current.rst b/doc/notes/notes-current.rst
new file mode 100644 (file)
index 0000000..9fdc8fd
--- /dev/null
@@ -0,0 +1,50 @@
+.. 
+   Copyright (C) Internet Systems Consortium, Inc. ("ISC")
+   
+   This Source Code Form is subject to the terms of the Mozilla Public
+   License, v. 2.0. If a copy of the MPL was not distributed with this
+   file, you can obtain one at https://mozilla.org/MPL/2.0/.
+   
+   See the COPYRIGHT file distributed with this work for additional
+   information regarding copyright ownership.
+
+Notes for BIND 9.17.11
+----------------------
+
+Security Fixes
+~~~~~~~~~~~~~~
+
+- None.
+
+Known Issues
+~~~~~~~~~~~~
+
+- None.
+
+New Features
+~~~~~~~~~~~~
+
+- None.
+
+Removed Features
+~~~~~~~~~~~~~~~~
+
+- None.
+
+Feature Changes
+~~~~~~~~~~~~~~~
+
+- None.
+
+Bug Fixes
+~~~~~~~~~
+
+- If an invalid key name (e.g. "a..b") was specified in a ``primaries``
+  list in ``named.conf``, the wrong size was passed to ``isc_mem_put()``,
+  which resulted in the returned memory being put on the wrong freed
+  list. This has been fixed. [GL #2460]
+
+- If an outgoing packet would exceed max-udp-size, it would be dropped instead
+  of sending a proper response back.  Rollback setting the IP_DONTFRAG on the
+  UDP sockets that we enabled during the DNS Flag Day 2020 to fix this issue.
+  [GL #2487]