pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/databases/py-sqlalchemy



Module Name:    pkgsrc
Committed By:   adam
Date:           Wed Feb 20 15:56:15 UTC 2019

Modified Files:
        pkgsrc/databases/py-sqlalchemy: Makefile distinfo

Log Message:
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


To generate a diff of this commit:
cvs rdiff -u -r1.49 -r1.50 pkgsrc/databases/py-sqlalchemy/Makefile
cvs rdiff -u -r1.44 -r1.45 pkgsrc/databases/py-sqlalchemy/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/databases/py-sqlalchemy/Makefile
diff -u pkgsrc/databases/py-sqlalchemy/Makefile:1.49 pkgsrc/databases/py-sqlalchemy/Makefile:1.50
--- pkgsrc/databases/py-sqlalchemy/Makefile:1.49        Mon Jan 28 10:49:50 2019
+++ pkgsrc/databases/py-sqlalchemy/Makefile     Wed Feb 20 15:56:15 2019
@@ -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/}

Index: pkgsrc/databases/py-sqlalchemy/distinfo
diff -u pkgsrc/databases/py-sqlalchemy/distinfo:1.44 pkgsrc/databases/py-sqlalchemy/distinfo:1.45
--- pkgsrc/databases/py-sqlalchemy/distinfo:1.44        Mon Jan 28 10:49:50 2019
+++ pkgsrc/databases/py-sqlalchemy/distinfo     Wed Feb 20 15:56:15 2019
@@ -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



Home | Main Index | Thread Index | Old Index