mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-29 13:38:26 +00:00
BIND 9.19.8
-----BEGIN PGP SIGNATURE----- iHUEABYIAB0WIQQenrxMWseszT2nKSgBYjubZSogpwUCY5c08QAKCRABYjubZSog p13/AP93ry8u87Zcu9KnQ4/Tm5dIgfwPWstsvn90ZRnZBVMVGQEA8FP02WrE+dkr pODYjvXvkGchYdetg8qHlpXOk4BHXgc= =ohAR -----END PGP SIGNATURE----- gpgsig -----BEGIN PGP SIGNATURE----- iHUEABYIAB0WIQQenrxMWseszT2nKSgBYjubZSogpwUCY6QfxAAKCRABYjubZSog p+xKAQCLz+H1F/p5cIrcnqtmtFn6EprmLm4x+3Qy+TFxHwJunAD/Xqd2WbzpyI9c QjRtfLn2fZl/YEWiDfLYh10LwQLYyg4= =N+1U -----END PGP SIGNATURE----- Merge tag 'v9_19_8' BIND 9.19.8
This commit is contained in:
commit
a3fcfe3d71
2
CHANGES
2
CHANGES
@ -34,6 +34,8 @@
|
|||||||
6044. [bug] There was an "RSASHA236" typo in a log message.
|
6044. [bug] There was an "RSASHA236" typo in a log message.
|
||||||
[GL !7206]
|
[GL !7206]
|
||||||
|
|
||||||
|
--- 9.19.8 released ---
|
||||||
|
|
||||||
6043. [bug] The key file IO locks objects would never get
|
6043. [bug] The key file IO locks objects would never get
|
||||||
deleted from the hashtable due to off-by-one error.
|
deleted from the hashtable due to off-by-one error.
|
||||||
[GL #3727]
|
[GL #3727]
|
||||||
|
@ -39,6 +39,7 @@ information about each release, and source code.
|
|||||||
.. include:: ../notes/notes-known-issues.rst
|
.. include:: ../notes/notes-known-issues.rst
|
||||||
|
|
||||||
.. include:: ../notes/notes-current.rst
|
.. include:: ../notes/notes-current.rst
|
||||||
|
.. include:: ../notes/notes-9.19.8.rst
|
||||||
.. include:: ../notes/notes-9.19.7.rst
|
.. include:: ../notes/notes-9.19.7.rst
|
||||||
.. include:: ../notes/notes-9.19.6.rst
|
.. include:: ../notes/notes-9.19.6.rst
|
||||||
.. include:: ../notes/notes-9.19.5.rst
|
.. include:: ../notes/notes-9.19.5.rst
|
||||||
|
101
doc/notes/notes-9.19.8.rst
Normal file
101
doc/notes/notes-9.19.8.rst
Normal file
@ -0,0 +1,101 @@
|
|||||||
|
.. Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
||||||
|
..
|
||||||
|
.. SPDX-License-Identifier: MPL-2.0
|
||||||
|
..
|
||||||
|
.. 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.19.8
|
||||||
|
---------------------
|
||||||
|
|
||||||
|
Removed Features
|
||||||
|
~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
- The ``coresize``, ``datasize``, ``files``, and ``stacksize`` options
|
||||||
|
have been removed. The limits these options set should be enforced
|
||||||
|
externally, either by manual configuration (e.g. using ``ulimit``) or
|
||||||
|
via the process supervisor (e.g. ``systemd``). :gl:`#3676`
|
||||||
|
|
||||||
|
- Dynamic updates that add and remove DNSKEY and NSEC3PARAM records no
|
||||||
|
longer trigger key rollovers and denial-of-existence operations. This
|
||||||
|
also means that the :any:`dnssec-secure-to-insecure` option has been
|
||||||
|
obsoleted. :gl:`#3686`
|
||||||
|
|
||||||
|
Feature Changes
|
||||||
|
~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
- The TTL of the NSEC3PARAM record for every NSEC3-signed zone was
|
||||||
|
previously set to 0. It is now changed to match the SOA MINIMUM value
|
||||||
|
for the given zone. :gl:`#3570`
|
||||||
|
|
||||||
|
- The ``--with-tuning`` option for ``configure`` has been removed. Each
|
||||||
|
of the compile-time settings that required different values based on
|
||||||
|
the "workload" (which were previously affected by the value of the
|
||||||
|
``--with-tuning`` option) has either been removed or changed to a
|
||||||
|
sensible default. :gl:`#3664`
|
||||||
|
|
||||||
|
- The :any:`auto-dnssec` option has been deprecated and will be removed
|
||||||
|
in a future BIND 9.19.x release. Please migrate to
|
||||||
|
:any:`dnssec-policy`. :gl:`#3667`
|
||||||
|
|
||||||
|
- Setting alternate local addresses for inbound zone transfers has been
|
||||||
|
deprecated. The relevant options (:any:`alt-transfer-source`,
|
||||||
|
:any:`alt-transfer-source-v6`, and :any:`use-alt-transfer-source`)
|
||||||
|
will be removed in a future BIND 9.19.x release. :gl:`#3694`
|
||||||
|
|
||||||
|
- On startup, :iscman:`named` now sets the limit on the number of open
|
||||||
|
files to the maximum allowed by the operating system, instead of
|
||||||
|
trying to set it to "unlimited". :gl:`#3676`
|
||||||
|
|
||||||
|
- The number of HTTP headers allowed in requests sent to
|
||||||
|
:iscman:`named`'s statistics channel has been increased from 10 to
|
||||||
|
100, to accommodate some browsers that send more than 10 headers
|
||||||
|
by default. :gl:`#3670`
|
||||||
|
|
||||||
|
Bug Fixes
|
||||||
|
~~~~~~~~~
|
||||||
|
|
||||||
|
- :iscman:`named` could crash due to an assertion failure when an HTTP
|
||||||
|
connection to the statistics channel was closed prematurely (due to a
|
||||||
|
connection error, shutdown, etc.). This has been fixed. :gl:`#3693`
|
||||||
|
|
||||||
|
- When a catalog zone was removed from the configuration, in some cases
|
||||||
|
a dangling pointer could cause the :iscman:`named` process to crash.
|
||||||
|
This has been fixed. :gl:`#3683`
|
||||||
|
|
||||||
|
- When a zone was deleted from a server, a key management object related
|
||||||
|
to that zone was inadvertently kept in memory and only released upon
|
||||||
|
shutdown. This could lead to constantly increasing memory use on
|
||||||
|
servers with a high rate of changes affecting the set of zones being
|
||||||
|
served. This has been fixed. :gl:`#3727`
|
||||||
|
|
||||||
|
- TLS configuration for primary servers was not applied for zones that
|
||||||
|
were members of a catalog zone. This has been fixed. :gl:`#3638`
|
||||||
|
|
||||||
|
- In certain cases, :iscman:`named` waited for the resolution of
|
||||||
|
outstanding recursive queries to finish before shutting down. This was
|
||||||
|
unintended and has been fixed. :gl:`#3183`
|
||||||
|
|
||||||
|
- :iscman:`host` and :iscman:`nslookup` command-line options setting the
|
||||||
|
custom TCP/UDP port to use were ignored for ANY queries (which are
|
||||||
|
sent over TCP). This has been fixed. :gl:`#3721`
|
||||||
|
|
||||||
|
- The new name compression code in BIND 9.19.7 was not compressing
|
||||||
|
names in zone transfers that should have been compressed, so zone
|
||||||
|
transfers were larger than before. This has been fixed. :gl:`#3706`
|
||||||
|
|
||||||
|
- The ``zone <name>/<class>: final reference detached`` log message was
|
||||||
|
moved from the INFO log level to the DEBUG(1) log level to prevent the
|
||||||
|
:iscman:`named-checkzone` tool from superfluously logging this message
|
||||||
|
in non-debug mode. :gl:`#3707`
|
||||||
|
|
||||||
|
Known Issues
|
||||||
|
~~~~~~~~~~~~
|
||||||
|
|
||||||
|
- There are no new known issues with this release. See :ref:`above
|
||||||
|
<relnotes_known_issues>` for a list of all known issues affecting this
|
||||||
|
BIND 9 branch.
|
Loading…
x
Reference in New Issue
Block a user