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 2022-10-19 13:17:33 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/xmpp-dns (Old) and /work/SRC/openSUSE:Factory/.xmpp-dns.new.2275 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xmpp-dns" Wed Oct 19 13:17:33 2022 rev:4 rq:1029735 version:0.3.3 Changes: -------- --- /work/SRC/openSUSE:Factory/xmpp-dns/xmpp-dns.changes 2022-10-08 01:26:18.598378962 +0200 +++ /work/SRC/openSUSE:Factory/.xmpp-dns.new.2275/xmpp-dns.changes 2022-10-19 13:17:59.757261764 +0200 @@ -1,0 +2,6 @@ +Tue Oct 18 12:04:13 UTC 2022 - Michael Vetter <mvet...@suse.com> + +- Update to 0.3.3: + * Fix wrong timeout parsing on some systems. + +------------------------------------------------------------------- Old: ---- xmpp-dns-0.3.2.tar.gz New: ---- xmpp-dns-0.3.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xmpp-dns.spec ++++++ --- /var/tmp/diff_new_pack.y7rTRc/_old 2022-10-19 13:18:01.021264384 +0200 +++ /var/tmp/diff_new_pack.y7rTRc/_new 2022-10-19 13:18:01.025264392 +0200 @@ -17,7 +17,7 @@ Name: xmpp-dns -Version: 0.3.2 +Version: 0.3.3 Release: 0 Summary: A CLI tool to check XMPP SRV records License: BSD-2-Clause ++++++ _service ++++++ --- /var/tmp/diff_new_pack.y7rTRc/_old 2022-10-19 13:18:01.069264483 +0200 +++ /var/tmp/diff_new_pack.y7rTRc/_new 2022-10-19 13:18:01.073264492 +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.2</param> + <param name="revision">v0.3.3</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.2.tar.gz -> xmpp-dns-0.3.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xmpp-dns-0.3.2/CHANGELOG.md new/xmpp-dns-0.3.3/CHANGELOG.md --- old/xmpp-dns-0.3.2/CHANGELOG.md 2022-10-06 12:43:07.000000000 +0200 +++ new/xmpp-dns-0.3.3/CHANGELOG.md 2022-10-16 11:35:40.000000000 +0200 @@ -1,5 +1,9 @@ # Changelog +## [0.3.3] +### Changed +- Fix wrong timeout parsing on some systems. + ## [0.3.2] ### Changed - Fix detection of XMPP support when using direct TLS and ALPN. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xmpp-dns-0.3.2/main.go new/xmpp-dns-0.3.3/main.go --- old/xmpp-dns-0.3.2/main.go 2022-10-06 12:43:07.000000000 +0200 +++ new/xmpp-dns-0.3.3/main.go 2022-10-16 11:35:40.000000000 +0200 @@ -20,7 +20,7 @@ ) const ( - version = "0.3.2" + version = "0.3.3" ) var ( @@ -116,7 +116,7 @@ } // Timeout - timeout := time.Duration(*flagTimeout * 1000000000) + timeout := time.Duration(*flagTimeout) * time.Second // Set TLS config var tlsConfig tls.Config