14
0
forked from pool/python-pony

Accepting request 886454 from home:bnavigator:branches:devel:languages:python

- Update to 0.7.14
  * Add Python 3.9 support
  * Allow to use kwargs in select: Entity.select(**kwargs) and
    obj.collection.select(**kwargs), a feature that was announced
    but actually missed from 0.7.7
  * Add support for volatile collection attributes that don't throw
    "Phantom object appeared/disappeared" exceptions
  * Fix negative timedelta conversions
  * Pony should reconnect to PostgreSQL when receiving 57P01 error
    (AdminShutdown)
  * Allow mixing compatible types (like int and float) in
    coalesce() arguments
  * Support of subqueries in coalesce() arguments
  * Fix using aggregated subqueries in ORDER BY section
  * Fix queries with expressions like (x, y) in ((a, b), (c, d))
  * #451: KeyError for seeds with unique attributes in
    SessionCache.update_simple_index()

OBS-URL: https://build.opensuse.org/request/show/886454
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pony?expand=0&rev=16
This commit is contained in:
2021-04-19 06:31:20 +00:00
committed by Git OBS Bridge
parent e4ed5cf4d9
commit fd3e50e6d9
4 changed files with 28 additions and 6 deletions

View File

@@ -1,3 +1,24 @@
-------------------------------------------------------------------
Sun Apr 18 13:11:59 UTC 2021 - Ben Greiner <code@bnavigator.de>
- Update to 0.7.14
* Add Python 3.9 support
* Allow to use kwargs in select: Entity.select(**kwargs) and
obj.collection.select(**kwargs), a feature that was announced
but actually missed from 0.7.7
* Add support for volatile collection attributes that don't throw
"Phantom object appeared/disappeared" exceptions
* Fix negative timedelta conversions
* Pony should reconnect to PostgreSQL when receiving 57P01 error
(AdminShutdown)
* Allow mixing compatible types (like int and float) in
coalesce() arguments
* Support of subqueries in coalesce() arguments
* Fix using aggregated subqueries in ORDER BY section
* Fix queries with expressions like (x, y) in ((a, b), (c, d))
* #451: KeyError for seeds with unique attributes in
SessionCache.update_simple_index()
-------------------------------------------------------------------
Mon Mar 9 09:02:16 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>