Update databases/py-peewee to 2.6.3
2.6.3 - New `fields` module. - Fix runtests to not run dupes. - Add `FixedCharField`, fixes #631 2.6.2 - #641, fixed bug with exception wrapping and Python 2.6 - #634, fixed bug where correct query result wrapper was not being used for certain composite queries. - #625, cleaned up some example code. - #614, fixed bug with aggregate_rows() when there are multiple joins to the same table. - Added create_or_get() as a companion to get_or_create(). - Added support for ON CONFLICT clauses for UPDATE and INSERT queries. Docs. - Added a JSONKeyStore to playhouse.kv. - Added Cythonized version of strip_parens(), with plans to perhaps move more performance-critical code to Cython in the future. - Added docs on specifying vendor-specific database parameters. - Added docs on specifying field default values (both client and server-side). - Added docs on foreign key field back-references. - Added docs for models without a primary key. - Cleaned up docs on prefetch() and aggregate_rows().
This commit is contained in:
parent
b3e155132e
commit
caf35e0d03
3 changed files with 10 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.5 2015/06/10 17:34:25 fhajny Exp $
|
||||
# $NetBSD: Makefile,v 1.6 2015/08/24 20:01:48 fhajny Exp $
|
||||
|
||||
DISTNAME= peewee-2.6.1
|
||||
DISTNAME= peewee-2.6.3
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= ${MASTER_SITE_GITHUB:=coleifer/}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.5 2015/06/10 17:34:25 fhajny Exp $
|
||||
@comment $NetBSD: PLIST,v 1.6 2015/08/24 20:01:48 fhajny Exp $
|
||||
bin/pwiz.py
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
||||
|
@ -32,6 +32,9 @@ ${PYSITELIB}/playhouse/db_url.pyo
|
|||
${PYSITELIB}/playhouse/djpeewee.py
|
||||
${PYSITELIB}/playhouse/djpeewee.pyc
|
||||
${PYSITELIB}/playhouse/djpeewee.pyo
|
||||
${PYSITELIB}/playhouse/fields.py
|
||||
${PYSITELIB}/playhouse/fields.pyc
|
||||
${PYSITELIB}/playhouse/fields.pyo
|
||||
${PYSITELIB}/playhouse/flask_utils.py
|
||||
${PYSITELIB}/playhouse/flask_utils.pyc
|
||||
${PYSITELIB}/playhouse/flask_utils.pyo
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.5 2015/06/10 17:34:25 fhajny Exp $
|
||||
$NetBSD: distinfo,v 1.6 2015/08/24 20:01:48 fhajny Exp $
|
||||
|
||||
SHA1 (peewee-2.6.1.tar.gz) = 9454702c996ad79f8d20e72a4acc57ff576ab009
|
||||
RMD160 (peewee-2.6.1.tar.gz) = 8a270194f38a406e3677d8d3b5d4517af802960d
|
||||
Size (peewee-2.6.1.tar.gz) = 567141 bytes
|
||||
SHA1 (peewee-2.6.3.tar.gz) = 2244a47401cef839a517f546248efbbd4b89d6f7
|
||||
RMD160 (peewee-2.6.3.tar.gz) = faa6049b0d639ff6e7faf70ac65ebefe2d756284
|
||||
Size (peewee-2.6.3.tar.gz) = 574936 bytes
|
||||
|
|
Loading…
Reference in a new issue