mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Merge tag 'v9.18.37' into bind-9.18
This commit is contained in:
commit
6868a9ea4a
4 changed files with 41 additions and 0 deletions
|
|
@ -18,6 +18,7 @@ Changelog
|
|||
development. Regular users should refer to :ref:`Release Notes <relnotes>`
|
||||
for changes relevant to them.
|
||||
|
||||
.. include:: ../changelog/changelog-9.18.37.rst
|
||||
.. include:: ../changelog/changelog-9.18.36.rst
|
||||
.. include:: ../changelog/changelog-9.18.35.rst
|
||||
.. include:: ../changelog/changelog-9.18.34.rst
|
||||
|
|
|
|||
|
|
@ -45,6 +45,7 @@ The list of known issues affecting the latest version in the 9.18 branch can be
|
|||
found at
|
||||
https://gitlab.isc.org/isc-projects/bind9/-/wikis/Known-Issues-in-BIND-9.18
|
||||
|
||||
.. include:: ../notes/notes-9.18.37.rst
|
||||
.. include:: ../notes/notes-9.18.36.rst
|
||||
.. include:: ../notes/notes-9.18.35.rst
|
||||
.. include:: ../notes/notes-9.18.34.rst
|
||||
|
|
|
|||
26
doc/changelog/changelog-9.18.37.rst
Normal file
26
doc/changelog/changelog-9.18.37.rst
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
.. 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.
|
||||
|
||||
BIND 9.18.37
|
||||
------------
|
||||
|
||||
Bug Fixes
|
||||
~~~~~~~~~
|
||||
|
||||
- Unify the int32_t vs int_fast32_t when working with atomic types.
|
||||
``8665d3be39c``
|
||||
|
||||
There's a mismatch between the atomic and non-atomic types that could
|
||||
potentialy lead to a rwlock deadlock (after two billion 2^32) writes.
|
||||
Use int_fast32_t when loading the atomic_int_fast32_t types in the
|
||||
isc_rwlock unit. :gl:`#5280` :gl:`!10390`
|
||||
|
||||
|
||||
13
doc/notes/notes-9.18.37.rst
Normal file
13
doc/notes/notes-9.18.37.rst
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
.. 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.18.37
|
||||
----------------------
|
||||
Loading…
Reference in a new issue