summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>2019-03-18 01:51:29 +0000
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>2019-03-18 01:51:29 +0000
commitf8f5a77838d0d356d18552d2fbb295335cad7de3 (patch)
tree2e993cdf30f4b02baec58cef5ebdf259dcddc28d /NEWS
parent17b0c6133800163bb264e9553ddf03f8d28f50e1 (diff)
downloadpsycopg2-f8f5a77838d0d356d18552d2fbb295335cad7de3.tar.gz
Mention closed #829 in NEWS file
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS13
1 files changed, 9 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 7dc3e1b..c56abfc 100644
--- a/NEWS
+++ b/NEWS
@@ -24,8 +24,6 @@ New features:
(:ticket:`#732`).
- Added *fetch* parameter to `~psycopg2.extras.execute_values()` function
(:ticket:`#813`).
-- Fixed adaptation of numeric subclasses such as `~enum.IntEnum`
- (:ticket:`#591`).
- `!str()` on `~psycopg2.extras.Range` produces a human-readable representation
(:ticket:`#773`).
- `~psycopg2.extras.DictCursor` and `~psycopg2.extras.RealDictCursor` rows
@@ -33,8 +31,15 @@ New features:
- Added `~psycopg2.extensions.Diagnostics.severity_nonlocalized` attribute on
the `~psycopg2.extensions.Diagnostics` object (:ticket:`#783`).
- More efficient `~psycopg2.extras.NamedTupleCursor` (:ticket:`#838`).
-- Async communication improved to fix blocking on results returned at
- different times (:ticket:`#856`).
+
+Bug fixes:
+
+- Fixed connections occasionally broken by the unrelated use of the
+ multiprocessing module (:ticket:`#829`).
+- Fixed async communication blocking if results are returned in different
+ chunks, e.g. with notices interspersed to the results (:ticket:`#856`).
+- Fixed adaptation of numeric subclasses such as `~enum.IntEnum`
+ (:ticket:`#591`).
Other changes: