14
0

- update to 3.2.9:

* Fix `DateFromTicks` and `TimeFromTicks` return values to return
    a date and a time referred to the UTC timezone rather than to
    the local timezone. For consistency, `TimestampFromTicks` to
    return a datetime in UTC rather than in the local timezone
  * Fix `~Cursor.rownumber` after using  `~AsyncServerCursor.scroll()`
    on `AsyncServerCursor` (🎫`#1066`).
  * Fix interval parsing with days or other parts and negative time
    in C module
  * Don't process further connection attempts after Ctrl-C
  * Fix cursors to correctly iterate over rows even if their row
    factory returns `None` (🎫`#1073`).
  * Fix `ConnectionInfo.port` when the port is specified as an
    empty string
  * Report all the attempts error messages in the exception raised
    for a connection failure (🎫`#1069`).
  * Improve logging on connection (🎫`#1085`).
  * Add support for PostgreSQL 18 libpq (🎫`#1082`).
  * Add SRID support to shapely dumpers/loaders (🎫`#1028`).
  * Add support for binary hstore (🎫`#1030`).

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-psycopg?expand=0&rev=20
This commit is contained in:
2025-05-30 09:13:13 +00:00
committed by Git OBS Bridge
parent 1de01d20b5
commit bc09642509
4 changed files with 28 additions and 4 deletions

View File

@@ -1,3 +1,27 @@
-------------------------------------------------------------------
Thu May 29 09:46:59 UTC 2025 - Dirk Müller <dmueller@suse.com>
- update to 3.2.9:
* Fix `DateFromTicks` and `TimeFromTicks` return values to return
a date and a time referred to the UTC timezone rather than to
the local timezone. For consistency, `TimestampFromTicks` to
return a datetime in UTC rather than in the local timezone
* Fix `~Cursor.rownumber` after using `~AsyncServerCursor.scroll()`
on `AsyncServerCursor` (:ticket:`#1066`).
* Fix interval parsing with days or other parts and negative time
in C module
* Don't process further connection attempts after Ctrl-C
* Fix cursors to correctly iterate over rows even if their row
factory returns `None` (:ticket:`#1073`).
* Fix `ConnectionInfo.port` when the port is specified as an
empty string
* Report all the attempts error messages in the exception raised
for a connection failure (:ticket:`#1069`).
* Improve logging on connection (:ticket:`#1085`).
* Add support for PostgreSQL 18 libpq (:ticket:`#1082`).
* Add SRID support to shapely dumpers/loaders (:ticket:`#1028`).
* Add support for binary hstore (:ticket:`#1030`).
-------------------------------------------------------------------
Wed Apr 9 06:50:45 UTC 2025 - Antonio Larrosa <alarrosa@suse.com>