Typos fixed in the news.

This commit is contained in:
Daniele Varrazzo 2010-12-01 13:21:16 +00:00
parent 0ad7483a2b
commit 6688e7011c

View File

@ -3,24 +3,24 @@ What's new in psycopg 2.3.0
psycopg 2.3 aims to expose some new features introduced in PostgreSQL 9.0. psycopg 2.3 aims to expose some new features introduced in PostgreSQL 9.0.
* Main new fratures: * Main new features:
- `dict` to `hstore` adapter and `hstore` to `dict` typecaster, using both - `dict` to `hstore` adapter and `hstore` to `dict` typecaster, using both
9.0 and pre-9.0 syntax. 9.0 and pre-9.0 syntax.
- Two-phase commit protocol support as per DBAPI specification. - Two-phase commit protocol support as per DBAPI specification.
- Support for payload in notifications received from the backed. - Support for payload in notifications received from the backed.
- namedtuple-returning cursor. - `namedtuple`-returning cursor.
- Query execution cancel. - Query execution cancel.
* Other features and changes: * Other features and changes:
- Dropped support for protocol 2: Psycopg 2.3 can only connect to PostgreSQL - Dropped support for protocol 2: Psycopg 2.3 can only connect to PostgreSQL
servers with version at least 7.4. servers with version at least 7.4.
- don't issue a query at every connection to detect the client encoding - Don't issue a query at every connection to detect the client encoding
and to set the datestyle to ISO if it is already compatible with what and to set the datestyle to ISO if it is already compatible with what
expected. expected.
- `mogrify()` now supports unicode queries. - `mogrify()` now supports unicode queries.
- subclasses of a type that can be adapted are adapted as the superclass. - 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. - `errorcodes` knows a couple of new codes introduced in PostgreSQL 9.0.
- Dropped deprecated Psycopg "own quoting". - Dropped deprecated Psycopg "own quoting".
- Never issue a ROLLBACK on close/GC. This behaviour was introduced as a bug - Never issue a ROLLBACK on close/GC. This behaviour was introduced as a bug