Hello community, here is the log from the commit of package python3-raven for openSUSE:Factory checked in at 2015-10-26 12:49:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python3-raven (Old) and /work/SRC/openSUSE:Factory/.python3-raven.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python3-raven" Changes: -------- --- /work/SRC/openSUSE:Factory/python3-raven/python3-raven.changes 2015-10-22 12:59:26.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.python3-raven.new/python3-raven.changes 2015-10-26 12:49:18.000000000 +0100 @@ -1,0 +2,6 @@ +Thu Oct 22 04:12:06 UTC 2015 - [email protected] + +- update to version 5.8.1: + * Python 3 compatibility fixes. + +------------------------------------------------------------------- Old: ---- raven-5.8.0.tar.gz New: ---- raven-5.8.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python3-raven.spec ++++++ --- /var/tmp/diff_new_pack.H7jHR5/_old 2015-10-26 12:49:19.000000000 +0100 +++ /var/tmp/diff_new_pack.H7jHR5/_new 2015-10-26 12:49:19.000000000 +0100 @@ -17,7 +17,7 @@ Name: python3-raven -Version: 5.8.0 +Version: 5.8.1 Release: 0 Url: https://pypi.python.org/pypi/raven Summary: A client for Sentry ++++++ raven-5.8.0.tar.gz -> raven-5.8.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/raven-5.8.0/PKG-INFO new/raven-5.8.1/PKG-INFO --- old/raven-5.8.0/PKG-INFO 2015-10-20 00:39:48.000000000 +0200 +++ new/raven-5.8.1/PKG-INFO 2015-10-20 06:41:11.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: raven -Version: 5.8.0 +Version: 5.8.1 Summary: Raven is a client for Sentry (https://www.getsentry.com) Home-page: https://github.com/getsentry/raven-python Author: David Cramer diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/raven-5.8.0/raven/conf/remote.py new/raven-5.8.1/raven/conf/remote.py --- old/raven-5.8.0/raven/conf/remote.py 2015-10-20 00:37:05.000000000 +0200 +++ new/raven-5.8.1/raven/conf/remote.py 2015-10-20 06:40:10.000000000 +0200 @@ -56,7 +56,11 @@ @classmethod def from_string(cls, value, transport=None, transport_registry=None): - value = to_string(value) + # in Python 2.x sending the DSN as a unicode value will eventually + # cause issues in httplib + if not six.PY3: + value = to_string(value) + url = urlparse(value) if url.scheme not in ('http', 'https'): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/raven-5.8.0/raven.egg-info/PKG-INFO new/raven-5.8.1/raven.egg-info/PKG-INFO --- old/raven-5.8.0/raven.egg-info/PKG-INFO 2015-10-20 00:39:47.000000000 +0200 +++ new/raven-5.8.1/raven.egg-info/PKG-INFO 2015-10-20 06:41:08.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: raven -Version: 5.8.0 +Version: 5.8.1 Summary: Raven is a client for Sentry (https://www.getsentry.com) Home-page: https://github.com/getsentry/raven-python Author: David Cramer diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/raven-5.8.0/setup.py new/raven-5.8.1/setup.py --- old/raven-5.8.0/setup.py 2015-10-20 00:39:30.000000000 +0200 +++ new/raven-5.8.1/setup.py 2015-10-20 06:40:57.000000000 +0200 @@ -95,7 +95,7 @@ setup( name='raven', - version='5.8.0', + version='5.8.1', author='David Cramer', author_email='[email protected]', url='https://github.com/getsentry/raven-python',
