Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package xmpp-dns for openSUSE:Factory checked in at 2023-08-23 14:58:34 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/xmpp-dns (Old) and /work/SRC/openSUSE:Factory/.xmpp-dns.new.1766 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xmpp-dns" Wed Aug 23 14:58:34 2023 rev:8 rq:1105337 version:0.3.8 Changes: -------- --- /work/SRC/openSUSE:Factory/xmpp-dns/xmpp-dns.changes 2023-08-17 19:44:57.398947736 +0200 +++ /work/SRC/openSUSE:Factory/.xmpp-dns.new.1766/xmpp-dns.changes 2023-08-23 14:59:44.066217571 +0200 @@ -1,0 +2,7 @@ +Wed Aug 23 03:41:00 UTC 2023 - Michael Vetter <mvet...@suse.com> + +- Update to 0.3.8: + * Don't look up IPs and don't try to connect if the SRV records + target is ".". + +------------------------------------------------------------------- Old: ---- xmpp-dns-0.3.7.tar.gz New: ---- xmpp-dns-0.3.8.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xmpp-dns.spec ++++++ --- /var/tmp/diff_new_pack.cetN3F/_old 2023-08-23 14:59:45.130219474 +0200 +++ /var/tmp/diff_new_pack.cetN3F/_new 2023-08-23 14:59:45.154219516 +0200 @@ -17,7 +17,7 @@ Name: xmpp-dns -Version: 0.3.7 +Version: 0.3.8 Release: 0 Summary: A CLI tool to check XMPP SRV records License: BSD-2-Clause ++++++ _service ++++++ --- /var/tmp/diff_new_pack.cetN3F/_old 2023-08-23 14:59:45.226219645 +0200 +++ /var/tmp/diff_new_pack.cetN3F/_new 2023-08-23 14:59:45.234219660 +0200 @@ -3,7 +3,7 @@ <param name="url">https://salsa.debian.org/mdosch/xmpp-dns.git</param> <param name="scm">git</param> <param name="exclude">.git</param> - <param name="revision">v0.3.7</param> + <param name="revision">v0.3.8</param> <param name="versionformat">@PARENT_TAG@</param> <param name="changesgenerate">disable</param> <param name="versionrewrite-pattern">v(.*)</param> ++++++ vendor.tar.gz ++++++ ++++++ xmpp-dns-0.3.7.tar.gz -> xmpp-dns-0.3.8.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xmpp-dns-0.3.7/CHANGELOG.md new/xmpp-dns-0.3.8/CHANGELOG.md --- old/xmpp-dns-0.3.7/CHANGELOG.md 2023-08-15 19:05:51.000000000 +0200 +++ new/xmpp-dns-0.3.8/CHANGELOG.md 2023-08-22 20:16:10.000000000 +0200 @@ -1,6 +1,10 @@ # Changelog -## [0.3.7] +## [0.3.8] 2023-08-22 +### Changed +- Don't look up IPs and don't try to connect if the SRV records target is ".". + +## [0.3.7] 2023-08-15 ### Added - Show reason for denied s2s due to policy-violation. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xmpp-dns-0.3.7/main.go new/xmpp-dns-0.3.8/main.go --- old/xmpp-dns-0.3.7/main.go 2023-08-15 19:05:51.000000000 +0200 +++ new/xmpp-dns-0.3.8/main.go 2023-08-22 20:16:10.000000000 +0200 @@ -21,7 +21,7 @@ ) const ( - version = "0.3.7" + version = "0.3.8" ) // Created with https://github.com/miku/zek @@ -229,7 +229,7 @@ fmt.Println() } printRecord(record) - if verbose { + if verbose && record.Target != "." { printIP(record, ipv4, ipv6, test, tlsConfig, timeout) } }