Compare commits

...
Sign in to create a new pull request.

9 commits

Author SHA1 Message Date
Petr Menšík
bce293b4af Update to 9.18.26 (rhbz#2270476)
New Features

- The statistics channel now includes counters that indicate the number of currently connected TCP IPv4/IPv6 clients. [GL #4425]
- Added RESOLVER.ARPA to the built in empty zones. [GL #4580]

And bug fixes

https://downloads.isc.org/isc/bind9/9.18.26/doc/arm/html/notes.html#notes-for-bind-9-18-26
2024-04-23 13:44:35 +02:00
Petr Menšík
fbaeed3334 Update to BIND 9.18.24
https://downloads.isc.org/isc/bind9/9.18.24/doc/arm/html/notes.html#notes-for-bind-9-18-24

Resolves: CVE-2023-4408 CVE-2023-5517 CVE-2023-5679 CVE-2023-6516 CVE-2023-50387 CVE-2023-50868
2024-02-17 05:01:30 +01:00
Petr Menšík
5a5099ca58 Update changed b.root-servers.net address in hints (#2253460) 2024-02-17 05:00:43 +01:00
Petr Menšík
71b01cb6ec Update to 9.18.20 (#2249835)
- B.ROOT-SERVERS.NET address update
- lock-file fixes

https://downloads.isc.org/isc/bind9/9.18.20/doc/arm/html/notes.html#notes-for-bind-9-18-20
2023-11-20 14:29:19 +01:00
Petr Menšík
7b158a770b Update to 9.18.19 (#2232346)
https://downloads.isc.org/isc/bind9/9.18.19/doc/arm/html/notes.html#notes-for-bind-9-18-19

Resolves: CVE-2023-3341 CVE-2023-4236
2023-09-25 15:28:14 +02:00
Petr Menšík
08e2ee036b Skip failing test on i686 (#2240253) 2023-09-25 15:28:14 +02:00
Petr Menšík
a9d0525d64 Update to 9.18.18 (#2232346)
https://downloads.isc.org/isc/bind9/9.18.18/doc/arm/html/notes.html#notes-for-bind-9-18-18
2023-09-06 20:48:55 +02:00
Petr Menšík
7e3af4c541 Add preparation for multi-component shared tests
Define explicit component for testing run from this component.
Alternative component in fedora is bind9-next
2023-09-06 20:48:55 +02:00
Petr Menšík
90e91e4b0f Update to 9.18.17 (#2223913)
https://downloads.isc.org/isc/bind9/9.18.17/doc/arm/html/notes.html#notes-for-bind-9-18-17
2023-07-20 10:50:15 +02:00
7 changed files with 91 additions and 8 deletions

12
.gitignore vendored
View file

@ -210,3 +210,15 @@ bind-9.7.2b1.tar.gz
/bind-9.18.15.tar.xz.asc
/bind-9.18.16.tar.xz
/bind-9.18.16.tar.xz.asc
/bind-9.18.17.tar.xz
/bind-9.18.17.tar.xz.asc
/bind-9.18.18.tar.xz
/bind-9.18.18.tar.xz.asc
/bind-9.18.19.tar.xz
/bind-9.18.19.tar.xz.asc
/bind-9.18.20.tar.xz
/bind-9.18.20.tar.xz.asc
/bind-9.18.24.tar.xz
/bind-9.18.24.tar.xz.asc
/bind-9.18.26.tar.xz
/bind-9.18.26.tar.xz.asc

View file

@ -0,0 +1,41 @@
From 37643c9689c2dee85b453879f7145bb393b99dfa Mon Sep 17 00:00:00 2001
From: Petr Mensik <pemensik@redhat.com>
Date: Fri, 22 Sep 2023 19:54:36 +0200
Subject: [PATCH] Skip failing tests on 32 platform
Reported to fail also on 32 bit arm, but skip it only on current builds.
---
tests/dns/rbtdb_test.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/tests/dns/rbtdb_test.c b/tests/dns/rbtdb_test.c
index 59a5786..384a26a 100644
--- a/tests/dns/rbtdb_test.c
+++ b/tests/dns/rbtdb_test.c
@@ -326,6 +326,7 @@ ISC_RUN_TEST_IMPL(overmempurge_bigrdata) {
isc_mem_destroy(&mctx2);
}
+#ifndef i386
ISC_RUN_TEST_IMPL(overmempurge_longname) {
size_t maxcache = 2097152U; /* 2MB - same as DNS_CACHE_MINSIZE */
size_t hiwater = maxcache - (maxcache >> 3); /* borrowed from cache.c */
@@ -370,12 +371,15 @@ ISC_RUN_TEST_IMPL(overmempurge_longname) {
dns_db_detach(&db);
isc_mem_destroy(&mctx2);
}
+#endif
ISC_TEST_LIST_START
ISC_TEST_ENTRY(ownercase)
ISC_TEST_ENTRY(setownercase)
ISC_TEST_ENTRY(overmempurge_bigrdata)
+#ifndef i386
ISC_TEST_ENTRY(overmempurge_longname)
+#endif
ISC_TEST_LIST_END
ISC_TEST_MAIN
--
2.41.0

View file

@ -76,7 +76,7 @@ License: MPL-2.0 AND ISC AND MIT AND BSD-3-Clause AND BSD-2-Clause
# ./lib/isc/string.c BSD-3-clause and/or MPL-2.0
# ./lib/isc/tm.c BSD-2-clause and/or MPL-2.0
# ./lib/isccfg/parser.c BSD-2-clause and/or MPL-2.0
Version: 9.18.16
Version: 9.18.26
Release: 1%{?dist}
Epoch: 32
Url: https://www.isc.org/downloads/bind/
@ -114,6 +114,8 @@ Patch10: bind-9.5-PIE.patch
Patch16: bind-9.16-redhat_doc.patch
# https://bugzilla.redhat.com/show_bug.cgi?id=2122010
Patch26: bind-9.18-unittest-netmgr-unstable.patch
# https://bugzilla.redhat.com/show_bug.cgi?id=2240253
Patch27: bind-9.18-tests-rbtdb_test-i686.patch
%{?systemd_ordering}
Requires: coreutils
@ -962,6 +964,30 @@ fi;
%endif
%changelog
* Mon Apr 22 2024 Petr Menšík <pemensik@redhat.com> - 32:9.18.26-1
- Update to 9.18.26 (rhbz#2270476)
* Thu Feb 15 2024 Petr Menšík <pemensik@redhat.com> - 32:9.18.24-1
- Update to 9.18.24 (#2264032)
* Tue Jan 16 2024 Petr Menšík <pemensik@redhat.com> - 32:9.18.20-2
- Update changed b.root-servers.net address in hints (#2253460)
* Thu Nov 16 2023 Petr Menšík <pemensik@redhat.com> - 32:9.18.20-1
- Update to 9.18.20 (#2249835)
* Fri Sep 22 2023 Petr Menšík <pemensik@redhat.com> - 32:9.18.19-1
- Update to 9.18.19 (#2232346)
* Fri Sep 22 2023 Petr Menšík <pemensik@redhat.com> - 32:9.18.18-2
- Skip failing rbtdb_test unit test on i686 (#2240253)
* Wed Sep 06 2023 Petr Menšík <pemensik@redhat.com> - 32:9.18.18-1
- Update to 9.18.18 (#2232346)
* Wed Jul 19 2023 Petr Menšík <pemensik@redhat.com> - 32:9.18.17-1
- Update to 9.18.17 (#2223913)
* Wed Jun 21 2023 Petr Menšík <pemensik@redhat.com> - 32:9.18.16-1
- Update to 9.18.16 (#2216462)

View file

@ -8,9 +8,9 @@
; file /domain/named.cache
; on server FTP.INTERNIC.NET
; -OR- RS.INTERNIC.NET
;
; last update: June 24, 2021
; related version of root zone: 2021062401
;
; last update: December 20, 2023
; related version of root zone: 2023122001
;
; FORMERLY NS.INTERNIC.NET
;
@ -21,8 +21,8 @@ A.ROOT-SERVERS.NET. 3600000 AAAA 2001:503:ba3e::2:30
; FORMERLY NS1.ISI.EDU
;
. 3600000 NS B.ROOT-SERVERS.NET.
B.ROOT-SERVERS.NET. 3600000 A 199.9.14.201
B.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:200::b
B.ROOT-SERVERS.NET. 3600000 A 170.247.170.2
B.ROOT-SERVERS.NET. 3600000 AAAA 2801:1b8:10::b
;
; FORMERLY C.PSI.NET
;

View file

@ -6,3 +6,5 @@ discover:
url: https://src.fedoraproject.org/tests/bind.git
execute:
how: tmt
context:
component: bind

View file

@ -7,3 +7,5 @@ discover:
filter: 'tier: 1'
execute:
how: tmt
context:
component: bind

View file

@ -1,2 +1,2 @@
SHA512 (bind-9.18.16.tar.xz) = 90b510552e8fd0c358a627e32bd840eaafc946a2b3c5c4623d0e24aa167fb99aedd91ed19392a104ed5bfce341d9944bab02c680e19d312b59e6688f9546a1fd
SHA512 (bind-9.18.16.tar.xz.asc) = 31f4f2d00975c576d551aa6cbd231ea91022c8d97c23c2341c844744258aec73965b2671e4f6a6bc20cd12e1c4dcca915dde0d99cff9cbb6b449fe23ebb79017
SHA512 (bind-9.18.26.tar.xz) = 517951bd462aff206706a4bbae3ef917299f90af361fb931a50d2340f0580010b8a0eedce1d4e8c99e99389fc44d71221b907e30d91be0d398acbe29688d6e55
SHA512 (bind-9.18.26.tar.xz.asc) = f310613ec1681a0041c6528081eae2a2e02c12514f7adffd339a62929c78afacaa53cb21b126220007cea56c7748a3ea808a0db6ecdbed9502daee9608407438