Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-tls-session-manager for 
openSUSE:Factory checked in at 2026-06-10 16:08:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-tls-session-manager (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-tls-session-manager.new.2375 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-tls-session-manager"

Wed Jun 10 16:08:32 2026 rev:11 rq:1358462 version:0.0.9

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/ghc-tls-session-manager/ghc-tls-session-manager.changes
  2025-04-07 19:15:12.120412922 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-tls-session-manager.new.2375/ghc-tls-session-manager.changes
        2026-06-10 16:13:20.294906250 +0200
@@ -1,0 +2,8 @@
+Fri Feb 13 05:27:06 UTC 2026 - Peter Simons <[email protected]>
+
+- Update tls-session-manager to version 0.0.9.
+  ## 0.0.9
+
+  * Providing newSessionTicketManager' to kill the manager.
+
+-------------------------------------------------------------------

Old:
----
  tls-session-manager-0.0.8.tar.gz

New:
----
  tls-session-manager-0.0.9.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ghc-tls-session-manager.spec ++++++
--- /var/tmp/diff_new_pack.luMMAr/_old  2026-06-10 16:13:23.159024940 +0200
+++ /var/tmp/diff_new_pack.luMMAr/_new  2026-06-10 16:13:23.163025107 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-tls-session-manager
 #
-# Copyright (c) 2025 SUSE LLC
+# Copyright (c) 2026 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %global pkg_name tls-session-manager
 %global pkgver %{pkg_name}-%{version}
 Name:           ghc-%{pkg_name}
-Version:        0.0.8
+Version:        0.0.9
 Release:        0
 Summary:        In-memory TLS session DB and session ticket
 License:        BSD-3-Clause

++++++ tls-session-manager-0.0.8.tar.gz -> tls-session-manager-0.0.9.tar.gz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tls-session-manager-0.0.8/ChangeLog.md 
new/tls-session-manager-0.0.9/ChangeLog.md
--- old/tls-session-manager-0.0.8/ChangeLog.md  2001-09-09 03:46:40.000000000 
+0200
+++ new/tls-session-manager-0.0.9/ChangeLog.md  2001-09-09 03:46:40.000000000 
+0200
@@ -1,5 +1,9 @@
 # ChangeLog for tls-session-manager
 
+## 0.0.9
+
+* Providing newSessionTicketManager' to kill the manager.
+
 ## 0.0.8
 
 * Removing "basement".
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/tls-session-manager-0.0.8/Network/TLS/SessionTicket.hs 
new/tls-session-manager-0.0.9/Network/TLS/SessionTicket.hs
--- old/tls-session-manager-0.0.8/Network/TLS/SessionTicket.hs  2001-09-09 
03:46:40.000000000 +0200
+++ new/tls-session-manager-0.0.9/Network/TLS/SessionTicket.hs  2001-09-09 
03:46:40.000000000 +0200
@@ -12,6 +12,7 @@
 --   secret keys. So, energy saving is not achieved.
 module Network.TLS.SessionTicket (
     newSessionTicketManager,
+    newSessionTicketManager',
     Config,
     defaultConfig,
     ticketLifetime,
@@ -46,6 +47,18 @@
   where
     conf =
         CT.defaultConfig
+            { CT.interval = secretKeyInterval
+            , CT.tokenLifetime = ticketLifetime
+            , CT.threadName = "TLS ticket manager"
+            }
+
+newSessionTicketManager' :: Config -> IO (SessionManager, IO ())
+newSessionTicketManager' Config{..} = do
+    tokenmgr <- CT.spawnTokenManager conf
+    return (sessionTicketManager tokenmgr, CT.killTokenManager tokenmgr)
+  where
+    conf =
+        CT.defaultConfig
             { CT.interval = secretKeyInterval
             , CT.tokenLifetime = ticketLifetime
             , CT.threadName = "TLS ticket manager"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tls-session-manager-0.0.8/tls-session-manager.cabal 
new/tls-session-manager-0.0.9/tls-session-manager.cabal
--- old/tls-session-manager-0.0.8/tls-session-manager.cabal     2001-09-09 
03:46:40.000000000 +0200
+++ new/tls-session-manager-0.0.9/tls-session-manager.cabal     2001-09-09 
03:46:40.000000000 +0200
@@ -1,6 +1,6 @@
 cabal-version:      >=1.10
 name:               tls-session-manager
-version:            0.0.8
+version:            0.0.9
 license:            BSD3
 license-file:       LICENSE
 maintainer:         [email protected]

Reply via email to