From 1a35aeeea0b392758c5e12854a2dfc0e646bb323 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20K=C4=99pie=C5=84?= Date: Fri, 9 May 2025 09:30:50 +0200 Subject: [PATCH 1/3] Generate changelog for BIND 9.18.37 --- doc/arm/changelog.rst | 1 + doc/changelog/changelog-9.18.37.rst | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 doc/changelog/changelog-9.18.37.rst diff --git a/doc/arm/changelog.rst b/doc/arm/changelog.rst index e08c0e96c2..0ee4e62f41 100644 --- a/doc/arm/changelog.rst +++ b/doc/arm/changelog.rst @@ -18,6 +18,7 @@ Changelog development. Regular users should refer to :ref:`Release Notes ` 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 diff --git a/doc/changelog/changelog-9.18.37.rst b/doc/changelog/changelog-9.18.37.rst new file mode 100644 index 0000000000..8814f5870c --- /dev/null +++ b/doc/changelog/changelog-9.18.37.rst @@ -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` + + From 1fb0fa691f385e960266374ea910105d6b6fbacc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20K=C4=99pie=C5=84?= Date: Fri, 9 May 2025 09:30:50 +0200 Subject: [PATCH 2/3] Prepare release notes for BIND 9.18.37 --- doc/arm/notes.rst | 1 + doc/notes/notes-9.18.37.rst | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 doc/notes/notes-9.18.37.rst diff --git a/doc/arm/notes.rst b/doc/arm/notes.rst index f62f99828c..55871adfc7 100644 --- a/doc/arm/notes.rst +++ b/doc/arm/notes.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 diff --git a/doc/notes/notes-9.18.37.rst b/doc/notes/notes-9.18.37.rst new file mode 100644 index 0000000000..7d450e84e7 --- /dev/null +++ b/doc/notes/notes-9.18.37.rst @@ -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 +---------------------- From d8ff479b234c46e44c099e4033ebc0f1a2a75804 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20K=C4=99pie=C5=84?= Date: Fri, 9 May 2025 09:30:57 +0200 Subject: [PATCH 3/3] Update BIND version for release --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 960f0b1066..9dfe6adec0 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], 37)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