Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package bind for openSUSE:Factory checked in at 2022-08-20 20:27:46 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/bind (Old) and /work/SRC/openSUSE:Factory/.bind.new.2083 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "bind" Sat Aug 20 20:27:46 2022 rev:184 rq:998091 version:9.18.6 Changes: -------- --- /work/SRC/openSUSE:Factory/bind/bind.changes 2022-08-05 19:50:50.901432008 +0200 +++ /work/SRC/openSUSE:Factory/.bind.new.2083/bind.changes 2022-08-20 20:27:52.577221734 +0200 @@ -1,0 +2,36 @@ +Thu Aug 18 14:57:33 UTC 2022 - Jorik Cronenberg <jorik.cronenb...@suse.com> + +- Fix typo in contrib/dlz/modules/{mysql,mysqldyn} that references + LDAP_LIBS instead of MYSQL_LIBS. + [bsc#1202149, bind.spec, bind-fix-mysql-bindings.patch] + +------------------------------------------------------------------- +Thu Aug 18 13:28:24 UTC 2022 - Jorik Cronenberg <jorik.cronenb...@suse.com> + +- Update to bind release 9.18.6 + Bug Fixes: + * When running as a validating resolver forwarding all queries + to another resolver, named could crash with an assertion failure. + These crashes occurred when the configured forwarder sent + a broken DS response and named failed its attempts to find + a proper one instead. This has been fixed. + * Non-dynamic zones that inherit dnssec-policy from the view + or options blocks were not marked as inline-signed + and therefore never scheduled to be re-signed. This has been fixed. + * The old max-zone-ttl zone option was meant to be superseded + by the max-zone-ttl option in dnssec-policy; however, + the latter option was not fully effective. This has been corrected: + zones no longer load if they contain TTLs greater than the limit + configured in dnssec-policy. For zones with both the old + max-zone-ttl option and dnssec-policy configured, + the old option is ignored, and a warning is generated. + * rndc dumpdb -expired was fixed to include expired RRsets, + even if stale-cache-enable is set to no and the cache-cleaning + time window has passed. + For a complete list of changes, see + * Bind Release Notes + https://downloads.isc.org/isc/bind9/9.18.6/doc/arm/html/notes.html + * The CHANGES file in the source RPM + [bind.spec bind-9.18.6.tar.xz bind-9.18.6.tar.xz.sha512.asc] + +------------------------------------------------------------------- Old: ---- bind-9.18.5.tar.xz bind-9.18.5.tar.xz.sha512.asc New: ---- bind-9.18.6.tar.xz bind-9.18.6.tar.xz.sha512.asc bind-fix-mysql-bindings.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ bind.spec ++++++ --- /var/tmp/diff_new_pack.0cGGg3/_old 2022-08-20 20:27:53.349223874 +0200 +++ /var/tmp/diff_new_pack.0cGGg3/_new 2022-08-20 20:27:53.357223897 +0200 @@ -56,7 +56,7 @@ %define _fillupdir %{_localstatedir}/adm/fillup-templates %endif Name: bind -Version: 9.18.5 +Version: 9.18.6 Release: 0 Summary: Domain Name System (DNS) Server (named) License: MPL-2.0 @@ -75,6 +75,7 @@ # configuation file for systemd-sysusers Source72: named.conf Patch56: bind-ldapdump-use-valid-host.patch +Patch57: bind-fix-mysql-bindings.patch BuildRequires: libcap-devel BuildRequires: libopenssl-devel BuildRequires: libtool ++++++ bind-9.18.5.tar.xz -> bind-9.18.6.tar.xz ++++++ ++++ 6237 lines of diff (skipped) ++++++ bind-fix-mysql-bindings.patch ++++++ --- a/contrib/dlz/modules/mysql/Makefile +++ b/contrib/dlz/modules/mysql/Makefile @@ -27,7 +27,7 @@ prefix = /usr libdir = $(prefix)/lib/bind9 CFLAGS=-fPIC -g -I../include $(shell mysql_config --cflags) -LDAP_LIBS=$(shell mysql_config --libs) +MYSQL_LIBS=$(shell mysql_config --libs) all: dlz_mysql_dynamic.so --- a/contrib/dlz/modules/mysqldyn/Makefile +++ b/contrib/dlz/modules/mysqldyn/Makefile @@ -27,7 +27,7 @@ prefix = /usr libdir = $(prefix)/lib/bind9 CFLAGS=-fPIC -g -I../include $(shell mysql_config --cflags) -LDAP_LIBS=$(shell mysql_config --libs) +MYSQL_LIBS=$(shell mysql_config --libs) all: dlz_mysqldyn_mod.so