Hello community,
here is the log from the commit of package python-Flask-SQLAlchemy for
openSUSE:Factory checked in at 2020-07-24 09:57:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-Flask-SQLAlchemy (Old)
and /work/SRC/openSUSE:Factory/.python-Flask-SQLAlchemy.new.3592 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-Flask-SQLAlchemy"
Fri Jul 24 09:57:40 2020 rev:5 rq:822157 version:2.4.4
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-Flask-SQLAlchemy/python-Flask-SQLAlchemy.changes
2020-06-02 14:38:45.867545161 +0200
+++
/work/SRC/openSUSE:Factory/.python-Flask-SQLAlchemy.new.3592/python-Flask-SQLAlchemy.changes
2020-07-24 09:59:20.173608399 +0200
@@ -1,0 +2,7 @@
+Sat Jul 18 18:04:37 UTC 2020 - Arun Persaud <[email protected]>
+
+- update to version 2.4.4:
+ * Change base class of meta mixins to type. This fixes an issue
+ caused by a regression in CPython 3.8.4. :issue:`852`
+
+-------------------------------------------------------------------
Old:
----
Flask-SQLAlchemy-2.4.3.tar.gz
New:
----
Flask-SQLAlchemy-2.4.4.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-Flask-SQLAlchemy.spec ++++++
--- /var/tmp/diff_new_pack.HHUYk9/_old 2020-07-24 09:59:21.297609446 +0200
+++ /var/tmp/diff_new_pack.HHUYk9/_new 2020-07-24 09:59:21.301609449 +0200
@@ -18,7 +18,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-Flask-SQLAlchemy
-Version: 2.4.3
+Version: 2.4.4
Release: 0
Summary: SQLAlchemy support for Flask
License: BSD-3-Clause
++++++ Flask-SQLAlchemy-2.4.3.tar.gz -> Flask-SQLAlchemy-2.4.4.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Flask-SQLAlchemy-2.4.3/CHANGES.rst
new/Flask-SQLAlchemy-2.4.4/CHANGES.rst
--- old/Flask-SQLAlchemy-2.4.3/CHANGES.rst 2020-05-27 00:13:23.000000000
+0200
+++ new/Flask-SQLAlchemy-2.4.4/CHANGES.rst 2020-07-14 18:37:14.000000000
+0200
@@ -1,3 +1,12 @@
+Version 2.4.4
+-------------
+
+Released 2020-07-14
+
+- Change base class of meta mixins to ``type``. This fixes an issue
+ caused by a regression in CPython 3.8.4. :issue:`852`
+
+
Version 2.4.3
-------------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/Flask-SQLAlchemy-2.4.3/Flask_SQLAlchemy.egg-info/PKG-INFO
new/Flask-SQLAlchemy-2.4.4/Flask_SQLAlchemy.egg-info/PKG-INFO
--- old/Flask-SQLAlchemy-2.4.3/Flask_SQLAlchemy.egg-info/PKG-INFO
2020-05-27 00:14:33.000000000 +0200
+++ new/Flask-SQLAlchemy-2.4.4/Flask_SQLAlchemy.egg-info/PKG-INFO
2020-07-14 18:40:26.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 1.2
Name: Flask-SQLAlchemy
-Version: 2.4.3
+Version: 2.4.4
Summary: Adds SQLAlchemy support to your Flask application.
Home-page: https://github.com/pallets/flask-sqlalchemy
Author: Armin Ronacher
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Flask-SQLAlchemy-2.4.3/PKG-INFO
new/Flask-SQLAlchemy-2.4.4/PKG-INFO
--- old/Flask-SQLAlchemy-2.4.3/PKG-INFO 2020-05-27 00:14:33.831065400 +0200
+++ new/Flask-SQLAlchemy-2.4.4/PKG-INFO 2020-07-14 18:40:26.864290700 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 1.2
Name: Flask-SQLAlchemy
-Version: 2.4.3
+Version: 2.4.4
Summary: Adds SQLAlchemy support to your Flask application.
Home-page: https://github.com/pallets/flask-sqlalchemy
Author: Armin Ronacher
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Flask-SQLAlchemy-2.4.3/flask_sqlalchemy/__init__.py
new/Flask-SQLAlchemy-2.4.4/flask_sqlalchemy/__init__.py
--- old/Flask-SQLAlchemy-2.4.3/flask_sqlalchemy/__init__.py 2020-05-27
00:13:23.000000000 +0200
+++ new/Flask-SQLAlchemy-2.4.4/flask_sqlalchemy/__init__.py 2020-07-14
18:36:32.000000000 +0200
@@ -24,7 +24,7 @@
from .model import DefaultMeta
from . import utils
-__version__ = "2.4.3"
+__version__ = "2.4.4"
# the best timer function for the platform
if sys.platform == 'win32':
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Flask-SQLAlchemy-2.4.3/flask_sqlalchemy/model.py
new/Flask-SQLAlchemy-2.4.4/flask_sqlalchemy/model.py
--- old/Flask-SQLAlchemy-2.4.3/flask_sqlalchemy/model.py 2020-05-27
00:01:41.000000000 +0200
+++ new/Flask-SQLAlchemy-2.4.4/flask_sqlalchemy/model.py 2020-07-14
18:35:54.000000000 +0200
@@ -59,7 +59,7 @@
return camelcase_re.sub(_join, name).lstrip('_')
-class NameMetaMixin(object):
+class NameMetaMixin(type):
def __init__(cls, name, bases, d):
if should_set_tablename(cls):
cls.__tablename__ = camel_to_snake_case(cls.__name__)
@@ -111,7 +111,7 @@
del cls.__tablename__
-class BindMetaMixin(object):
+class BindMetaMixin(type):
def __init__(cls, name, bases, d):
bind_key = (
d.pop('__bind_key__', None)