Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ghc-tls for openSUSE:Factory checked in at 2025-11-20 14:51:10 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-tls (Old) and /work/SRC/openSUSE:Factory/.ghc-tls.new.2061 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-tls" Thu Nov 20 14:51:10 2025 rev:42 rq:1318753 version:2.1.13 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-tls/ghc-tls.changes 2025-10-30 17:10:52.917326757 +0100 +++ /work/SRC/openSUSE:Factory/.ghc-tls.new.2061/ghc-tls.changes 2025-11-20 14:52:39.796159873 +0100 @@ -1,0 +2,9 @@ +Tue Nov 11 23:58:48 UTC 2025 - Peter Simons <[email protected]> + +- Update tls to version 2.1.13. + ## Version 2.1.13 + + * Don't contain early_data if serverEarlyDataSize is 0. + [#510](https://github.com/haskell-tls/hs-tls/pull/510) + +------------------------------------------------------------------- Old: ---- tls-2.1.12.tar.gz New: ---- tls-2.1.13.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-tls.spec ++++++ --- /var/tmp/diff_new_pack.8N7lyj/_old 2025-11-20 14:52:40.440187038 +0100 +++ /var/tmp/diff_new_pack.8N7lyj/_new 2025-11-20 14:52:40.444187207 +0100 @@ -20,7 +20,7 @@ %global pkgver %{pkg_name}-%{version} %bcond_with tests Name: ghc-%{pkg_name} -Version: 2.1.12 +Version: 2.1.13 Release: 0 Summary: TLS protocol native implementation License: BSD-3-Clause ++++++ tls-2.1.12.tar.gz -> tls-2.1.13.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tls-2.1.12/CHANGELOG.md new/tls-2.1.13/CHANGELOG.md --- old/tls-2.1.12/CHANGELOG.md 2001-09-09 03:46:40.000000000 +0200 +++ new/tls-2.1.13/CHANGELOG.md 2001-09-09 03:46:40.000000000 +0200 @@ -1,5 +1,10 @@ # Change log for "tls" +## Version 2.1.13 + +* Don't contain early_data if serverEarlyDataSize is 0. + [#510](https://github.com/haskell-tls/hs-tls/pull/510) + ## Version 2.1.12 * Restore benchmarks. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tls-2.1.12/Network/TLS/Handshake/Server/TLS13.hs new/tls-2.1.13/Network/TLS/Handshake/Server/TLS13.hs --- old/tls-2.1.12/Network/TLS/Handshake/Server/TLS13.hs 2001-09-09 03:46:40.000000000 +0200 +++ new/tls-2.1.13/Network/TLS/Handshake/Server/TLS13.hs 2001-09-09 03:46:40.000000000 +0200 @@ -168,8 +168,11 @@ createNewSessionTicket life add nonce identity maxSize = NewSessionTicket13 life add nonce identity nstExtensions where - earlyDataExt = toExtensionRaw $ EarlyDataIndication $ Just $ fromIntegral maxSize - nstExtensions = [earlyDataExt] + nstExtensions + | maxSize == 0 = [] + | otherwise = [earlyDataExt] + where + earlyDataExt = toExtensionRaw $ EarlyDataIndication $ Just $ fromIntegral maxSize adjustLifetime i | i < 0 = 0 | i > 604800 = 604800 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tls-2.1.12/tls.cabal new/tls-2.1.13/tls.cabal --- old/tls-2.1.12/tls.cabal 2001-09-09 03:46:40.000000000 +0200 +++ new/tls-2.1.13/tls.cabal 2001-09-09 03:46:40.000000000 +0200 @@ -1,6 +1,6 @@ cabal-version: >=1.10 name: tls -version: 2.1.12 +version: 2.1.13 license: BSD3 license-file: LICENSE copyright: Vincent Hanquez <[email protected]>
