commit python3-Beaker for openSUSE:Factory
Hello community, here is the log from the commit of package python3-Beaker for openSUSE:Factory checked in at 2016-11-02 12:45:55 Comparing /work/SRC/openSUSE:Factory/python3-Beaker (Old) and /work/SRC/openSUSE:Factory/.python3-Beaker.new (New) Package is "python3-Beaker" Changes: --- /work/SRC/openSUSE:Factory/python3-Beaker/python3-Beaker.changes 2016-05-25 21:23:00.0 +0200 +++ /work/SRC/openSUSE:Factory/.python3-Beaker.new/python3-Beaker.changes 2016-11-02 12:45:57.0 +0100 @@ -1,0 +2,21 @@ +Tue Oct 25 17:13:44 UTC 2016 - a...@gmx.de + +- update to version 1.8.1: + * Sessions have a new option save_accessed_time which defaults to +true for backwards compatibility. Set to false to tell beaker not +to update _accessed_time if the session hasn’t been changed, for +non-cookie sessions stores. This lets you avoid needless datastore +writes. _accessed_time will always be updated when the session is +intentionally saved. + * data_serializer parameter in Session accepts a custom object with +dumps and loads methods. + * Fixed a TypeError in exception reporting when failing to load a +NamespaceManager + * Allow to change Cookie Expiration from a value back to None, +previously it had no effect. + * Allow SessionMiddleware to setup a custom Session class through +the session_class argument. + * Added invalidate_corrupt option to CookieSessions too for valid +cookies containing invalid data. + +--- @@ -7 +27,0 @@ - Old: Beaker-1.8.0.tar.gz New: Beaker-1.8.1.tar.gz Other differences: -- ++ python3-Beaker.spec ++ --- /var/tmp/diff_new_pack.PJVayz/_old 2016-11-02 12:45:59.0 +0100 +++ /var/tmp/diff_new_pack.PJVayz/_new 2016-11-02 12:45:59.0 +0100 @@ -17,7 +17,7 @@ Name: python3-Beaker -Version:1.8.0 +Version:1.8.1 Release:0 Url:http://beaker.rtfd.org/ Summary:A Session and Caching library with WSGI Middleware ++ Beaker-1.8.0.tar.gz -> Beaker-1.8.1.tar.gz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Beaker-1.8.0/Beaker.egg-info/PKG-INFO new/Beaker-1.8.1/Beaker.egg-info/PKG-INFO --- old/Beaker-1.8.0/Beaker.egg-info/PKG-INFO 2016-01-27 12:40:12.0 +0100 +++ new/Beaker-1.8.1/Beaker.egg-info/PKG-INFO 2016-10-24 01:40:20.0 +0200 @@ -1,8 +1,8 @@ Metadata-Version: 1.1 Name: Beaker -Version: 1.8.0 +Version: 1.8.1 Summary: A Session and Caching library with WSGI Middleware -Home-page: http://beaker.rtfd.org/ +Home-page: https://beaker.readthedocs.io/ Author: Ben Bangert, Mike Bayer, Philip Jenvey, Alessandro Molina Author-email: b...@groovie.org, pjen...@groovie.org, a...@turbogears.org License: BSD diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Beaker-1.8.0/PKG-INFO new/Beaker-1.8.1/PKG-INFO --- old/Beaker-1.8.0/PKG-INFO 2016-01-27 12:40:12.0 +0100 +++ new/Beaker-1.8.1/PKG-INFO 2016-10-24 01:40:20.0 +0200 @@ -1,8 +1,8 @@ Metadata-Version: 1.1 Name: Beaker -Version: 1.8.0 +Version: 1.8.1 Summary: A Session and Caching library with WSGI Middleware -Home-page: http://beaker.rtfd.org/ +Home-page: https://beaker.readthedocs.io/ Author: Ben Bangert, Mike Bayer, Philip Jenvey, Alessandro Molina Author-email: b...@groovie.org, pjen...@groovie.org, a...@turbogears.org License: BSD diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Beaker-1.8.0/beaker/__init__.py new/Beaker-1.8.1/beaker/__init__.py --- old/Beaker-1.8.0/beaker/__init__.py 2016-01-26 00:31:01.0 +0100 +++ new/Beaker-1.8.1/beaker/__init__.py 2016-10-24 01:25:44.0 +0200 @@ -1 +1 @@ -__version__ = '1.8.0' +__version__ = '1.8.1' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Beaker-1.8.0/beaker/cache.py new/Beaker-1.8.1/beaker/cache.py --- old/Beaker-1.8.0/beaker/cache.py2015-11-13 22:21:53.0 +0100 +++ new/Beaker-1.8.1/beaker/cache.py2016-09-17 17:01:47.0 +0200 @@ -99,9 +99,9 @@ if not isinstance(sys.exc_info()[1], DistributionNotFound): import traceback try: -from io import StringIO +from StringIO import StringIO # Python2 except ImportError: -from StringIO import StringIO +from io import StringIO# Python3 tb = StringIO() traceback.print
commit python3-Beaker for openSUSE:Factory
Hello community, here is the log from the commit of package python3-Beaker for openSUSE:Factory checked in at 2016-05-25 21:22:38 Comparing /work/SRC/openSUSE:Factory/python3-Beaker (Old) and /work/SRC/openSUSE:Factory/.python3-Beaker.new (New) Package is "python3-Beaker" Changes: --- /work/SRC/openSUSE:Factory/python3-Beaker/python3-Beaker.changes 2016-02-01 19:57:06.0 +0100 +++ /work/SRC/openSUSE:Factory/.python3-Beaker.new/python3-Beaker.changes 2016-05-25 21:23:00.0 +0200 @@ -1,0 +2,8 @@ +Sun May 8 06:56:54 UTC 2016 - a...@gmx.de + +- specfile: + * changed to https for source url + * updated source url to files.pythonhosted.org + + +--- Other differences: -- ++ python3-Beaker.spec ++ --- /var/tmp/diff_new_pack.TRLA2T/_old 2016-05-25 21:23:01.0 +0200 +++ /var/tmp/diff_new_pack.TRLA2T/_new 2016-05-25 21:23:01.0 +0200 @@ -23,7 +23,7 @@ Summary:A Session and Caching library with WSGI Middleware License:BSD-3-Clause Group: Development/Languages/Python -Source: http://pypi.python.org/packages/source/B/Beaker/Beaker-%{version}.tar.gz +Source: https://files.pythonhosted.org/packages/source/B/Beaker/Beaker-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: fdupes BuildRequires: python3-devel
commit python3-Beaker for openSUSE:Factory
Hello community, here is the log from the commit of package python3-Beaker for openSUSE:Factory checked in at 2016-02-01 19:56:35 Comparing /work/SRC/openSUSE:Factory/python3-Beaker (Old) and /work/SRC/openSUSE:Factory/.python3-Beaker.new (New) Package is "python3-Beaker" Changes: --- /work/SRC/openSUSE:Factory/python3-Beaker/python3-Beaker.changes 2015-04-27 13:05:17.0 +0200 +++ /work/SRC/openSUSE:Factory/.python3-Beaker.new/python3-Beaker.changes 2016-02-01 19:57:06.0 +0100 @@ -1,0 +2,18 @@ +Sat Jan 30 17:57:04 UTC 2016 - a...@gmx.de + +- specfile: + * update copyright year + +- update to version 1.8.0: + * Encrypted sessions can now specify nonce length for salt +generation through encrypt_nonce_bits parameter. set it to 48 for +backward compatibility with sessions generated before 1.8.0 + * kwargs support in @cache_region decorator + * annotations support in @cache_region decorator + * data_serializer parameter in Session can now specify json to avoid +pickle security issues + * Invalid cookies are now skipped in cookie based sessions + * Memcached based on PyLibMC now share same connection pool for same +url + +--- Old: Beaker-1.7.0.tar.gz New: Beaker-1.8.0.tar.gz Other differences: -- ++ python3-Beaker.spec ++ --- /var/tmp/diff_new_pack.U5wcME/_old 2016-02-01 19:57:07.0 +0100 +++ /var/tmp/diff_new_pack.U5wcME/_new 2016-02-01 19:57:07.0 +0100 @@ -1,7 +1,7 @@ # # spec file for package python3-Beaker # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: python3-Beaker -Version:1.7.0 +Version:1.8.0 Release:0 Url:http://beaker.rtfd.org/ Summary:A Session and Caching library with WSGI Middleware ++ Beaker-1.7.0.tar.gz -> Beaker-1.8.0.tar.gz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Beaker-1.7.0/Beaker.egg-info/PKG-INFO new/Beaker-1.8.0/Beaker.egg-info/PKG-INFO --- old/Beaker-1.7.0/Beaker.egg-info/PKG-INFO 2015-04-22 17:32:50.0 +0200 +++ new/Beaker-1.8.0/Beaker.egg-info/PKG-INFO 2016-01-27 12:40:12.0 +0100 @@ -1,10 +1,10 @@ Metadata-Version: 1.1 Name: Beaker -Version: 1.7.0 +Version: 1.8.0 Summary: A Session and Caching library with WSGI Middleware Home-page: http://beaker.rtfd.org/ -Author: Ben Bangert, Mike Bayer, Philip Jenvey -Author-email: b...@groovie.org, pjen...@groovie.org +Author: Ben Bangert, Mike Bayer, Philip Jenvey, Alessandro Molina +Author-email: b...@groovie.org, pjen...@groovie.org, a...@turbogears.org License: BSD Description: = Cache and Session Library @@ -81,6 +81,7 @@ Classifier: Programming Language :: Python :: 3.2 Classifier: Programming Language :: Python :: 3.3 Classifier: Programming Language :: Python :: 3.4 +Classifier: Programming Language :: Python :: 3.5 Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content Classifier: Topic :: Internet :: WWW/HTTP :: WSGI Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Beaker-1.7.0/Beaker.egg-info/SOURCES.txt new/Beaker-1.8.0/Beaker.egg-info/SOURCES.txt --- old/Beaker-1.7.0/Beaker.egg-info/SOURCES.txt2015-04-22 17:32:50.0 +0200 +++ new/Beaker-1.8.0/Beaker.egg-info/SOURCES.txt2016-01-27 12:40:12.0 +0100 @@ -6,6 +6,7 @@ Beaker.egg-info/dependency_links.txt Beaker.egg-info/entry_points.txt Beaker.egg-info/not-zip-safe +Beaker.egg-info/pbr.json Beaker.egg-info/requires.txt Beaker.egg-info/top_level.txt beaker/__init__.py @@ -13,6 +14,7 @@ beaker/cache.py beaker/container.py beaker/converters.py +beaker/cookie.py beaker/exceptions.py beaker/middleware.py beaker/session.py diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Beaker-1.7.0/Beaker.egg-info/pbr.json new/Beaker-1.8.0/Beaker.egg-info/pbr.json --- old/Beaker-1.7.0/Beaker.egg-info/pbr.json 1970-01-01 01:00:00.0 +0100 +++ new/Beaker-1.8.0/Beaker.egg-info/pbr.json 2015-08-15 21:32:53.0 +0200 @@ -0,0 +1 @@ +{"is_release": false, "git_version": "5c407db"} \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Beaker-1.7.0/Beaker.egg-info/requires.txt new/Beaker-1.8
commit python3-Beaker for openSUSE:Factory
Hello community, here is the log from the commit of package python3-Beaker for openSUSE:Factory checked in at 2015-04-27 13:05:16 Comparing /work/SRC/openSUSE:Factory/python3-Beaker (Old) and /work/SRC/openSUSE:Factory/.python3-Beaker.new (New) Package is "python3-Beaker" Changes: --- /work/SRC/openSUSE:Factory/python3-Beaker/python3-Beaker.changes 2015-04-25 21:51:01.0 +0200 +++ /work/SRC/openSUSE:Factory/.python3-Beaker.new/python3-Beaker.changes 2015-04-27 13:05:17.0 +0200 @@ -1,0 +2,7 @@ +Sat Apr 25 19:11:10 UTC 2015 - benoit.mo...@gmx.fr + +- add fdupes as BuildRequires and call it after install +- switch from distribute to setuptools +- do not delete the first line of pbkdf2.py: fixed upstream + +--- Other differences: -- ++ python3-Beaker.spec ++ --- /var/tmp/diff_new_pack.kdinoi/_old 2015-04-27 13:05:17.0 +0200 +++ /var/tmp/diff_new_pack.kdinoi/_new 2015-04-27 13:05:17.0 +0200 @@ -25,8 +25,9 @@ Group: Development/Languages/Python Source: http://pypi.python.org/packages/source/B/Beaker/Beaker-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildRequires: fdupes BuildRequires: python3-devel -BuildRequires: python3-distribute +BuildRequires: python3-setuptools BuildArch: noarch %description @@ -62,13 +63,13 @@ %prep %setup -q -n Beaker-%{version} -sed -i "1d" beaker/crypto/pbkdf2.py # Fix non-executable script %build python3 setup.py build %install python3 setup.py install --prefix=%{_prefix} --root=%{buildroot} +%fdupes %buildroot/%_prefix %files %defattr(-,root,root,-)
commit python3-Beaker for openSUSE:Factory
Hello community, here is the log from the commit of package python3-Beaker for openSUSE:Factory checked in at 2015-04-25 21:50:59 Comparing /work/SRC/openSUSE:Factory/python3-Beaker (Old) and /work/SRC/openSUSE:Factory/.python3-Beaker.new (New) Package is "python3-Beaker" Changes: --- /work/SRC/openSUSE:Factory/python3-Beaker/python3-Beaker.changes 2015-01-23 15:46:17.0 +0100 +++ /work/SRC/openSUSE:Factory/.python3-Beaker.new/python3-Beaker.changes 2015-04-25 21:51:01.0 +0200 @@ -1,0 +2,24 @@ +Sat Apr 25 18:11:17 UTC 2015 - a...@gmx.de + +- specfile: + * removed python3 and 2to3 requirements + * added REAMDE.rst, removed CHANGELOG LICENSE (not in tar-ball anymore) + +- update to version 1.7.0: + * Beaker no longer supports python 2.4 and 2.5 + * Beaker now supports Python 2.6, 2.7, 3.2, 3.3, 3.4 without 2to3 +usage + * Fixed Encrypted Cookie Session on Python3 #57 + * New pbkdf2 mobule working on Python3 #21 + * Fixed Test suite on Python 3.3 #53, #51 + +- changes from version 1.6.5: + * @cached decorator now keeps docstring of decorated method. + * Fix crash when Session accessed_time is not available, this +happened when session encrypt_key was changed. + * Fix cache regions not providing a default key length even though +this was required and examples in the doc didn’t provide it. + * Fix crash when cache expire wasn’t an int, this happened when +caching options were loaded from a config file. + +--- Old: Beaker-1.6.4.tar.gz New: Beaker-1.7.0.tar.gz Other differences: -- ++ python3-Beaker.spec ++ --- /var/tmp/diff_new_pack.2lxnVp/_old 2015-04-25 21:51:01.0 +0200 +++ /var/tmp/diff_new_pack.2lxnVp/_new 2015-04-25 21:51:01.0 +0200 @@ -1,7 +1,7 @@ # # spec file for package python3-Beaker # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: python3-Beaker -Version:1.6.4 +Version:1.7.0 Release:0 Url:http://beaker.rtfd.org/ Summary:A Session and Caching library with WSGI Middleware @@ -25,8 +25,6 @@ Group: Development/Languages/Python Source: http://pypi.python.org/packages/source/B/Beaker/Beaker-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build -BuildRequires: python3 -BuildRequires: python3-2to3 BuildRequires: python3-devel BuildRequires: python3-distribute BuildArch: noarch @@ -74,7 +72,7 @@ %files %defattr(-,root,root,-) -%doc CHANGELOG LICENSE +%doc README.rst %{python3_sitelib}/beaker/ %{python3_sitelib}/Beaker-%{version}-py%{py3_ver}.egg-info ++ Beaker-1.6.4.tar.gz -> Beaker-1.7.0.tar.gz ++ 3912 lines of diff (skipped)
commit python3-Beaker for openSUSE:Factory
Hello community, here is the log from the commit of package python3-Beaker for openSUSE:Factory checked in at 2015-01-23 15:46:16 Comparing /work/SRC/openSUSE:Factory/python3-Beaker (Old) and /work/SRC/openSUSE:Factory/.python3-Beaker.new (New) Package is "python3-Beaker" Changes: --- /work/SRC/openSUSE:Factory/python3-Beaker/python3-Beaker.changes 2013-06-21 18:43:48.0 +0200 +++ /work/SRC/openSUSE:Factory/.python3-Beaker.new/python3-Beaker.changes 2015-01-23 15:46:17.0 +0100 @@ -1,0 +2,7 @@ +Sun Jan 10 00:51:53 UTC 2015 - a...@gmx.de + +- specfile: + * update copyright year + * remove python(abi) requirement + +--- Other differences: -- ++ python3-Beaker.spec ++ --- /var/tmp/diff_new_pack.Hipglv/_old 2015-01-23 15:46:18.0 +0100 +++ /var/tmp/diff_new_pack.Hipglv/_new 2015-01-23 15:46:18.0 +0100 @@ -1,7 +1,7 @@ # # spec file for package python3-Beaker # -# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -29,7 +29,6 @@ BuildRequires: python3-2to3 BuildRequires: python3-devel BuildRequires: python3-distribute -Requires: python(abi) = %{py3_ver} BuildArch: noarch %description -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit python3-Beaker for openSUSE:Factory
Hello community, here is the log from the commit of package python3-Beaker for openSUSE:Factory checked in at 2012-05-29 13:52:56 Comparing /work/SRC/openSUSE:Factory/python3-Beaker (Old) and /work/SRC/openSUSE:Factory/.python3-Beaker.new (New) Package is "python3-Beaker", Maintainer is "" Changes: New Changes file: NO CHANGES FILE!!! New: _link Other differences: -- ++ _link ++ -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org