summaryrefslogtreecommitdiff
path: root/NEWS-2.3
blob: 4ddfc927d6642b6ff4ecd61a1271744038299299 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
What's new in psycopg 2.3.0
---------------------------

psycopg 2.3 aims to expose some new features introduced in PostgreSQL 9.0.

* New features related to features introduced in PostgreSQL 9.0:

  - `dict` to `hstore` adapter and `hstore` to `dict` typecaster, using both
    9.0 and pre-9.0 syntax.
  - Two-phase commit protocol support as per DBAPI specification.
  - Support for payload in notifications received from the backed.
  - namedtuple returning cursor.

* Other features and changes:

  - `mogrify()` now supports unicode queries.
  - subclasses of a type that can be adapted are adapted as the superclass.
  - `errorcodes` knows a couple of new codes introduced in PostgreSQL 9.0.
  - Dropped deprecated Psycopg "own quoting".
  - Never issue a ROLLBACK on close/GC. This behaviour was introduced as a bug
    in release 2.2, but trying to send a command while being destroyed has been
    considered not safe.

* Bug fixes:

  - Fixed use of `PQfreemem` instead of `free` in binary typecaster.
  - Fixed access to freed memory in `conn_get_isolation_level()`.
  - Fixed crash during Decimal adaptation with a few 2.5.x Python versions.


What's new in psycopg 2.2.2
---------------------------

* Bux fixes:

  - the call to logging.basicConfig() in pool.py has been dropped: it was
    messing with some projects using logging (and a library should not
    initialize the logging system anyway.)
  - psycopg now correctly handles time zones with seconds in the UTC offset.
    The old register_tstz_w_secs() function is deprecated and will raise a
    warning if called.
  - Exceptions raised by the column iterator are propagated.
  - Exceptions raised by executemany() interators are propagated.


What's new in psycopg 2.2.1
---------------------------

* Bux fixes:

  - psycopg now builds again on MS Windows.


What's new in psycopg 2.2.0
---------------------------

This is the first release of the new 2.2 series, supporting not just one but
two different ways of executing asynchronous queries, thanks to Jan and Daniele
(with a little help from me and others, but they did 99% of the work so they
deserve their names here in the news.)

psycopg now supports both classic select() loops and "green" coroutine
libraries. It is all in the documentation, so just point your browser to
doc/html/advanced.html.

* Other new features:

  - truncate() method for lobjects.
  - COPY functions are now a little bit faster.
  - All builtin PostgreSQL to Python typecasters are now available from the
    psycopg2.extensions module.
  - Notifications from the backend are now available right after the execute()
    call (before client code needed to call isbusy() to ensure NOTIFY
    reception.)
  - Better timezone support.
  - Lots of documentation updates.

* Bug fixes:

  - Fixed some gc/refcounting problems.
  - Fixed reference leak in NOTIFY reception.
  - Fixed problem with PostgreSQL not casting string literals to the correct
    types in some situations: psycopg now add an explicit cast to dates, times
    and bytea representations.
  - Fixed TimestampFromTicks() and TimeFromTicks() for seconds >= 59.5.
  - Fixed spurious exception raised when calling C typecasters from Python
    ones.