pkgsrc-Changes archive

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

CVS commit: pkgsrc/databases/py-peewee



Module Name:    pkgsrc
Committed By:   adam
Date:           Mon Mar 30 13:08:24 UTC 2020

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

Log Message:
py-peewee: updated to 3.13.2

3.13.2

* Allow aggregate functions to support an `ORDER BY` clause, via the addition
  of an `order_by()` method to the function (`fn`) instance.
* Fix `prefetch()` bug, where related "backref" instances were marked as dirty,
  even though they had no changes.
* Support `LIMIT 0`. Previously a limit of 0 would be translated into
  effectively an unlimited query on MySQL.
* Support indexing into arrays using expressions with Postgres array fields.
* Ensure postgres introspection methods return the columns for multi-column
  indexes in the correct order.
* Add support for arrays of UUIDs to postgres introspection.
* Fix introspection of columns w/capitalized table names in postgres.
* Fix to ensure correct exception is raised in SqliteQueueDatabase when
  iterating over cursor/result-set.
* Fix bug comparing subquery against a scalar value.
* Fix issue resolving composite primary-keys that include foreign-keys when
  building the model-graph.
* Allow model-classes to be passed as arguments, e.g., to a table function.
* Ensure postgres `JSONField.concat()` accepts expressions as arguments.


To generate a diff of this commit:
cvs rdiff -u -r1.63 -r1.64 pkgsrc/databases/py-peewee/Makefile
cvs rdiff -u -r1.55 -r1.56 pkgsrc/databases/py-peewee/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-peewee/Makefile
diff -u pkgsrc/databases/py-peewee/Makefile:1.63 pkgsrc/databases/py-peewee/Makefile:1.64
--- pkgsrc/databases/py-peewee/Makefile:1.63    Sun Dec  8 21:46:35 2019
+++ pkgsrc/databases/py-peewee/Makefile Mon Mar 30 13:08:24 2020
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.63 2019/12/08 21:46:35 adam Exp $
+# $NetBSD: Makefile,v 1.64 2020/03/30 13:08:24 adam Exp $
 
-DISTNAME=      peewee-3.13.1
+DISTNAME=      peewee-3.13.2
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    databases python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=p/peewee/}

Index: pkgsrc/databases/py-peewee/distinfo
diff -u pkgsrc/databases/py-peewee/distinfo:1.55 pkgsrc/databases/py-peewee/distinfo:1.56
--- pkgsrc/databases/py-peewee/distinfo:1.55    Sun Dec  8 21:46:35 2019
+++ pkgsrc/databases/py-peewee/distinfo Mon Mar 30 13:08:24 2020
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.55 2019/12/08 21:46:35 adam Exp $
+$NetBSD: distinfo,v 1.56 2020/03/30 13:08:24 adam Exp $
 
-SHA1 (peewee-3.13.1.tar.gz) = f54ae7f85b657cbbd44477a2b708fb720451f247
-RMD160 (peewee-3.13.1.tar.gz) = f3e0cc75c6c63d58518eb1786d85a6f76a9bf7b7
-SHA512 (peewee-3.13.1.tar.gz) = 34ee10adeb23ca109b6d35e57524504bb5f48d369220afa1027a8d7417583b55acd9d2515afce9b697ad0cde1596ea8cb6a4573d757b9c862941b3f1ed6bda9d
-Size (peewee-3.13.1.tar.gz) = 843897 bytes
+SHA1 (peewee-3.13.2.tar.gz) = 936981805ed7babe8266d3ee091500bf6d4065be
+RMD160 (peewee-3.13.2.tar.gz) = fb423a19e8b273ead96432a758ef150bcfe7523b
+SHA512 (peewee-3.13.2.tar.gz) = f61fc953bacbcdb077281a40d213600dc18b688c40fcbb8f3b3e3b0caaa0ade7c77643d63f82c649d29df0263a536489c0947312bb7b43b672a88b6e8f984ccd
+Size (peewee-3.13.2.tar.gz) = 870012 bytes
 SHA1 (patch-setup.py) = 2d4d9fde18df606b584dffe04aa9da22de3e4dcc



Home | Main Index | Thread Index | Old Index