diff options
author | fhajny <fhajny@pkgsrc.org> | 2018-05-21 13:18:16 +0000 |
---|---|---|
committer | fhajny <fhajny@pkgsrc.org> | 2018-05-21 13:18:16 +0000 |
commit | c44a2475327e8b8bc2a54117dd669aeb14a07a9d (patch) | |
tree | 0869903c4386e8027559211bd941a7ab9a93b312 /databases | |
parent | 93ab983d69fe777054115fd1ff9314068e9c2459 (diff) | |
download | pkgsrc-c44a2475327e8b8bc2a54117dd669aeb14a07a9d.tar.gz |
databases/py-peewee: Update to 3.4.0.
Backwards-incompatible changes
- The regexp() operation is now case-sensitive for MySQL and Postgres.
To perform case-insensitive regexp operations, use iregexp().
- The SQLite BareField() field-type now supports all column
constraints except specifying the data-type. Previously it silently
ignored any column constraints.
- LIMIT and OFFSET parameters are now treated as parameterized values
instead of literals.
- The schema parameter for SQLite database introspection methods is no
longer ignored by default. The schema corresponds to the name given
to an attached database.
- ArrayField now accepts a new parameter field_kwargs, which is used
to pass information to the array field's field_class initializer.
New features and other changes
- SQLite backup interface supports specifying page-counts and a
user-defined progress handler.
- GIL is released when doing backups or during SQLite busy timeouts
(when using the peewee SQLite busy-handler).
- Add NATURAL join-type to the JOIN helper.
- Improved identifier quoting to allow specifying distinct
open/close-quote characters. Enables adding support for MSSQL, for
instance, which uses square brackets, e.g. [table].[column].
- Unify timeout interfaces for SQLite databases (use seconds
everywhere rather than mixing seconds and milliseconds, which was
confusing).
- Added attach() and detach() methods to SQLite database, making it
possible to attach additional databases (e.g. an in-memory cache
db).
Diffstat (limited to 'databases')
-rw-r--r-- | databases/py-peewee/Makefile | 4 | ||||
-rw-r--r-- | databases/py-peewee/distinfo | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/databases/py-peewee/Makefile b/databases/py-peewee/Makefile index f1dcea8fb35..b81c219e031 100644 --- a/databases/py-peewee/Makefile +++ b/databases/py-peewee/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.38 2018/05/14 10:54:19 fhajny Exp $ +# $NetBSD: Makefile,v 1.39 2018/05/21 13:18:16 fhajny Exp $ -DISTNAME= peewee-3.3.4 +DISTNAME= peewee-3.4.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= databases python MASTER_SITES= ${MASTER_SITE_PYPI:=p/peewee/} diff --git a/databases/py-peewee/distinfo b/databases/py-peewee/distinfo index 58c237bad6e..d8e3d5e3624 100644 --- a/databases/py-peewee/distinfo +++ b/databases/py-peewee/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.35 2018/05/14 10:54:19 fhajny Exp $ +$NetBSD: distinfo,v 1.36 2018/05/21 13:18:16 fhajny Exp $ -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 +SHA1 (peewee-3.4.0.tar.gz) = c3e3c363a3abb6575488c011a8552fb29494a0f7 +RMD160 (peewee-3.4.0.tar.gz) = 8c34f25da632eeeebf3f81962f0afd37e49411f2 +SHA512 (peewee-3.4.0.tar.gz) = 365eca9ab728ba9ac2375f48fe399c0cca0467d5389a4b98b5f8a448527f9fd18386d74fb5f1b58eab5046492773e3ff98bfeff7cb6eda7b8cea9bbcce254743 +Size (peewee-3.4.0.tar.gz) = 613603 bytes |