Tue Jun 20 07:32:19 2017 UTC ()
1.1.11

orm

[orm] [bug] Fixed issue with subquery eagerloading which continues on from the series of issues fixed in 2699, 3106, 3893 involving that the “subquery” contains the correct FROM clause when beginning from a joined inheritance subclass and then subquery eager loading onto a relationship from the base class, while the query also includes criteria against the subclass. The fix in the previous tickets did not accommodate for additional subqueryload operations loading more deeply from the first level, so the fix has been further generalized.

sql

[sql] [bug] Fixed AttributeError which would occur in WithinGroup construct during an iteration of the structure.

postgresql

[postgresql] [bug] Continuing with the fix that correctly handles Postgresql version string “10devel” released in 1.1.8, an additional regexp bump to handle version strings of the form “10beta1”. While Postgresql now offers better ways to get this information, we are sticking w/ the regexp at least through 1.1.x for the least amount of risk to compatibility w/ older or alternate Postgresql databases.

[postgresql] [bug] Fixed bug where using ARRAY with a string type that features a collation would fail to produce the correct syntax within CREATE TABLE.

mysql

[mysql] [bug] MySQL 5.7 has introduced permission limiting for the “SHOW VARIABLES” command; the MySQL dialect will now handle when SHOW returns no row, in particular for the initial fetch of SQL_MODE, and will emit a warning that user permissions should be modified to allow the row to be present.

mssql

[mssql] [bug] Fixed bug where SQL Server transaction isolation must be fetched from a different view when using Azure data warehouse, the query is now attempted against both views and then a NotImplemented is raised unconditionally if failure continues to provide the best resiliency against future arbitrary API changes in new SQL Server versions.

[mssql] [bug] Added a placeholder type mssql.XML to the SQL Server dialect, so that a reflected table which includes this type can be re-rendered as a CREATE TABLE. The type has no special round-trip behavior nor does it currently support additional qualifying arguments.

oracle

[oracle] [bug] Support for two-phase transactions has been removed entirely for cx_Oracle when version 6.0b1 or later of the DBAPI is in use. The two- phase feature historically has never been usable under cx_Oracle 5.x in any case, and cx_Oracle 6.x has removed the connection-level “twophase” flag upon which this feature relied.


(adam)
diff -r1.28 -r1.29 pkgsrc/databases/py-sqlalchemy/Makefile
diff -r1.23 -r1.24 pkgsrc/databases/py-sqlalchemy/distinfo

cvs diff -r1.28 -r1.29 pkgsrc/databases/py-sqlalchemy/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/py-sqlalchemy/Makefile 2017/06/01 09:58:42 1.28
+++ pkgsrc/databases/py-sqlalchemy/Makefile 2017/06/20 07:32:19 1.29
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: Makefile,v 1.28 2017/06/01 09:58:42 adam Exp $ 1# $NetBSD: Makefile,v 1.29 2017/06/20 07:32:19 adam Exp $
2 2
3DISTNAME= SQLAlchemy-1.1.10 3DISTNAME= SQLAlchemy-1.1.11
4PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl} 4PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl}
5CATEGORIES= databases python 5CATEGORIES= databases python
6MASTER_SITES= ${MASTER_SITE_PYPI:=S/SQLAlchemy/} 6MASTER_SITES= ${MASTER_SITE_PYPI:=S/SQLAlchemy/}
7 7
8MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
9HOMEPAGE= http://www.sqlalchemy.org/ 9HOMEPAGE= http://www.sqlalchemy.org/
10COMMENT= Python SQL toolkit and Object Relational Mapper 10COMMENT= Python SQL toolkit and Object Relational Mapper
11LICENSE= mit 11LICENSE= mit
12 12
13BUILD_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock 13BUILD_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
14BUILD_DEPENDS+= ${PYPKGPREFIX}-test-xdist-[0-9]*:../../devel/py-test-xdist 14BUILD_DEPENDS+= ${PYPKGPREFIX}-test-xdist-[0-9]*:../../devel/py-test-xdist
15 15
16REPLACE_PYTHON= lib/sqlalchemy/testing/runner.py 16REPLACE_PYTHON= lib/sqlalchemy/testing/runner.py

cvs diff -r1.23 -r1.24 pkgsrc/databases/py-sqlalchemy/distinfo (expand / switch to unified diff)

--- pkgsrc/databases/py-sqlalchemy/distinfo 2017/06/01 09:58:42 1.23
+++ pkgsrc/databases/py-sqlalchemy/distinfo 2017/06/20 07:32:19 1.24
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.23 2017/06/01 09:58:42 adam Exp $ 1$NetBSD: distinfo,v 1.24 2017/06/20 07:32:19 adam Exp $
2 2
3SHA1 (SQLAlchemy-1.1.10.tar.gz) = 8df54e8f6aa252429b70165115174a29c9db83be 3SHA1 (SQLAlchemy-1.1.11.tar.gz) = 921ecf9f84994ac4aeedeea967d60fa7669e8cb9
4RMD160 (SQLAlchemy-1.1.10.tar.gz) = d7809d903f1f58b92aabcd7a57c147faeb9e624c 4RMD160 (SQLAlchemy-1.1.11.tar.gz) = d251d6b514e661a1f412a3677448507f1fa7a129
5SHA512 (SQLAlchemy-1.1.10.tar.gz) = 96b9d8630ceffc26eb9a707fba004c8ea8d551835a4aec45cad7185f51cca9fd16fc49715fb158cb861e2db1b2fb9baf23f3cce0c856a27a49899272b91bd9f4 5SHA512 (SQLAlchemy-1.1.11.tar.gz) = 322ec0baa6360099eb000ddd36e28267f64019eb72201ecf60fc478591679e0dd5d2b1139a93036d2ec0165c588ea5836a67ed21dbf7c423b64432589bd73de4
6Size (SQLAlchemy-1.1.10.tar.gz) = 5191849 bytes 6Size (SQLAlchemy-1.1.11.tar.gz) = 5197520 bytes