diff options
author | adam <adam@pkgsrc.org> | 2019-02-20 15:56:15 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2019-02-20 15:56:15 +0000 |
commit | 2ed83373f4587719585d233b8ace2ef23fce2e77 (patch) | |
tree | f556770d6a286717968024997bea2dc360f52831 /databases/py-sqlalchemy | |
parent | fcbeb96a733e1406e8b33967677d51646ca9a644 (diff) | |
download | pkgsrc-2ed83373f4587719585d233b8ace2ef23fce2e77.tar.gz |
py-sqlalchemy: updated to 1.2.18
1.2.18:
orm
[orm] [bug] Fixed a regression in 1.2 where a wildcard/load_only loader option would not work correctly against a loader path where of_type() were used to limit to a particular subclass. The fix only works for of_type() of a simple subclass so far, not a with_polymorphic entity which will be addressed in a separate issue; it is unlikely this latter case was working previously.
[orm] [bug] Fixed fairly simple but critical issue where the SessionEvents.pending_to_persistent() event would be invoked for objects not just when they move from pending to persistent, but when they were also already persistent and just being updated, thus causing the event to be invoked for all objects on every update.
sql
[sql] [bug] Fixed issue where the JSON type had a read-only JSON.should_evaluate_none attribute, which would cause failures when making use of the TypeEngine.evaluates_none() method in conjunction with this type. Pull request courtesy Sanjana S.
mysql
[mysql] [bug] Fixed a second regression caused by 4344 (the first was 4361), which works around MySQL issue 88718, where the lower casing function used was not correct for Python 2 with OSX/Windows casing conventions, which would then raise TypeError. Full coverage has been added to this logic so that every codepath is exercised in a mock style for all three casing conventions on all versions of Python. MySQL 8.0 has meanwhile fixed issue 88718 so the workaround is only applies to a particular span of MySQL 8.0 versions.
sqlite
[sqlite] [bug] Fixed bug in SQLite DDL where using an expression as a server side default required that it be contained within parenthesis to be accepted by the sqlite parser. Pull request courtesy Bartlomiej Biernacki.
mssql
[mssql] [bug] Fixed bug where the SQL Server “IDENTITY_INSERT” logic that allows an INSERT to proceed with an explicit value on an IDENTITY column was not detecting the case where Insert.values() were used with a dictionary that contained a Column as key and a SQL expression as a value
Diffstat (limited to 'databases/py-sqlalchemy')
-rw-r--r-- | databases/py-sqlalchemy/Makefile | 4 | ||||
-rw-r--r-- | databases/py-sqlalchemy/distinfo | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/databases/py-sqlalchemy/Makefile b/databases/py-sqlalchemy/Makefile index 8a3176a47c0..4a1a83e5fd3 100644 --- a/databases/py-sqlalchemy/Makefile +++ b/databases/py-sqlalchemy/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.49 2019/01/28 10:49:50 adam Exp $ +# $NetBSD: Makefile,v 1.50 2019/02/20 15:56:15 adam Exp $ -DISTNAME= SQLAlchemy-1.2.17 +DISTNAME= SQLAlchemy-1.2.18 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl} CATEGORIES= databases python MASTER_SITES= ${MASTER_SITE_PYPI:=S/SQLAlchemy/} diff --git a/databases/py-sqlalchemy/distinfo b/databases/py-sqlalchemy/distinfo index 77517a300cf..9cecddbcaa1 100644 --- a/databases/py-sqlalchemy/distinfo +++ b/databases/py-sqlalchemy/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.44 2019/01/28 10:49:50 adam Exp $ +$NetBSD: distinfo,v 1.45 2019/02/20 15:56:15 adam Exp $ -SHA1 (SQLAlchemy-1.2.17.tar.gz) = 0aa3388617a876f8b8e22eda7d347455a44973ee -RMD160 (SQLAlchemy-1.2.17.tar.gz) = 46cf42a1a5e2e40c7b6fe0802790aad488f7f4f7 -SHA512 (SQLAlchemy-1.2.17.tar.gz) = 87c97a8e5cc79e0b0f76820ee88fb72f001b8a707da4a3f52fe334e43d5d9f182d0d638df04d5e92e7587603232071180cc1b29a97788f9d9c57bf14c7af3bd6 -Size (SQLAlchemy-1.2.17.tar.gz) = 5670715 bytes +SHA1 (SQLAlchemy-1.2.18.tar.gz) = 16e532601a0cbe0070af9207c22302c190cc2690 +RMD160 (SQLAlchemy-1.2.18.tar.gz) = fd43fe4e04b86b101f6b4ef14257d6faa680e852 +SHA512 (SQLAlchemy-1.2.18.tar.gz) = a3074e0f7b9a307937f02ad030811413f3c92b7edcc4f1c6eda7c94c1178708f8c920840385a9b33c7952e224fe46dc73223aee00123e863abf6d1d446aebdb2 +Size (SQLAlchemy-1.2.18.tar.gz) = 5675143 bytes |