pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/databases/py-peewee databases/py-peewee: ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/0443f2ef3e13
branches:  trunk
changeset: 308335:0443f2ef3e13
user:      fhajny <fhajny%pkgsrc.org@localhost>
date:      Mon May 21 13:18:16 2018 +0000

description:
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:

 databases/py-peewee/Makefile |   4 ++--
 databases/py-peewee/distinfo |  10 +++++-----
 2 files changed, 7 insertions(+), 7 deletions(-)

diffs (27 lines):

diff -r 4f5bd10a38fa -r 0443f2ef3e13 databases/py-peewee/Makefile
--- a/databases/py-peewee/Makefile      Mon May 21 12:53:29 2018 +0000
+++ b/databases/py-peewee/Makefile      Mon May 21 13:18:16 2018 +0000
@@ -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 -r 4f5bd10a38fa -r 0443f2ef3e13 databases/py-peewee/distinfo
--- a/databases/py-peewee/distinfo      Mon May 21 12:53:29 2018 +0000
+++ b/databases/py-peewee/distinfo      Mon May 21 13:18:16 2018 +0000
@@ -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



Home | Main Index | Thread Index | Old Index