Release notes cleanup before releasing 2.4.5

This commit is contained in:
Daniele Varrazzo 2014-08-30 18:23:24 +01:00
parent 6210af2763
commit 9fdfa86200

14
NEWS
View File

@ -13,18 +13,18 @@ Bug fixes:
What's new in psycopg 2.5.4 What's new in psycopg 2.5.4
^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Added :sql:`jsonb` support for PostgreSQL 9.4. - Added :sql:`jsonb` support for PostgreSQL 9.4 (:ticket:`#226`).
- Fixed segfault if COPY statements are executed instead of using the - Fixed segfault if COPY statements are passed to `~cursor.execute()` instead
proper methods (:ticket:`#219`). of using the proper methods (:ticket:`#219`).
- Force conversion of pool arguments to integer to avoid potentially unbounded - Force conversion of pool arguments to integer to avoid potentially unbounded
pools (:ticket:`#220`). pools (:ticket:`#220`).
- Cursors :sql:`WITH HOLD` don't begin a new transaction upon move/fetch/close - Cursors :sql:`WITH HOLD` don't begin a new transaction upon move/fetch/close
(:ticket:`#228`). (:ticket:`#228`).
- Cursors :sql:`WITH HOLD` can be used in autocommit (:ticket:`#229`). - Cursors :sql:`WITH HOLD` can be used in autocommit (:ticket:`#229`).
- Don't ignore silently the `cursor.callproc` argument without a length. - `~cursor.callproc()` doesn't silently ignore an argument without a length.
- Make sure the internal `_psycopg.so` module can be imported stand-alone - Fixed memory leak with large objects (:ticket:`#256`).
(to allow modules juggling such as the one described in :ticket:`#201`). - Make sure the internal ``_psycopg.so`` module can be imported stand-alone (to
- Fixed memory leak with large objects (regression introduced in 2.5.3). allow modules juggling such as the one described in :ticket:`#201`).
What's new in psycopg 2.5.3 What's new in psycopg 2.5.3