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 2026-01-23 17:33:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/xmpp-dns (Old) and /work/SRC/openSUSE:Factory/.xmpp-dns.new.1928 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xmpp-dns" Fri Jan 23 17:33:49 2026 rev:20 rq:1328795 version:0.6.1 Changes: -------- --- /work/SRC/openSUSE:Factory/xmpp-dns/xmpp-dns.changes 2026-01-20 21:05:04.625344477 +0100 +++ /work/SRC/openSUSE:Factory/.xmpp-dns.new.1928/xmpp-dns.changes 2026-01-23 17:34:03.528386804 +0100 @@ -1,0 +2,7 @@ +Fri Jan 23 07:31:45 UTC 2026 - Michael Vetter <[email protected]> + +- Update to 0.6.1: + * Remove unnecessary printing of argv. + * Print [WARN] instead of [OK] if the certificate expires within the next 14 days. + +------------------------------------------------------------------- Old: ---- xmpp-dns-0.6.0.tar.gz New: ---- xmpp-dns-0.6.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xmpp-dns.spec ++++++ --- /var/tmp/diff_new_pack.GdjDhk/_old 2026-01-23 17:34:04.168413180 +0100 +++ /var/tmp/diff_new_pack.GdjDhk/_new 2026-01-23 17:34:04.168413180 +0100 @@ -17,7 +17,7 @@ Name: xmpp-dns -Version: 0.6.0 +Version: 0.6.1 Release: 0 Summary: A CLI tool to check XMPP SRV records License: BSD-2-Clause ++++++ _scmsync.obsinfo ++++++ --- /var/tmp/diff_new_pack.GdjDhk/_old 2026-01-23 17:34:04.208414828 +0100 +++ /var/tmp/diff_new_pack.GdjDhk/_new 2026-01-23 17:34:04.208414828 +0100 @@ -1,6 +1,6 @@ -mtime: 1768902846 -commit: 19b9fc60d30a6d7d8d439f6457c9f243ba196517bdf98b8c579b5d63a6591ebf +mtime: 1769153796 +commit: cefc0bfdef1ff88c44b05240e665628174faa6e448df9d8b9c0208ac09cf04e6 url: https://src.opensuse.org/xmpp/xmpp-dns.git -revision: 19b9fc60d30a6d7d8d439f6457c9f243ba196517bdf98b8c579b5d63a6591ebf +revision: cefc0bfdef1ff88c44b05240e665628174faa6e448df9d8b9c0208ac09cf04e6 projectscmsync: https://src.opensuse.org/xmpp/_ObsPrj.git ++++++ _service ++++++ --- /var/tmp/diff_new_pack.GdjDhk/_old 2026-01-23 17:34:04.232415818 +0100 +++ /var/tmp/diff_new_pack.GdjDhk/_new 2026-01-23 17:34:04.236415982 +0100 @@ -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.6.0</param> + <param name="revision">v0.6.1</param> <param name="versionformat">@PARENT_TAG@</param> <param name="changesgenerate">disable</param> <param name="versionrewrite-pattern">v(.*)</param> ++++++ build.specials.obscpio ++++++ ++++++ build.specials.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/.gitignore new/.gitignore --- old/.gitignore 1970-01-01 01:00:00.000000000 +0100 +++ new/.gitignore 2026-01-23 08:37:00.000000000 +0100 @@ -0,0 +1 @@ +.osc ++++++ vendor.tar.gz ++++++ ++++++ xmpp-dns-0.6.0.tar.gz -> xmpp-dns-0.6.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xmpp-dns-0.6.0/CHANGELOG.md new/xmpp-dns-0.6.1/CHANGELOG.md --- old/xmpp-dns-0.6.0/CHANGELOG.md 2026-01-15 20:07:10.000000000 +0100 +++ new/xmpp-dns-0.6.1/CHANGELOG.md 2026-01-22 22:46:30.000000000 +0100 @@ -1,5 +1,10 @@ # Changelog +## [0.6.1] 2026-01-22 +### Changed +- Remove unnecessary printing of argv. +- Print **[WARN]** instead of **[OK]** if the certificate expires within the next 14 days. + ## [0.6.0] 2026-01-15 ### Added - Add flag `--client-dtls` for adding arbitrary targets for C2S with direct TLS. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xmpp-dns-0.6.0/main.go new/xmpp-dns-0.6.1/main.go --- old/xmpp-dns-0.6.0/main.go 2026-01-15 20:07:10.000000000 +0100 +++ new/xmpp-dns-0.6.1/main.go 2026-01-22 22:46:30.000000000 +0100 @@ -31,7 +31,7 @@ ) const ( - version = "0.6.0" + version = "0.6.1" nsBOSH = "urn:xmpp:alt-connections:xbosh" nsC2SdTLS = "urn:xmpp:alt-connections:tls" nsC2SQuic = "urn:xmpp:alt-connections:quic" @@ -156,7 +156,6 @@ // Read server from command line. server := getopt.Args() - fmt.Println("args:", server) switch count := len(server); { case count == 0: log.Fatal("Please specify a server.") @@ -1196,7 +1195,7 @@ now := time.Now() switch { case time.Until(expiry).Hours() < 336: - fmt.Printf("[%sOK%s]", colorYellow, colorReset) + fmt.Printf("[%sWARN%s]", colorYellow, colorReset) printTLSVersion(c.ConnectionState().Version) fmt.Printf(" (Cert expires in %d days at %s)\n", int(time.Until(expiry).Hours())/24, expiry.Truncate(time.Second).String()) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xmpp-dns-0.6.0/man/xmpp-dns.1 new/xmpp-dns-0.6.1/man/xmpp-dns.1 --- old/xmpp-dns-0.6.0/man/xmpp-dns.1 2026-01-15 20:07:10.000000000 +0100 +++ new/xmpp-dns-0.6.1/man/xmpp-dns.1 2026-01-22 22:46:30.000000000 +0100 @@ -52,7 +52,7 @@ Add an arbitrary target for S2S with StartTLS in the form \fBdomain:port\fR\. Can be invoked several times\. .TP \fB\-t\fR -Test connection and certificates\. +Test connection and certificates\. Xmpp\-dns will print \fB[OK]\fR for passed tests, \fB[Not OK]\fR for failed tests and \fB[WARN]\fR if all tests are passed but the certificate expires within the next 14 days\. .TP \fB\-\-timeout\fR=[\fIvalue\fR] Connection timeout in seconds\. Default: 60\. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xmpp-dns-0.6.0/man/xmpp-dns.1.html new/xmpp-dns-0.6.1/man/xmpp-dns.1.html --- old/xmpp-dns-0.6.0/man/xmpp-dns.1.html 2026-01-15 20:07:10.000000000 +0100 +++ new/xmpp-dns-0.6.1/man/xmpp-dns.1.html 2026-01-22 22:46:30.000000000 +0100 @@ -127,7 +127,7 @@ <code>--server-stls</code>=[<var>value</var>]</dt> <dd>Add an arbitrary target for S2S with StartTLS in the form <strong>domain:port</strong>. Can be invoked several times.</dd> <dt><code>-t</code></dt> -<dd>Test connection and certificates.</dd> +<dd>Test connection and certificates. Xmpp-dns will print <strong>[OK]</strong> for passed tests, <strong>[Not OK]</strong> for failed tests and <strong>[WARN]</strong> if all tests are passed but the certificate expires within the next 14 days.</dd> <dt> <code>--timeout</code>=[<var>value</var>]</dt> <dd>Connection timeout in seconds. Default: 60.</dd> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/xmpp-dns-0.6.0/man/xmpp-dns.1.ronn new/xmpp-dns-0.6.1/man/xmpp-dns.1.ronn --- old/xmpp-dns-0.6.0/man/xmpp-dns.1.ronn 2026-01-15 20:07:10.000000000 +0100 +++ new/xmpp-dns-0.6.1/man/xmpp-dns.1.ronn 2026-01-22 22:46:30.000000000 +0100 @@ -55,7 +55,7 @@ Add an arbitrary target for S2S with StartTLS in the form **domain:port**. Can be invoked several times. * `-t`: -Test connection and certificates. +Test connection and certificates. Xmpp-dns will print **[OK]** for passed tests, **[Not OK]** for failed tests and **[WARN]** if all tests are passed but the certificate expires within the next 14 days. * `--timeout`=[<value>]: Connection timeout in seconds. Default: 60.
