databases/py-peewee: Update to 3.3.4.
3.3.4 - Added a BinaryUUIDField class for efficiently storing UUIDs in 16-bytes. - Fix dataset's update_cache() logic so that when updating a single table that was newly-added, we also ensure that all dependent tables are updated at the same time. 3.3.3 - More efficient implementation of model dependency-graph generation. Improves performance of recursively deleting related objects by omitting unnecessary subqueries. - Added union(), union_all(), intersect() and except_() to the Model-specific query implementations. This was an oversight that should have been patched in 3.3.2, but is fixed in 3.3.3. - Major cleanup to test runner and standardized test skipping logic to integrate with standard-library unittest conventions. 3.3.2 - Add methods for union(), union_all, intersect() and except_(). Previously, these methods were only available as operator overloads. - Removed some Python 2.6-specific support code, as 2.6 is no longer officially supported. - Fixed model-graph resolution logic for deferred foreign-keys. - Better support for UPDATE...FROM queries (Postgresql).
This commit is contained in:
parent
a191723a23
commit
e97ef12745
2 changed files with 7 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.37 2018/04/27 13:52:59 fhajny Exp $
|
||||
# $NetBSD: Makefile,v 1.38 2018/05/14 10:54:19 fhajny Exp $
|
||||
|
||||
DISTNAME= peewee-3.3.1
|
||||
DISTNAME= peewee-3.3.4
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
||||
CATEGORIES= databases python
|
||||
MASTER_SITES= ${MASTER_SITE_PYPI:=p/peewee/}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.34 2018/04/27 13:52:59 fhajny Exp $
|
||||
$NetBSD: distinfo,v 1.35 2018/05/14 10:54:19 fhajny Exp $
|
||||
|
||||
SHA1 (peewee-3.3.1.tar.gz) = 4c21a73a35aae8ea9ebe864f6d0a1587ee8865b7
|
||||
RMD160 (peewee-3.3.1.tar.gz) = 9f6456469a4f82b13f85aae21f2c121331500e69
|
||||
SHA512 (peewee-3.3.1.tar.gz) = ba9b1754f49077a2e9c7a47f83af958a27b5ce6a81351b383b6905e33c956c8874e18279ffbfaa1a5364fc57e00de0609886616a3973e8baf356dec4c9b756b9
|
||||
Size (peewee-3.3.1.tar.gz) = 591882 bytes
|
||||
SHA1 (peewee-3.3.4.tar.gz) = c09528a05b42040a66579935287e84b0f33aa212
|
||||
RMD160 (peewee-3.3.4.tar.gz) = dd51e82436dff559aa82b4947ce4c7a1e6771462
|
||||
SHA512 (peewee-3.3.4.tar.gz) = a1b69b71a7cbb96baa9b99f6ad3f991003198919c51db10b2c17c7f2815e24474e1c244eff54f19d89d60ef234b5723d8d7d7cb860af5408e85e4d3a3bec1b3e
|
||||
Size (peewee-3.3.4.tar.gz) = 593115 bytes
|
||||
|
|
Loading…
Reference in a new issue