Accepting request 702514 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/702514 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-peewee?expand=0&rev=7
This commit is contained in:
commit
36712ea162
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:603337153536b85c3c5b5e84df4ae0f9cbaff09163a3739451d167e0ad3fe1f7
|
||||
size 2232112
|
3
peewee-3.9.5.tar.gz
Normal file
3
peewee-3.9.5.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f0249be468e3b119a8ad83f686e7fe161303197e0534e3cdff8fa5a5417c01a5
|
||||
size 2276358
|
@ -1,3 +1,33 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun May 12 20:41:48 UTC 2019 - Alexei Podvalsky <avvissu@yandex.by>
|
||||
|
||||
- Update to 3.9.5:
|
||||
* Added small helper for setting timezone when using Postgres.
|
||||
* Improved SQL generation for VALUES clause.
|
||||
* Support passing resolution to TimestampField as a power-of-10.
|
||||
* Small improvements to INSERT queries when the primary-key is not
|
||||
an auto-incrementing integer, but is generated by the database server (eg uuid).
|
||||
* Cleanups to virtual table implementation and python-to-sqlite value conversions.
|
||||
* Fixed bug related to binding previously-unbound models to a database using a
|
||||
context manager, #1913.
|
||||
- Change in 3.9.4:
|
||||
* Add Model.bulk_update() method for bulk-updating fields across multiple
|
||||
model instances. Docs.
|
||||
* Add lazy_load parameter to ForeignKeyField. When initialized with lazy_load=False,
|
||||
the foreign-key will not use an additional query to resolve the related model instance.
|
||||
* Added Model.truncate_table() method.
|
||||
* The reflection and pwiz extensions now attempt to be smarter about converting
|
||||
database table and column names into snake-case.
|
||||
* Bulk insert via insert_many() no longer require specification of the fields
|
||||
argument when the inserted rows are lists/tuples. In that case, the fields
|
||||
will be inferred to be all model fields except any auto-increment id.
|
||||
* Add DatabaseProxy, which implements several of the Database class context managers.
|
||||
* Add support for window function frame exclusion and added built-in support for the GROUPS frame type.
|
||||
* Add support for chaining window functions by extending a previously-declared window function.
|
||||
* Playhouse Postgresql extension TSVectorField.match() method supports an additional argument plain,
|
||||
which can be used to control the parsing of the TS query.
|
||||
* Added very minimal JSONField to the playhouse MySQL extension.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Mar 24 05:54:34 UTC 2019 - Alexei Podvalsky <avvissu@yandex.by>
|
||||
|
||||
@ -68,20 +98,20 @@ Sat Jul 28 18:06:40 UTC 2018 - jengelh@inai.de
|
||||
Thu Jul 19 15:38:58 UTC 2018 - mcepl@suse.com
|
||||
|
||||
- Update to 3.6.4:
|
||||
- bugfixes
|
||||
- works with python 3.7.0
|
||||
- Support for specifying ROWS or RANGE window frame types.
|
||||
- Add APIs for user-defined window functions if using
|
||||
pysqlite3 and sqlite 3.25.0 or newer.
|
||||
- TimestampField now uses 64-bit integer data-type for
|
||||
storage.
|
||||
- Added support to pwiz and playhouse.reflection to enable
|
||||
generating models from VIEWs.
|
||||
- Added lower-level database API for introspecting VIEWs.
|
||||
- Revamped continuous integration setup for better coverage,
|
||||
including 3.7 and 3.8-dev.
|
||||
- Allow building C extensions even if Cython is not
|
||||
installed, by distributing pre-generated C source files.
|
||||
- bugfixes
|
||||
- works with python 3.7.0
|
||||
- Support for specifying ROWS or RANGE window frame types.
|
||||
- Add APIs for user-defined window functions if using
|
||||
pysqlite3 and sqlite 3.25.0 or newer.
|
||||
- TimestampField now uses 64-bit integer data-type for
|
||||
storage.
|
||||
- Added support to pwiz and playhouse.reflection to enable
|
||||
generating models from VIEWs.
|
||||
- Added lower-level database API for introspecting VIEWs.
|
||||
- Revamped continuous integration setup for better coverage,
|
||||
including 3.7 and 3.8-dev.
|
||||
- Allow building C extensions even if Cython is not
|
||||
installed, by distributing pre-generated C source files.
|
||||
- Fixes tests
|
||||
|
||||
-------------------------------------------------------------------
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
Name: python-peewee
|
||||
Version: 3.9.3
|
||||
Version: 3.9.5
|
||||
Release: 0
|
||||
Summary: An expressive ORM that supports multiple SQL backends
|
||||
License: BSD-3-Clause
|
||||
|
Loading…
x
Reference in New Issue
Block a user