summaryrefslogtreecommitdiff
path: root/databases/py-sqlalchemy/Makefile
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2019-01-28 10:49:50 +0000
committeradam <adam@pkgsrc.org>2019-01-28 10:49:50 +0000
commit9c4a3efe5bfba0b4177da0d5ea66772e9bc3adba (patch)
tree323d2cd7d3462182de5a346e04f9985bd58eaa81 /databases/py-sqlalchemy/Makefile
parent0f97b930ca56ee00b293ce13ac78c6798cba8d7f (diff)
downloadpkgsrc-9c4a3efe5bfba0b4177da0d5ea66772e9bc3adba.tar.gz
py-sqlalchemy: updated to 1.2.17
1.2.17 [orm] [feature] Added new event hooks QueryEvents.before_compile_update() and QueryEvents.before_compile_delete() which complement QueryEvents.before_compile() in the case of the Query.update() and Query.delete() methods. [orm] [bug] Fixed issue where when using single-table inheritance in conjunction with a joined inheritance hierarchy that uses “with polymorphic” loading, the “single table criteria” for that single-table entity could get confused for that of other entities from the same hierarchy used in the same query.The adaption of the “single table criteria” is made more specific to the target entity to avoid it accidentally getting adapted to other tables in the query. [postgresql] [bug] Revised the query used when reflecting CHECK constraints to make use of the pg_get_constraintdef function, as the consrc column is being deprecated in PG 12. Thanks to John A Stevenson for the tip. [oracle] [bug] Fixed regression in integer precision logic due to the refactor of the cx_Oracle dialect in 1.2. We now no longer apply the cx_Oracle.NATIVE_INT type to result columns sending integer values (detected as positive precision with scale ==0) which encounters integer overflow issues with values that go beyond the 32 bit boundary. Instead, the output variable is left untyped so that cx_Oracle can choose the best option
Diffstat (limited to 'databases/py-sqlalchemy/Makefile')
-rw-r--r--databases/py-sqlalchemy/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/py-sqlalchemy/Makefile b/databases/py-sqlalchemy/Makefile
index 6f38e3552ae..8a3176a47c0 100644
--- a/databases/py-sqlalchemy/Makefile
+++ b/databases/py-sqlalchemy/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.48 2019/01/15 11:51:27 adam Exp $
+# $NetBSD: Makefile,v 1.49 2019/01/28 10:49:50 adam Exp $
-DISTNAME= SQLAlchemy-1.2.16
+DISTNAME= SQLAlchemy-1.2.17
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl}
CATEGORIES= databases python
MASTER_SITES= ${MASTER_SITE_PYPI:=S/SQLAlchemy/}