Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-certstream for 
openSUSE:Factory checked in at 2021-06-01 10:36:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-certstream (Old)
 and      /work/SRC/openSUSE:Factory/.python-certstream.new.1898 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-certstream"

Tue Jun  1 10:36:54 2021 rev:8 rq:895478 version:1.12

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-certstream/python-certstream.changes      
2020-06-10 00:44:22.810329273 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-certstream.new.1898/python-certstream.changes
    2021-06-01 10:37:54.324858367 +0200
@@ -1,0 +2,6 @@
+Thu Apr 29 19:16:19 UTC 2021 - Sebastian Wagner <[email protected]>
+
+- Update to version 1.12:
+ - update to and require websocket-client>=0.58.0
+
+-------------------------------------------------------------------

Old:
----
  certstream-1.11.tar.gz

New:
----
  certstream-1.12.tar.gz

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

Other differences:
------------------
++++++ python-certstream.spec ++++++
--- /var/tmp/diff_new_pack.toPiiL/_old  2021-06-01 10:37:54.764859116 +0200
+++ /var/tmp/diff_new_pack.toPiiL/_new  2021-06-01 10:37:54.768859123 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-certstream
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-certstream
-Version:        1.11
+Version:        1.12
 Release:        0
 Summary:        Python library for receiving certificate transparency list 
updates
 License:        MIT
@@ -27,11 +27,11 @@
 BuildRequires:  %{python_module setuptools >= 18.0.1}
 #SECTION tests
 BuildRequires:  %{python_module termcolor}
-BuildRequires:  %{python_module websocket-client >= 0.48.0}
+BuildRequires:  %{python_module websocket-client >= 0.58.0}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 Requires(post): update-alternatives
-Requires(postun): update-alternatives
+Requires(postun):update-alternatives
 # /SECTION
 Requires:       python3-termcolor
 Requires:       python3-websocket-client >= 0.48.0

++++++ certstream-1.11.tar.gz -> certstream-1.12.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certstream-1.11/PKG-INFO new/certstream-1.12/PKG-INFO
--- old/certstream-1.11/PKG-INFO        2019-12-20 06:12:39.000000000 +0100
+++ new/certstream-1.12/PKG-INFO        2021-04-28 22:09:53.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: certstream
-Version: 1.11
+Version: 1.12
 Summary: CertStream is a library for receiving certificate transparency list 
updates in real time.
 Home-page: https://github.com/CaliDog/certstream-python/
 Author: Ryan Sears
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certstream-1.11/certstream/core.py 
new/certstream-1.12/certstream/core.py
--- old/certstream-1.11/certstream/core.py      2019-12-20 06:01:19.000000000 
+0100
+++ new/certstream-1.12/certstream/core.py      2021-04-28 22:07:05.000000000 
+0200
@@ -27,12 +27,12 @@
             on_error=self._on_error,
         )
 
-    def _on_open(self):
+    def _on_open(self, _):
         certstream_logger.info("Connection established to CertStream! 
Listening for events...")
         if self.on_open_handler:
             self.on_open_handler()
 
-    def _on_message(self, message):
+    def _on_message(self, _, message):
         frame = json.loads(message)
 
         if frame.get('message_type', None) == "heartbeat" and 
self.skip_heartbeats:
@@ -40,7 +40,7 @@
 
         self.message_callback(frame, self._context)
 
-    def _on_error(self, ex):
+    def _on_error(self, _, ex):
         if type(ex) == KeyboardInterrupt:
             raise
         if self.on_error_handler:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certstream-1.11/certstream.egg-info/PKG-INFO 
new/certstream-1.12/certstream.egg-info/PKG-INFO
--- old/certstream-1.11/certstream.egg-info/PKG-INFO    2019-12-20 
06:12:38.000000000 +0100
+++ new/certstream-1.12/certstream.egg-info/PKG-INFO    2021-04-28 
22:09:53.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: certstream
-Version: 1.11
+Version: 1.12
 Summary: CertStream is a library for receiving certificate transparency list 
updates in real time.
 Home-page: https://github.com/CaliDog/certstream-python/
 Author: Ryan Sears
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certstream-1.11/certstream.egg-info/requires.txt 
new/certstream-1.12/certstream.egg-info/requires.txt
--- old/certstream-1.11/certstream.egg-info/requires.txt        2019-12-20 
06:12:38.000000000 +0100
+++ new/certstream-1.12/certstream.egg-info/requires.txt        2021-04-28 
22:09:53.000000000 +0200
@@ -1,2 +1,2 @@
-websocket-client>=0.56.0
+websocket-client>=0.58.0
 termcolor
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certstream-1.11/requirements.txt 
new/certstream-1.12/requirements.txt
--- old/certstream-1.11/requirements.txt        2019-12-20 05:24:09.000000000 
+0100
+++ new/certstream-1.12/requirements.txt        2021-04-28 22:07:05.000000000 
+0200
@@ -1,2 +1,2 @@
-websocket-client>=0.56.0
-termcolor
\ No newline at end of file
+websocket-client>=0.58.0
+termcolor
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certstream-1.11/setup.py new/certstream-1.12/setup.py
--- old/certstream-1.11/setup.py        2019-12-20 06:02:05.000000000 +0100
+++ new/certstream-1.12/setup.py        2021-04-28 22:08:04.000000000 +0200
@@ -14,7 +14,7 @@
 
 setup(
     name='certstream',
-    version="1.11",
+    version="1.12",
     url='https://github.com/CaliDog/certstream-python/',
     author='Ryan Sears',
     install_requires=dependencies,

Reply via email to