Hello community,
here is the log from the commit of package python3-websocket-client for
openSUSE:Factory checked in at 2016-05-16 12:04:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python3-websocket-client (Old)
and /work/SRC/openSUSE:Factory/.python3-websocket-client.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python3-websocket-client"
Changes:
--------
---
/work/SRC/openSUSE:Factory/python3-websocket-client/python3-websocket-client.changes
2016-04-30 23:31:54.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.python3-websocket-client.new/python3-websocket-client.changes
2016-05-16 12:04:13.000000000 +0200
@@ -1,0 +2,13 @@
+Sun May 15 04:19:19 UTC 2016 - [email protected]
+
+- update to version 0.37.0:
+ * fixed fialer that `websocket.create_connection` does not accept
+ `origin` as a parameter (#246 )
+
+-------------------------------------------------------------------
+Sun May 8 07:15:39 UTC 2016 - [email protected]
+
+- specfile:
+ * updated source url to files.pythonhosted.org
+
+-------------------------------------------------------------------
Old:
----
websocket_client-0.36.0.tar.gz
New:
----
websocket_client-0.37.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python3-websocket-client.spec ++++++
--- /var/tmp/diff_new_pack.aqRhaD/_old 2016-05-16 12:04:14.000000000 +0200
+++ /var/tmp/diff_new_pack.aqRhaD/_new 2016-05-16 12:04:14.000000000 +0200
@@ -15,19 +15,20 @@
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
+
Name: python3-websocket-client
-Version: 0.36.0
+Version: 0.37.0
Release: 0
Summary: WebSocket client implementation
License: LGPL-2.1
Group: Development/Languages/Python
Url: https://github.com/liris/websocket-client/releases
-Source0:
https://pypi.python.org/packages/source/w/websocket-client/websocket_client-%{version}.tar.gz
+Source0:
https://files.pythonhosted.org/packages/source/w/websocket-client/websocket_client-%{version}.tar.gz
BuildRequires: python3-backports.ssl_match_hostname
BuildRequires: python3-setuptools
BuildRequires: python3-six
-Requires: python3-backports.ssl_match_hostname
Requires: python3
+Requires: python3-backports.ssl_match_hostname
Requires: python3-six
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires(post): update-alternatives
@@ -75,7 +76,6 @@
update-alternatives --remove wsdump.py %{_bindir}/wsdump.py-%{py3_ver}
fi
-
%files
%defattr(-,root,root,-)
%doc LICENSE README.rst
++++++ websocket_client-0.36.0.tar.gz -> websocket_client-0.37.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/websocket_client-0.36.0/ChangeLog
new/websocket_client-0.37.0/ChangeLog
--- old/websocket_client-0.36.0/ChangeLog 2016-04-12 02:00:24.000000000
+0200
+++ new/websocket_client-0.37.0/ChangeLog 2016-04-14 02:27:00.000000000
+0200
@@ -1,6 +1,9 @@
ChangeLog
============
+- 0.37.0
+ - fixed fialer that `websocket.create_connection` does not accept `origin`
as a parameter (#246 )
+
- 0.36.0
- added support for using custom connection class (#235)
- use Named logger (#238)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/websocket_client-0.36.0/PKG-INFO
new/websocket_client-0.37.0/PKG-INFO
--- old/websocket_client-0.36.0/PKG-INFO 2016-04-12 02:02:42.000000000
+0200
+++ new/websocket_client-0.37.0/PKG-INFO 2016-04-14 02:27:29.000000000
+0200
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: websocket_client
-Version: 0.36.0
+Version: 0.37.0
Summary: WebSocket client for python. hybi13 is supported.
Home-page: https://github.com/liris/websocket-client
Author: liris
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/websocket_client-0.36.0/setup.py
new/websocket_client-0.37.0/setup.py
--- old/websocket_client-0.36.0/setup.py 2016-04-12 01:43:46.000000000
+0200
+++ new/websocket_client-0.37.0/setup.py 2016-04-14 02:10:56.000000000
+0200
@@ -1,7 +1,7 @@
from setuptools import setup
import sys
-VERSION = "0.36.0"
+VERSION = "0.37.0"
NAME="websocket_client"
install_requires = ["six"]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/websocket_client-0.36.0/websocket/__init__.py
new/websocket_client-0.37.0/websocket/__init__.py
--- old/websocket_client-0.36.0/websocket/__init__.py 2016-04-12
01:44:09.000000000 +0200
+++ new/websocket_client-0.37.0/websocket/__init__.py 2016-04-14
02:11:13.000000000 +0200
@@ -22,4 +22,4 @@
from ._core import *
from ._app import WebSocketApp
-__version__ = "0.36.0"
+__version__ = "0.37.0"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/websocket_client-0.36.0/websocket/_core.py
new/websocket_client-0.37.0/websocket/_core.py
--- old/websocket_client-0.36.0/websocket/_core.py 2016-04-12
01:43:10.000000000 +0200
+++ new/websocket_client-0.37.0/websocket/_core.py 2016-04-14
02:24:17.000000000 +0200
@@ -83,7 +83,7 @@
def __init__(self, get_mask_key=None, sockopt=None, sslopt=None,
fire_cont_frame=False, enable_multithread=False,
- skip_utf8_validation=False):
+ skip_utf8_validation=False, **options):
"""
Initialize WebSocket object.
"""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/websocket_client-0.36.0/websocket_client.egg-info/PKG-INFO
new/websocket_client-0.37.0/websocket_client.egg-info/PKG-INFO
--- old/websocket_client-0.36.0/websocket_client.egg-info/PKG-INFO
2016-04-12 02:02:42.000000000 +0200
+++ new/websocket_client-0.37.0/websocket_client.egg-info/PKG-INFO
2016-04-14 02:27:29.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: websocket-client
-Version: 0.36.0
+Version: 0.37.0
Summary: WebSocket client for python. hybi13 is supported.
Home-page: https://github.com/liris/websocket-client
Author: liris
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/websocket_client-0.36.0/websocket_client.egg-info/requires.txt
new/websocket_client-0.37.0/websocket_client.egg-info/requires.txt
--- old/websocket_client-0.36.0/websocket_client.egg-info/requires.txt
2016-04-12 02:02:42.000000000 +0200
+++ new/websocket_client-0.37.0/websocket_client.egg-info/requires.txt
2016-04-14 02:27:29.000000000 +0200
@@ -1 +1,2 @@
six
+backports.ssl_match_hostname