2013-07-19 18:54:35 +04:00
|
|
|
Current release
|
|
|
|
---------------
|
|
|
|
|
2014-02-23 00:41:11 +04:00
|
|
|
What's new in psycopg 2.6
|
|
|
|
-------------------------
|
|
|
|
|
|
|
|
Bug fixes:
|
|
|
|
|
|
|
|
- Json apapter's `!str()` returns the adapted content instead of the `!repr()`
|
|
|
|
(:ticket:`#191`).
|
|
|
|
|
|
|
|
|
2014-06-05 04:46:06 +04:00
|
|
|
What's new in psycopg 2.5.4
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2014-08-13 04:58:28 +04:00
|
|
|
- Added :sql:`jsonb` support for PostgreSQL 9.4.
|
2014-06-06 23:21:39 +04:00
|
|
|
- Fixed segfault if COPY statements are executed instead of using the
|
|
|
|
proper methods (:ticket:`#219`).
|
2014-08-13 05:37:00 +04:00
|
|
|
- Force conversion of pool arguments to integer to avoid potentially unbounded
|
|
|
|
pools (:ticket:`#220`).
|
2014-08-21 08:27:57 +04:00
|
|
|
- Cursors :sql:`WITH HOLD` don't begin a new transaction upon move/fetch/close
|
|
|
|
(:ticket:`#228`).
|
|
|
|
- Cursors :sql:`WITH HOLD` can be used in autocommit (:ticket:`#229`).
|
2014-06-05 04:46:06 +04:00
|
|
|
- Don't ignore silently the `cursor.callproc` argument without a length.
|
2014-07-31 16:13:27 +04:00
|
|
|
- Added a few errors missing from `~psycopg2.errorcodes`, defined by
|
|
|
|
PostgreSQL but not documented.
|
2014-08-26 06:42:34 +04:00
|
|
|
- Make sure the internal `_psycopg.so` module can be imported stand-alone
|
|
|
|
(to allow modules juggling such as the one described in :ticket:`#201`).
|
2014-06-05 04:46:06 +04:00
|
|
|
|
|
|
|
|
2014-01-15 01:52:42 +04:00
|
|
|
What's new in psycopg 2.5.3
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2014-04-04 20:30:10 +04:00
|
|
|
- Work around `pip issue #1630 <https://github.com/pypa/pip/issues/1630>`__
|
|
|
|
making installation via ``pip -e git+url`` impossible (:ticket:`#18`).
|
2014-05-06 02:52:41 +04:00
|
|
|
- Copy operations correctly set the `cursor.rowcount` attribute
|
|
|
|
(:ticket:`#180`).
|
2014-04-05 19:05:40 +04:00
|
|
|
- It is now possible to call `get_transaction_status()` on closed connections.
|
2014-04-04 22:25:09 +04:00
|
|
|
- Fixed unsafe access to object names causing assertion failures in
|
|
|
|
Python 3 debug builds (:ticket:`#188`).
|
2014-04-05 19:05:40 +04:00
|
|
|
- Mark the connection closed if found broken on `poll()` (from :ticket:`#192`
|
|
|
|
discussion)
|
2014-04-03 04:41:19 +04:00
|
|
|
- Fixed handling of dsn and closed attributes in connection subclasses
|
|
|
|
failing to connect (from :ticket:`#192` discussion).
|
2014-04-05 19:05:40 +04:00
|
|
|
- Added arbitrary but stable order to `Range` objects, thanks to
|
|
|
|
Chris Withers (:ticket:`#193`).
|
|
|
|
- Avoid blocking async connections on connect (:ticket:`#194`). Thanks to
|
|
|
|
Adam Petrovich for the bug report and diagnosis.
|
2014-02-26 23:37:59 +04:00
|
|
|
- Don't segfault using poorly defined cursor subclasses which forgot to call
|
|
|
|
the superclass init (:ticket:`#195`).
|
2014-03-06 22:11:17 +04:00
|
|
|
- Mark the connection closed when a Socket connection is broken, as it
|
|
|
|
happens for TCP connections instead (:ticket:`#196`).
|
2014-04-05 19:05:40 +04:00
|
|
|
- Fixed overflow opening a lobject with an oid not fitting in a signed int
|
|
|
|
(:ticket:`#203`).
|
2014-04-30 20:56:09 +04:00
|
|
|
- Fixed handling of explicit default ``cursor_factory=None`` in
|
|
|
|
`connection.cursor()` (:ticket:`#210`).
|
2014-04-04 22:16:41 +04:00
|
|
|
- Fixed possible segfault in named cursors creation.
|
2014-01-15 01:52:42 +04:00
|
|
|
- Fixed debug build on Windows, thanks to James Emerton.
|
|
|
|
|
|
|
|
|
2013-07-19 18:57:27 +04:00
|
|
|
What's new in psycopg 2.5.2
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
- Fixed segfault pickling the exception raised on connection error
|
|
|
|
(:ticket:`#170`).
|
2013-10-16 18:28:16 +04:00
|
|
|
- Meaningful connection errors report a meaningful message, thanks to
|
|
|
|
Alexey Borzenkov (:ticket:`#173`).
|
2013-11-27 16:42:57 +04:00
|
|
|
- Manually creating `lobject` with the wrong parameter doesn't segfault
|
|
|
|
(:ticket:`#187`).
|
2013-07-19 18:57:27 +04:00
|
|
|
|
|
|
|
|
2013-04-20 05:31:31 +04:00
|
|
|
What's new in psycopg 2.5.1
|
2013-07-19 18:54:35 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2013-04-20 05:31:31 +04:00
|
|
|
|
|
|
|
- Fixed build on Solaris 10 and 11 where the round() function is already
|
|
|
|
declared (:ticket:`#146`).
|
2013-06-18 17:13:00 +04:00
|
|
|
- Fixed comparison of `Range` with non-range objects (:ticket:`#164`).
|
|
|
|
Thanks to Chris Withers for the patch.
|
2013-06-20 19:24:55 +04:00
|
|
|
- Fixed double-free on connection dealloc (:ticket:`#166`). Thanks to
|
|
|
|
Gangadharan S.A. for the report and fix suggestion.
|
2013-04-20 05:31:31 +04:00
|
|
|
|
|
|
|
|
2012-12-02 16:04:24 +04:00
|
|
|
What's new in psycopg 2.5
|
|
|
|
-------------------------
|
2012-04-11 21:11:04 +04:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
New features:
|
|
|
|
|
|
|
|
- Added :ref:`JSON adaptation <adapt-json>`.
|
|
|
|
- Added :ref:`support for PostgreSQL 9.2 range types <adapt-range>`.
|
|
|
|
- `connection` and `cursor` objects can be used in ``with`` statements
|
|
|
|
as context managers as specified by recent |DBAPI|_ extension.
|
|
|
|
- Added `~psycopg2.extensions.Diagnostics` object to get extended info
|
|
|
|
from a database error. Many thanks to Matthew Woodcraft for the
|
|
|
|
implementation (:ticket:`#149`).
|
2013-04-07 05:30:12 +04:00
|
|
|
- Added `connection.cursor_factory` attribute to customize the default
|
|
|
|
object returned by `~connection.cursor()`.
|
2013-03-18 19:42:10 +04:00
|
|
|
- Added support for backward scrollable cursors. Thanks to Jon Nelson
|
|
|
|
for the initial patch (:ticket:`#108`).
|
|
|
|
- Added a simple way to :ref:`customize casting of composite types
|
|
|
|
<adapt-composite>` into Python objects other than namedtuples.
|
|
|
|
Many thanks to Ronan Dunklau and Tobias Oberstein for the feature
|
|
|
|
development.
|
|
|
|
- `connection.reset()` implemented using :sql:`DISCARD ALL` on server
|
|
|
|
versions supporting it.
|
|
|
|
|
|
|
|
Bug fixes:
|
|
|
|
|
2013-03-20 15:42:15 +04:00
|
|
|
- Properly cleanup memory of broken connections (:ticket:`#148`).
|
2013-03-18 19:42:10 +04:00
|
|
|
- Fixed bad interaction of ``setup.py`` with other dependencies in
|
|
|
|
Distribute projects on Python 3 (:ticket:`#153`).
|
|
|
|
|
|
|
|
Other changes:
|
|
|
|
|
|
|
|
- Added support for Python 3.3.
|
2013-03-21 03:40:13 +04:00
|
|
|
- Dropped support for Python 2.4. Please use Psycopg 2.4.x if you need it.
|
2013-03-18 19:42:10 +04:00
|
|
|
- `~psycopg2.errorcodes` map updated to PostgreSQL 9.2.
|
|
|
|
- Dropped Zope adapter from source repository. ZPsycopgDA now has its own
|
|
|
|
project at <http://github.com/psycopg/ZPsycopgDA>.
|
2012-12-02 16:04:24 +04:00
|
|
|
|
|
|
|
|
2012-12-03 18:22:04 +04:00
|
|
|
What's new in psycopg 2.4.6
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
- Fixed 'cursor()' arguments propagation in connection subclasses
|
|
|
|
and overriding of the 'cursor_factory' argument. Thanks to
|
|
|
|
Corry Haines for the report and the initial patch (:ticket:`#105`).
|
|
|
|
- Dropped GIL release during string adaptation around a function call
|
|
|
|
invoking a Python API function, which could cause interpreter crash.
|
|
|
|
Thanks to Manu Cupcic for the report (:ticket:`#110`).
|
|
|
|
- Close a green connection if there is an error in the callback.
|
|
|
|
Maybe a harsh solution but it leaves the program responsive
|
|
|
|
(:ticket:`#113`).
|
|
|
|
- 'register_hstore()', 'register_composite()', 'tpc_recover()' work with
|
|
|
|
RealDictConnection and Cursor (:ticket:`#114`).
|
|
|
|
- Fixed broken pool for Zope and connections re-init across ZSQL methods
|
|
|
|
in the same request (tickets #123, #125, #142).
|
|
|
|
- connect() raises an exception instead of swallowing keyword arguments
|
|
|
|
when a connection string is specified as well (:ticket:`#131`).
|
|
|
|
- Discard any result produced by 'executemany()' (:ticket:`#133`).
|
|
|
|
- Fixed pickling of FixedOffsetTimezone objects (:ticket:`#135`).
|
|
|
|
- Release the GIL around PQgetResult calls after COPY (:ticket:`#140`).
|
|
|
|
- Fixed empty strings handling in composite caster (:ticket:`#141`).
|
|
|
|
- Fixed pickling of DictRow and RealDictRow objects.
|
2012-04-11 21:11:04 +04:00
|
|
|
|
|
|
|
|
2012-01-10 05:32:45 +04:00
|
|
|
What's new in psycopg 2.4.5
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
- The close() methods on connections and cursors don't raise exceptions
|
|
|
|
if called on already closed objects.
|
|
|
|
- Fixed fetchmany() with no argument in cursor subclasses
|
|
|
|
(:ticket:`#84`).
|
|
|
|
- Use lo_creat() instead of lo_create() when possible for better
|
|
|
|
interaction with pgpool-II (:ticket:`#88`).
|
|
|
|
- Error and its subclasses are picklable, useful for multiprocessing
|
|
|
|
interaction (:ticket:`#90`).
|
|
|
|
- Better efficiency and formatting of timezone offset objects thanks
|
|
|
|
to Menno Smits (tickets #94, #95).
|
|
|
|
- Fixed 'rownumber' during iteration on cursor subclasses.
|
|
|
|
Regression introduced in 2.4.4 (:ticket:`#100`).
|
|
|
|
- Added support for 'inet' arrays.
|
|
|
|
- Fixed 'commit()' concurrency problem (:ticket:`#103`).
|
|
|
|
- Codebase cleaned up using the GCC Python plugin's static analysis
|
|
|
|
tool, which has revealed several unchecked return values, possible
|
|
|
|
NULL dereferences, reference counting problems. Many thanks to David
|
|
|
|
Malcolm for the useful tool and the assistance provided using it.
|
2012-01-10 05:32:45 +04:00
|
|
|
|
|
|
|
|
2011-12-12 02:04:42 +04:00
|
|
|
What's new in psycopg 2.4.4
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2011-12-12 02:04:42 +04:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
- 'register_composite()' also works with the types implicitly defined
|
|
|
|
after a table row, not only with the ones created by 'CREATE TYPE'.
|
|
|
|
- Values for the isolation level symbolic constants restored to what
|
|
|
|
they were before release 2.4.2 to avoid breaking apps using the
|
|
|
|
values instead of the constants.
|
|
|
|
- Named DictCursor/RealDictCursor honour itersize (:ticket:`#80`).
|
|
|
|
- Fixed rollback on error on Zope (:ticket:`#73`).
|
|
|
|
- Raise 'DatabaseError' instead of 'Error' with empty libpq errors,
|
|
|
|
consistently with other disconnection-related errors: regression
|
|
|
|
introduced in release 2.4.1 (:ticket:`#82`).
|
2011-12-12 02:04:42 +04:00
|
|
|
|
|
|
|
|
2011-06-30 17:48:35 +04:00
|
|
|
What's new in psycopg 2.4.3
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
- connect() supports all the keyword arguments supported by the
|
|
|
|
database
|
|
|
|
- Added 'new_array_type()' function for easy creation of array
|
|
|
|
typecasters.
|
|
|
|
- Added support for arrays of hstores and composite types (:ticket:`#66`).
|
|
|
|
- Fixed segfault in case of transaction started with connection lost
|
|
|
|
(and possibly other events).
|
|
|
|
- Fixed adaptation of Decimal type in sub-interpreters, such as in
|
|
|
|
certain mod_wsgi configurations (:ticket:`#52`).
|
|
|
|
- Rollback connections in transaction or in error before putting them
|
|
|
|
back into a pool. Also discard broken connections (:ticket:`#62`).
|
|
|
|
- Lazy import of the slow uuid module, thanks to Marko Kreen.
|
|
|
|
- Fixed NamedTupleCursor.executemany() (:ticket:`#65`).
|
|
|
|
- Fixed --static-libpq setup option (:ticket:`#64`).
|
|
|
|
- Fixed interaction between RealDictCursor and named cursors
|
|
|
|
(:ticket:`#67`).
|
|
|
|
- Dropped limit on the columns length in COPY operations (:ticket:`#68`).
|
|
|
|
- Fixed reference leak with arguments referenced more than once
|
|
|
|
in queries (:ticket:`#81`).
|
|
|
|
- Fixed typecasting of arrays containing consecutive backslashes.
|
|
|
|
- 'errorcodes' map updated to PostgreSQL 9.1.
|
2011-06-30 17:48:35 +04:00
|
|
|
|
|
|
|
|
2011-05-04 04:07:07 +04:00
|
|
|
What's new in psycopg 2.4.2
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
- Added 'set_session()' method and 'autocommit' property to the
|
|
|
|
connection. Added support for read-only sessions and, for PostgreSQL
|
|
|
|
9.1, for the "repeatable read" isolation level and the "deferrable"
|
|
|
|
transaction property.
|
|
|
|
- Psycopg doesn't execute queries at connection time to find the
|
|
|
|
default isolation level.
|
|
|
|
- Fixed bug with multithread code potentially causing loss of sync
|
|
|
|
with the server communication or lock of the client (:ticket:`#55`).
|
|
|
|
- Don't fail import if mx.DateTime module can't be found, even if its
|
|
|
|
support was built (:ticket:`#53`).
|
|
|
|
- Fixed escape for negative numbers prefixed by minus operator
|
|
|
|
(:ticket:`#57`).
|
|
|
|
- Fixed refcount issue during copy. Reported and fixed by Dave
|
|
|
|
Malcolm (:ticket:`#58`, Red Hat Bug 711095).
|
|
|
|
- Trying to execute concurrent operations on the same connection
|
|
|
|
through concurrent green thread results in an error instead of a
|
|
|
|
deadlock.
|
|
|
|
- Fixed detection of pg_config on Window. Report and fix, plus some
|
|
|
|
long needed setup.py cleanup by Steve Lacy: thanks!
|
2011-05-04 04:07:07 +04:00
|
|
|
|
|
|
|
|
2011-03-04 23:30:43 +03:00
|
|
|
What's new in psycopg 2.4.1
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2011-03-04 23:30:43 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
- Use own parser for bytea output, not requiring anymore the libpq 9.0
|
|
|
|
to parse the hex format.
|
|
|
|
- Don't fail connection if the client encoding is a non-normalized
|
|
|
|
variant. Issue reported by Peter Eisentraut.
|
|
|
|
- Correctly detect an empty query sent to the backend (:ticket:`#46`).
|
|
|
|
- Fixed a SystemError clobbering libpq errors raised without SQLSTATE.
|
|
|
|
Bug vivisectioned by Eric Snow.
|
|
|
|
- Fixed interaction between NamedTuple and server-side cursors.
|
|
|
|
- Allow to specify --static-libpq on setup.py command line instead of
|
|
|
|
just in 'setup.cfg'. Patch provided by Matthew Ryan (:ticket:`#48`).
|
2011-03-04 23:30:43 +03:00
|
|
|
|
|
|
|
|
2011-02-06 18:54:35 +03:00
|
|
|
What's new in psycopg 2.4
|
|
|
|
-------------------------
|
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
New features and changes:
|
2011-02-06 18:54:35 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
- Added support for Python 3.1 and 3.2. The conversion has also
|
|
|
|
brought several improvements:
|
2011-02-23 17:16:22 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
- Added 'b' and 't' mode to large objects: write can deal with both
|
|
|
|
bytes strings and unicode; read can return either bytes strings
|
|
|
|
or decoded unicode.
|
|
|
|
- COPY sends Unicode data to files implementing 'io.TextIOBase'.
|
|
|
|
- Improved PostgreSQL-Python encodings mapping.
|
|
|
|
- Added a few missing encodings: EUC_CN, EUC_JIS_2004, ISO885910,
|
|
|
|
ISO885916, LATIN10, SHIFT_JIS_2004.
|
|
|
|
- Dropped repeated dictionary lookups with unicode query/parameters.
|
2011-02-23 17:16:22 +03:00
|
|
|
|
2013-04-26 12:21:56 +04:00
|
|
|
- Improvements to the named cursors:
|
2011-02-23 17:16:22 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
- More efficient iteration on named cursors, fetching 'itersize'
|
|
|
|
records at time from the backend.
|
|
|
|
- The named cursors name can be an invalid identifier.
|
2011-02-23 17:16:22 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
- Improvements in data handling:
|
2011-02-23 17:16:22 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
- Added 'register_composite()' function to cast PostgreSQL
|
|
|
|
composite types into Python tuples/namedtuples.
|
|
|
|
- Adapt types 'bytearray' (from Python 2.6), 'memoryview' (from
|
|
|
|
Python 2.7) and other objects implementing the "Revised Buffer
|
|
|
|
Protocol" to 'bytea' data type.
|
|
|
|
- The 'hstore' adapter can work even when the data type is not
|
|
|
|
installed in the 'public' namespace.
|
|
|
|
- Raise a clean exception instead of returning bad data when
|
|
|
|
receiving bytea in 'hex' format and the client libpq can't parse
|
|
|
|
them.
|
|
|
|
- Empty lists correctly roundtrip Python -> PostgreSQL -> Python.
|
2011-02-23 17:16:22 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
- Other changes:
|
2011-02-23 17:16:22 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
- 'cursor.description' is provided as named tuples if available.
|
|
|
|
- The build script refuses to guess values if 'pg_config' is not
|
|
|
|
found.
|
|
|
|
- Connections and cursors are weakly referenceable.
|
2011-02-06 18:54:35 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
Bug fixes:
|
2011-02-06 18:54:35 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
- Fixed adaptation of None in composite types (:ticket:`#26`). Bug
|
|
|
|
report by Karsten Hilbert.
|
|
|
|
- Fixed several reference leaks in less common code paths.
|
|
|
|
- Fixed segfault when a large object is closed and its connection no
|
|
|
|
more available.
|
|
|
|
- Added missing icon to ZPsycopgDA package, not available in Zope
|
|
|
|
2.12.9 (:ticket:`#30`). Bug report and patch by Pumukel.
|
|
|
|
- Fixed conversion of negative infinity (:ticket:`#40`). Bug report and
|
|
|
|
patch by Marti Raudsepp.
|
2011-02-06 18:54:35 +03:00
|
|
|
|
|
|
|
|
|
|
|
What's new in psycopg 2.3.2
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2011-02-06 18:54:35 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
- Fixed segfault with middleware not passing DateStyle to the client
|
|
|
|
(:ticket:`#24`). Bug report and patch by Marti Raudsepp.
|
2011-02-06 18:54:35 +03:00
|
|
|
|
|
|
|
|
|
|
|
What's new in psycopg 2.3.1
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2011-02-06 18:54:35 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
- Fixed build problem on CentOS 5.5 x86_64 (:ticket:`#23`).
|
2011-02-06 18:54:35 +03:00
|
|
|
|
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
What's new in psycopg 2.3
|
|
|
|
-------------------------
|
2011-02-06 18:54:35 +03:00
|
|
|
|
|
|
|
psycopg 2.3 aims to expose some new features introduced in PostgreSQL 9.0.
|
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
Main new features:
|
2011-02-06 18:54:35 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
- `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.
|
2013-04-26 12:21:56 +04:00
|
|
|
- Support for payload in notifications received from the backend.
|
2013-03-18 19:42:10 +04:00
|
|
|
- `namedtuple`-returning cursor.
|
|
|
|
- Query execution cancel.
|
2011-02-06 18:54:35 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
Other features and changes:
|
2011-02-06 18:54:35 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
- Dropped support for protocol 2: Psycopg 2.3 can only connect to PostgreSQL
|
|
|
|
servers with version at least 7.4.
|
|
|
|
- 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
|
|
|
|
expected.
|
|
|
|
- `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.
|
2011-02-06 18:54:35 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
Bug fixes:
|
2011-02-06 18:54:35 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
- 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
|
|
|
|
(:ticket:`#7`).
|
|
|
|
- Fixed notices order (:ticket:`#9`).
|
2011-02-06 18:54:35 +03:00
|
|
|
|
|
|
|
|
|
|
|
What's new in psycopg 2.2.2
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2011-02-06 18:54:35 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
Bux fixes:
|
2011-02-06 18:54:35 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
- 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.
|
2013-04-26 12:21:56 +04:00
|
|
|
- Exceptions raised by executemany() iterators are propagated.
|
2011-02-06 18:54:35 +03:00
|
|
|
|
|
|
|
|
|
|
|
What's new in psycopg 2.2.1
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2011-02-06 18:54:35 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
Bux fixes:
|
2011-02-06 18:54:35 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
- psycopg now builds again on MS Windows.
|
2011-02-06 18:54:35 +03:00
|
|
|
|
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
What's new in psycopg 2.2
|
|
|
|
-------------------------
|
2011-02-06 18:54:35 +03:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
Other new features:
|
2011-02-06 18:54:35 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
- 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.
|
2011-02-06 18:54:35 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
Bug fixes:
|
2011-02-06 18:54:35 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
- 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.
|
2011-04-15 04:11:22 +04:00
|
|
|
|
|
|
|
|
2010-02-13 01:34:53 +03:00
|
|
|
What's new in psycopg 2.0.14
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
New features:
|
|
|
|
|
|
|
|
- Support for adapting tuples to PostgreSQL arrays is now enabled by
|
|
|
|
default and does not require importing psycopg2.extensions anymore.
|
|
|
|
- "can't adapt" error message now includes full type information.
|
|
|
|
- Thank to Daniele Varrazzo (piro) psycopg2's source package now includes
|
|
|
|
full documentation in HTML and plain text format.
|
2010-02-13 01:34:53 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
Bug fixes:
|
2010-02-21 03:26:43 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
- No loss of precision when using floats anymore.
|
|
|
|
- decimal.Decimal "nan" and "infinity" correctly converted to PostgreSQL
|
|
|
|
numeric NaN values (note that PostgreSQL numeric type does not support
|
|
|
|
infinity but just NaNs.)
|
|
|
|
- psycopg2.extensions now includes Binary.
|
2010-02-21 03:26:43 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
It seems we're good citizens of the free software ecosystem and that big
|
|
|
|
big big companies and people ranting on the pgsql-hackers mailing list
|
|
|
|
we'll now not dislike us. *g* (See LICENSE file for the details.)
|
2010-02-21 03:26:43 +03:00
|
|
|
|
2010-02-13 01:34:53 +03:00
|
|
|
|
2009-10-04 14:53:42 +04:00
|
|
|
What's new in psycopg 2.0.13
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2009-10-04 14:53:42 +04:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
New features:
|
2009-10-04 14:53:42 +04:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
- Support for UUID arrays.
|
|
|
|
- It is now possible to build psycopg linking to a static libpq
|
|
|
|
library.
|
|
|
|
|
|
|
|
Bug fixes:
|
|
|
|
|
|
|
|
- Fixed a deadlock related to using the same connection with
|
|
|
|
multiple cursors from different threads.
|
|
|
|
- Builds again with MSVC.
|
2009-10-04 14:53:42 +04:00
|
|
|
|
|
|
|
|
2009-08-09 19:22:18 +04:00
|
|
|
What's new in psycopg 2.0.12
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
New features:
|
|
|
|
|
|
|
|
- The connection object now has a reset() method that can be used to
|
|
|
|
reset the connection to its default state.
|
2009-08-09 19:22:18 +04:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
Bug fixes:
|
2009-08-09 19:22:18 +04:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
- copy_to() and copy_from() now accept a much larger number of columns.
|
|
|
|
- Fixed PostgreSQL version detection.
|
|
|
|
- Fixed ZPsycopgDA version check.
|
|
|
|
- Fixed regression in ZPsycopgDA that made it behave wrongly when
|
|
|
|
receiving serialization errors: now the query is re-issued as it
|
|
|
|
should be by propagating the correct exception to Zope.
|
|
|
|
- Writing "large" large objects should now work.
|
2009-08-09 19:22:18 +04:00
|
|
|
|
|
|
|
|
2009-05-09 16:52:16 +04:00
|
|
|
What's new in psycopg 2.0.11
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2009-05-09 16:52:16 +04:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
New features:
|
2009-05-09 16:52:16 +04:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
- DictRow and RealDictRow now use less memory. If you inherit on them
|
|
|
|
remember to set __slots__ for your new attributes or be prepare to
|
|
|
|
go back to old memory usage.
|
|
|
|
|
|
|
|
Bug fixes:
|
|
|
|
|
2013-04-26 12:21:56 +04:00
|
|
|
- Fixed exception in setup.py.
|
2013-03-18 19:42:10 +04:00
|
|
|
- More robust detection of PostgreSQL development versions.
|
|
|
|
- Fixed exception in RealDictCursor, introduced in 2.0.10.
|
2009-05-09 16:52:16 +04:00
|
|
|
|
|
|
|
|
2009-04-20 22:34:06 +04:00
|
|
|
What's new in psycopg 2.0.10
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
New features:
|
|
|
|
|
|
|
|
- A specialized type-caster that can parse time zones with seconds is
|
|
|
|
now available. Note that after enabling it (see extras.py) "wrong"
|
|
|
|
time zones will be parsed without raising an exception but the
|
|
|
|
result will be rounded.
|
|
|
|
- DictCursor can be used as a named cursor.
|
|
|
|
- DictRow now implements more dict methods.
|
|
|
|
- The connection object now expose PostgreSQL server version as the
|
|
|
|
.server_version attribute and the protocol version used as
|
|
|
|
.protocol_version.
|
|
|
|
- The connection object has a .get_parameter_status() methods that
|
|
|
|
can be used to obtain useful information from the server.
|
|
|
|
|
|
|
|
Bug fixes:
|
|
|
|
|
|
|
|
- None is now correctly always adapted to NULL.
|
|
|
|
- Two double memory free errors provoked by multithreading and
|
|
|
|
garbage collection are now fixed.
|
|
|
|
- Fixed usage of internal Python code in the notice processor; this
|
|
|
|
should fix segfaults when receiving a lot of notices in
|
|
|
|
multithreaded programs.
|
|
|
|
- Should build again on MSVC and Solaris.
|
|
|
|
- Should build with development versions of PostgreSQL (ones with
|
|
|
|
-devel version string.)
|
|
|
|
- Fixed some tests that failed even when psycopg was right.
|
2009-04-20 22:34:06 +04:00
|
|
|
|
|
|
|
|
2008-11-25 21:18:17 +03:00
|
|
|
What's new in psycopg 2.0.9
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
New features:
|
|
|
|
|
|
|
|
- "import psycopg2.extras" to get some support for handling times
|
|
|
|
and timestamps with seconds in the time zone offset.
|
|
|
|
- DictCursors can now be used as named cursors.
|
2008-11-25 21:18:17 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
Bug fixes:
|
|
|
|
|
|
|
|
- register_type() now accept an explicit None as its second parameter.
|
|
|
|
- psycopg2 should build again on MSVC and Solaris.
|
2009-03-02 13:07:36 +03:00
|
|
|
|
|
|
|
|
|
|
|
What's new in psycopg 2.0.9
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
New features:
|
|
|
|
|
|
|
|
- COPY TO/COPY FROM queries now can be of any size and psycopg will
|
|
|
|
correctly quote separators.
|
|
|
|
- float values Inf and NaN are now correctly handled and can
|
|
|
|
round-trip to the database.
|
|
|
|
- executemany() now return the numer of total INSERTed or UPDATEd
|
|
|
|
rows. Note that, as it has always been, executemany() should not
|
|
|
|
be used to execute multiple SELECT statements and while it will
|
|
|
|
execute the statements without any problem, it will return the
|
|
|
|
wrong value.
|
|
|
|
- copy_from() and copy_to() can now use quoted separators.
|
|
|
|
- "import psycopg2.extras" to get UUID support.
|
|
|
|
|
|
|
|
Bug fixes:
|
|
|
|
|
|
|
|
- register_type() now works on connection and cursor subclasses.
|
|
|
|
- fixed a memory leak when using lobjects.
|
|
|
|
|
2008-11-25 21:18:17 +03:00
|
|
|
|
2008-07-26 17:09:20 +04:00
|
|
|
What's new in psycopg 2.0.8
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
New features:
|
|
|
|
|
|
|
|
- The connection object now has a get_backend_pid() method that
|
|
|
|
returns the current PostgreSQL connection backend process PID.
|
|
|
|
- The PostgreSQL large object API has been exposed through the
|
|
|
|
Cursor.lobject() method.
|
2008-07-26 17:09:20 +04:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
Bug fixes:
|
|
|
|
|
|
|
|
- Some fixes to ZPsycopgDA have been merged from the Debian package.
|
|
|
|
- A memory leak was fixed in Cursor.executemany().
|
|
|
|
- A double free was fixed in pq_complete_error(), that caused crashes
|
|
|
|
under some error conditions.
|
2008-07-26 17:09:20 +04:00
|
|
|
|
2008-08-26 10:47:47 +04:00
|
|
|
|
2008-03-17 11:13:16 +03:00
|
|
|
What's new in psycopg 2.0.7
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
Improved error handling:
|
|
|
|
|
|
|
|
- All instances of psycopg2.Error subclasses now have pgerror,
|
|
|
|
pgcode and cursor attributes. They will be set to None if no
|
|
|
|
value is available.
|
|
|
|
- Exception classes are now chosen based on the SQLSTATE value from
|
|
|
|
the result. (#184)
|
|
|
|
- The commit() and rollback() methods now set the pgerror and pgcode
|
|
|
|
attributes on exceptions. (#152)
|
|
|
|
- errors from commit() and rollback() are no longer considered
|
|
|
|
fatal. (#194)
|
|
|
|
- If a disconnect is detected during execute(), an exception will be
|
|
|
|
raised at that point rather than resulting in "ProgrammingError:
|
|
|
|
no results to fetch" later on. (#186)
|
|
|
|
|
|
|
|
Better PostgreSQL compatibility:
|
|
|
|
|
|
|
|
- If the server uses standard_conforming_strings, perform
|
|
|
|
appropriate quoting.
|
|
|
|
- BC dates are now handled if psycopg is compiled with mxDateTime
|
|
|
|
support. If using datetime, an appropriate ValueError is
|
|
|
|
raised. (#203)
|
|
|
|
|
|
|
|
Other bug fixes:
|
|
|
|
|
|
|
|
- If multiple sub-interpreters are in use, do not share the Decimal
|
|
|
|
type between them. (#192)
|
|
|
|
- Buffer objects obtained from psycopg are now accepted by psycopg
|
|
|
|
too, without segfaulting. (#209)
|
|
|
|
- A few small changes were made to improve DB-API compatibility.
|
|
|
|
All the dbapi20 tests now pass.
|
|
|
|
|
|
|
|
Miscellaneous:
|
|
|
|
|
|
|
|
- The PSYCOPG_DISPLAY_SIZE option is now off by default. This means
|
|
|
|
that display size will always be set to "None" in
|
|
|
|
cursor.description. Calculating the display size was expensive,
|
|
|
|
and infrequently used so this should improve performance.
|
|
|
|
- New QueryCanceledError and TransactionRollbackError exceptions
|
|
|
|
have been added to the psycopg2.extensions module. They can be
|
|
|
|
used to detect statement timeouts and deadlocks respectively.
|
|
|
|
- Cursor objects now have a "closed" attribute. (#164)
|
|
|
|
- If psycopg has been built with debug support, it is now necessary
|
|
|
|
to set the PSYCOPG_DEBUG environment variable to turn on debug
|
|
|
|
spew.
|
|
|
|
|
2008-02-27 07:42:56 +03:00
|
|
|
|
2007-01-19 17:38:01 +03:00
|
|
|
What's new in psycopg 2.0.6
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
Better support for PostgreSQL, Python and win32:
|
|
|
|
|
|
|
|
- full support for PostgreSQL 8.2, including NULLs in arrays
|
|
|
|
- support for almost all existing PostgreSQL encodings
|
|
|
|
- full list of PostgreSQL error codes available by importing the
|
|
|
|
psycopg2.errorcodes module
|
|
|
|
- full support for Python 2.5 and 64 bit architectures
|
|
|
|
- better build support on win32 platform
|
|
|
|
|
|
|
|
Support for per-connection type-casters (used by ZPsycopgDA too, this
|
|
|
|
fixes a long standing bug that made different connections use a random
|
|
|
|
set of date/time type-casters instead of the configured one.)
|
|
|
|
|
|
|
|
Better management of times and dates both from Python and in Zope.
|
|
|
|
|
|
|
|
copy_to and copy_from now take an extra "columns" parameter.
|
|
|
|
|
|
|
|
Python tuples are now adapted to SQL sequences that can be used with
|
|
|
|
the "IN" operator by default if the psycopg2.extensions module is
|
|
|
|
imported (i.e., the SQL_IN adapter was moved from extras to extensions.)
|
|
|
|
|
|
|
|
Fixed some small buglets and build glitches:
|
|
|
|
|
|
|
|
- removed double mutex destroy
|
|
|
|
- removed all non-constant initializers
|
|
|
|
- fixed PyObject_HEAD declarations to avoid memory corruption
|
|
|
|
on 64 bit architectures
|
|
|
|
- fixed several Python API calls to work on 64 bit architectures
|
|
|
|
- applied compatibility macros from PEP 353
|
|
|
|
- now using more than one argument format raise an error instead of
|
|
|
|
a segfault
|
|
|
|
|
2007-01-19 17:38:01 +03:00
|
|
|
|
2006-09-02 05:09:31 +04:00
|
|
|
What's new in psycopg 2.0.5.1
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2006-09-02 05:09:31 +04:00
|
|
|
|
|
|
|
* Now it really, really builds on MSVC and older gcc versions.
|
|
|
|
|
|
|
|
What's new in psycopg 2.0.5
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2006-09-02 05:09:31 +04:00
|
|
|
|
|
|
|
* Fixed various buglets such as:
|
2013-03-18 19:42:10 +04:00
|
|
|
|
2006-09-02 05:09:31 +04:00
|
|
|
- segfault when passing an empty string to Binary()
|
|
|
|
- segfault on null queries
|
|
|
|
- segfault and bad keyword naming in .executemany()
|
|
|
|
- OperationalError in connection objects was always None
|
|
|
|
|
|
|
|
* Various changes to ZPsycopgDA to make it more zope2.9-ish.
|
|
|
|
|
|
|
|
* connect() now accept both integers and strings as port parameter
|
|
|
|
|
2006-08-02 03:37:20 +04:00
|
|
|
What's new in psycopg 2.0.4
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2006-08-02 03:37:20 +04:00
|
|
|
|
|
|
|
* Fixed float conversion bug introduced in 2.0.3.
|
|
|
|
|
2006-07-31 04:22:13 +04:00
|
|
|
What's new in psycopg 2.0.3
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2006-07-31 04:22:13 +04:00
|
|
|
|
|
|
|
* Fixed various buglets and a memory leak (see ChangeLog for details)
|
|
|
|
|
2006-06-11 09:14:33 +04:00
|
|
|
What's new in psycopg 2.0.2
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2006-06-11 09:14:33 +04:00
|
|
|
|
|
|
|
* Fixed a bug in array typecasting that sometimes made psycopg forget about
|
|
|
|
the last element in the array.
|
|
|
|
|
|
|
|
* Fixed some minor buglets in string memory allocations.
|
|
|
|
|
|
|
|
* Builds again with compilers different from gcc (#warning about PostgreSQL
|
|
|
|
version is issued only if __GCC__ is defined.)
|
|
|
|
|
2006-06-09 04:08:47 +04:00
|
|
|
What's new in psycopg 2.0.1
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2006-06-09 04:08:47 +04:00
|
|
|
|
|
|
|
* ZPsycopgDA now actually loads.
|
|
|
|
|
2006-06-08 04:17:32 +04:00
|
|
|
What's new in psycopg 2.0
|
|
|
|
-------------------------
|
2006-02-11 14:01:17 +03:00
|
|
|
|
|
|
|
* Fixed handle leak on win32.
|
|
|
|
|
2006-06-08 04:17:32 +04:00
|
|
|
* If available the new "safe" encoding functions of libpq are used.
|
|
|
|
|
|
|
|
* django and tinyerp people, please switch to psycopg 2 _without_
|
|
|
|
using a psycopg 1 compatibility layer (this release was anticipated
|
|
|
|
so that you all stop grumbling about psycopg 2 is still in beta.. :)
|
|
|
|
|
2005-11-20 08:01:13 +03:00
|
|
|
What's new in psycopg 2.0 beta 7
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2005-11-20 08:01:13 +03:00
|
|
|
|
|
|
|
* Ironed out last problems with times and date (should be quite solid now.)
|
|
|
|
|
2006-01-01 12:10:17 +03:00
|
|
|
* Fixed problems with some arrays.
|
|
|
|
|
|
|
|
* Slightly better ZPsycopgDA (no more double connection objects in the menu
|
|
|
|
and other minor fixes.)
|
2013-03-18 19:42:10 +04:00
|
|
|
|
2006-01-10 19:13:37 +03:00
|
|
|
* ProgrammingError exceptions now have three extra attributes: .cursor
|
|
|
|
(it is possible to access the query that caused the exception using
|
|
|
|
error.cursor.query), .pgerror and .pgcode (PostgreSQL original error
|
|
|
|
text and code.)
|
2013-03-18 19:42:10 +04:00
|
|
|
|
2006-01-10 19:13:37 +03:00
|
|
|
* The build system uses pg_config when available.
|
2013-03-18 19:42:10 +04:00
|
|
|
|
2006-01-01 14:17:46 +03:00
|
|
|
* Documentation in the doc/ directory! (With many kudos to piro.)
|
2005-11-29 14:50:43 +03:00
|
|
|
|
2005-10-22 10:59:31 +04:00
|
|
|
What's new in psycopg 2.0 beta 6
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2005-10-22 10:59:31 +04:00
|
|
|
|
|
|
|
* Support for named cursors (see examples/fetch.py).
|
|
|
|
|
2005-11-03 21:28:04 +03:00
|
|
|
* Safer parsing of time intervals.
|
|
|
|
|
2005-11-16 16:47:11 +03:00
|
|
|
* Better parsing of times and dates, no more locale problems.
|
|
|
|
|
|
|
|
* Should now play well with py2exe and similar tools.
|
|
|
|
|
|
|
|
* The "decimal" module is now used if available under Python 2.3.
|
|
|
|
|
2005-10-18 18:20:27 +04:00
|
|
|
What's new in psycopg 2.0 beta 5
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2005-08-07 06:20:46 +04:00
|
|
|
|
|
|
|
* Fixed all known bugs.
|
|
|
|
|
2005-10-17 10:17:34 +04:00
|
|
|
* The initial isolation level is now read from the server and
|
|
|
|
.set_isolation_level() now takes values defined in psycopg2.extensions.
|
2013-03-18 19:42:10 +04:00
|
|
|
|
2005-10-17 10:17:34 +04:00
|
|
|
* .callproc() implemented as a SELECT of the given procedure.
|
|
|
|
|
|
|
|
* Better docstrings for a few functions/methods.
|
|
|
|
|
2005-10-17 19:01:14 +04:00
|
|
|
* Some time-related functions like psycopg2.TimeFromTicks() now take the
|
2005-10-18 05:29:47 +04:00
|
|
|
local timezone into account. Also a tzinfo object (as per datetime module
|
|
|
|
specifications) can be passed to the psycopg2.Time and psycopg2.Datetime
|
|
|
|
constructors.
|
2013-03-18 19:42:10 +04:00
|
|
|
|
2005-10-18 05:29:47 +04:00
|
|
|
* All classes have been renamed to exist in the psycopg2._psycopg module,
|
|
|
|
to fix problems with automatic documentation generators like epydoc.
|
2013-03-18 19:42:10 +04:00
|
|
|
|
2005-10-18 18:07:17 +04:00
|
|
|
* NOTIFY is correctly trapped (see examples/notify.py for example code.)
|
2005-10-17 10:17:34 +04:00
|
|
|
|
2005-05-31 05:55:02 +04:00
|
|
|
What's new in psycopg 2.0 beta 4
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2005-05-31 05:55:02 +04:00
|
|
|
|
2005-07-17 08:08:08 +04:00
|
|
|
* psycopg module is now named psycopg2.
|
|
|
|
|
2005-05-31 05:55:02 +04:00
|
|
|
* No more segfaults when a UNICODE query can't be converted to the
|
|
|
|
backend encoding.
|
2013-03-18 19:42:10 +04:00
|
|
|
|
2005-06-13 08:25:09 +04:00
|
|
|
* No more segfaults on empty queries.
|
|
|
|
|
|
|
|
* psycopg2.connect() now takes an integer for the port keyword parameter.
|
2005-05-31 05:55:02 +04:00
|
|
|
|
2005-07-17 08:08:08 +04:00
|
|
|
* "python setup.py bdist_rpm" now works.
|
|
|
|
|
2005-06-24 11:11:44 +04:00
|
|
|
* Fixed lots of small bugs, see ChangeLog for details.
|
|
|
|
|
2005-05-26 11:36:01 +04:00
|
|
|
What's new in psycopg 2.0 beta 3
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2005-05-26 11:36:01 +04:00
|
|
|
|
|
|
|
* ZPsycopgDA now works (except table browsing.)
|
|
|
|
|
|
|
|
* psycopg build again on Python 2.2.
|
|
|
|
|
2005-05-18 12:12:10 +04:00
|
|
|
What's new in psycopg 2.0 beta 2
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2005-05-18 12:12:10 +04:00
|
|
|
|
|
|
|
* Fixed ZPsycopgDA version check (ZPsycopgDA can now be imported in
|
|
|
|
Zope.)
|
|
|
|
|
|
|
|
* psycopg.extras.DictRow works even after a new query on the generating
|
|
|
|
cursor.
|
|
|
|
|
|
|
|
* Better setup.py for win32 (should build with MSCV or mingw.)
|
|
|
|
|
|
|
|
* Generic fixed and memory leaks plugs.
|
|
|
|
|
2005-05-09 12:54:32 +04:00
|
|
|
What's new in psycopg 2.0 beta 1
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2005-05-09 12:54:32 +04:00
|
|
|
|
|
|
|
* Officially in beta (i.e., no new features will be added.)
|
|
|
|
|
|
|
|
* Array support: list objects can be passed as bound variables and are
|
|
|
|
correctly returned for array columns.
|
|
|
|
|
|
|
|
* Added the psycopg.psycopg1 compatibility module (if you want instant
|
|
|
|
psycopg 1 compatibility just "from psycopg import psycopg1 as psycopg".)
|
|
|
|
|
|
|
|
* Complete support for BYTEA columns and buffer objects.
|
|
|
|
|
2005-05-09 13:07:07 +04:00
|
|
|
* Added error codes to error messages.
|
|
|
|
|
2005-05-09 12:54:32 +04:00
|
|
|
* The AsIs adapter is now exported by default (also Decimal objects are
|
2005-05-09 13:48:40 +04:00
|
|
|
adapted using the AsIs adapter (when str() is called on them they
|
2005-05-09 12:54:32 +04:00
|
|
|
already format themselves using the right precision and scale.)
|
|
|
|
|
|
|
|
* The connect() function now takes "connection_factory" instead of
|
|
|
|
"factory" as keyword argument.
|
|
|
|
|
|
|
|
* New setup.py code to build on win32 using mingw and better error
|
|
|
|
messages on missing datetime headers,
|
|
|
|
|
|
|
|
* Internal changes that allow much better user-defined type casters.
|
|
|
|
|
|
|
|
* A lot of bugfixes (binary, datetime, 64 bit arches, GIL, .executemany())
|
2013-03-18 19:42:10 +04:00
|
|
|
|
2005-03-23 13:32:30 +03:00
|
|
|
What's new in psycopg 1.99.13
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2005-03-23 13:32:30 +03:00
|
|
|
|
|
|
|
* Added missing .executemany() method.
|
|
|
|
|
|
|
|
* Optimized type cast from PostgreSQL to Python (psycopg should be even
|
|
|
|
faster than before.)
|
|
|
|
|
2005-01-20 08:49:40 +03:00
|
|
|
What's new in psycopg 1.99.12
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2005-01-20 08:49:40 +03:00
|
|
|
|
|
|
|
* .rowcount should be ok and in sync with psycopg 1.
|
|
|
|
|
|
|
|
* Implemented the new COPY FROM/COPY TO code when connection to the
|
|
|
|
backend using libpq protocol 3 (this also removes all asprintf calls:
|
|
|
|
build on win32 works again.) A protocol 3-enabled psycopg *can*
|
|
|
|
connect to an old protocol 2 database and will detect it and use the
|
|
|
|
right code.
|
|
|
|
|
2005-02-28 18:50:55 +03:00
|
|
|
* getquoted() called for real by the mogrification code.
|
|
|
|
|
2004-12-10 13:34:57 +03:00
|
|
|
What's new in psycopg 1.99.11
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2004-12-10 13:34:57 +03:00
|
|
|
|
2013-03-18 19:42:10 +04:00
|
|
|
* 'cursor' argument in .cursor() connection method renamed to
|
2004-12-10 13:34:57 +03:00
|
|
|
'cursor_factory'.
|
|
|
|
|
|
|
|
* changed 'tuple_factory' cursor attribute name to 'row_factory'.
|
|
|
|
|
2013-04-26 12:21:56 +04:00
|
|
|
* the .cursor attribute is gone and connections and cursors are properly
|
2004-12-10 13:34:57 +03:00
|
|
|
gc-managed.
|
|
|
|
|
2004-12-14 08:12:56 +03:00
|
|
|
* fixes to the async core.
|
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
What's new in psycopg 1.99.10
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
* The adapt() function now fully supports the adaptation protocol
|
|
|
|
described in PEP 246. Note that the adapters registry now is indexed
|
|
|
|
by (type, protocol) and not by type alone. Change your adapters
|
|
|
|
accordingly.
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
* More configuration options moved from setup.py to setup.cfg.
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
* Fixed two memory leaks: one in cursor deallocation and one in row
|
|
|
|
fetching (.fetchXXX() methods.)
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
What's new in psycopg 1.99.9
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
* Added simple pooling code (psycopg.pool module); see the reworked
|
|
|
|
examples/threads.py for example code.
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
* Added DECIMAL typecaster to convert postgresql DECIMAL and NUMERIC
|
|
|
|
types (i.e, all types with an OID of NUMERICOID.) Note that the
|
|
|
|
DECIMAL typecaster does not set scale and precision on the created
|
|
|
|
objects but uses Python defaults.
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
* ZPsycopgDA back in and working using the new pooling code.
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
* Isn't that enough? :)
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
What's new in psycopg 1.99.8
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
* added support for UNICODE queries.
|
2013-03-18 19:42:10 +04:00
|
|
|
* added UNICODE typecaster; to activate it just do::
|
|
|
|
|
|
|
|
psycopg.extensions.register_type(psycopg.extensions.UNICODE)
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
Note that the UNICODE typecaster override the STRING one, so it is
|
|
|
|
not activated by default.
|
2004-10-29 20:08:31 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
* cursors now really support the iterator protocol.
|
|
|
|
* solved the rounding errors in time conversions.
|
|
|
|
* now cursors support .fileno() and .isready() methods, to be used in
|
|
|
|
select() calls.
|
|
|
|
* .copy_from() and .copy_in() methods are back in (still using the old
|
2013-04-26 12:21:56 +04:00
|
|
|
protocol, will be updated to use new one in next release.)
|
2004-10-29 20:15:45 +04:00
|
|
|
* fixed memory corruption bug reported on win32 platform.
|
2004-10-29 20:08:31 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
What's new in psycopg 1.99.7
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2004-10-29 20:08:31 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
* added support for tuple factories in cursor objects (removed factory
|
|
|
|
argument in favor of a .tuple_factory attribute on the cursor object);
|
|
|
|
see the new module psycopg.extras for a cursor (DictCursor) that
|
|
|
|
return rows as objects that support indexing both by position and
|
|
|
|
column name.
|
|
|
|
* added support for tzinfo objects in datetime.timestamp objects: the
|
2013-03-18 19:42:10 +04:00
|
|
|
PostgreSQL type "timestamp with time zone" is converted to
|
2004-10-29 20:15:45 +04:00
|
|
|
datetime.timestamp with a FixedOffsetTimezone initialized as necessary.
|
2004-10-29 20:08:31 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
What's new in psycopg 1.99.6
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2004-10-29 20:08:31 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
* sslmode parameter from 1.1.x
|
|
|
|
* various datetime conversion improvements.
|
|
|
|
* now psycopg should compile without mx or without native datetime
|
|
|
|
(not both, obviously.)
|
|
|
|
* included various win32/MSVC fixes (pthread.h changes, winsock2
|
|
|
|
library, include path in setup.py, etc.)
|
|
|
|
* ported interval fixes from 1.1.14/1.1.15.
|
|
|
|
* the last query executed by a cursor is now available in the
|
|
|
|
.query attribute.
|
|
|
|
* conversion of unicode strings to backend encoding now uses a table
|
|
|
|
(that still need to be filled.)
|
|
|
|
* cursors now have a .mogrify() method that return the query string
|
|
|
|
instead of executing it.
|
|
|
|
* connection objects now have a .dsn read-only attribute that holds the
|
|
|
|
connection string.
|
|
|
|
* moved psycopg C module to _psycopg and made psycopg a python module:
|
|
|
|
this allows for a neat separation of DBAPI-2.0 functionality and psycopg
|
|
|
|
extensions; the psycopg namespace will be also used to provide
|
|
|
|
python-only extensions (like the pooling code, some ZPsycopgDA support
|
|
|
|
functions and the like.)
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
What's new in psycopg 1.99.3
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
* added support for python 2.3 datetime types (both ways) and made datetime
|
|
|
|
the default set of typecasters when available.
|
|
|
|
* added example: dt.py.
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
What's new in psycopg 1.99.3
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
* initial working support for unicode bound variables: UTF-8 and latin-1
|
|
|
|
backend encodings are natively supported (and the encoding.py example even
|
|
|
|
works!)
|
|
|
|
* added .set_client_encoding() method on the connection object.
|
|
|
|
* added examples: encoding.py, binary.py, lastrowid.py.
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
What's new in psycopg 1.99.2
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
* better typecasting:
|
2013-03-18 19:42:10 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
- DateTimeDelta used for postgresql TIME (merge from 1.1)
|
|
|
|
- BYTEA now is converted to a real buffer object, not to a string
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
* buffer objects are now adapted into Binary objects automatically.
|
|
|
|
* ported scroll method from 1.1 (DBAPI-2.0 extension for cursors)
|
|
|
|
* initial support for some DBAPI-2.0 extensions:
|
2013-03-18 19:42:10 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
- .rownumber attribute for cursors
|
|
|
|
- .connection attribute for cursors
|
|
|
|
- .next() and .__iter__() methods to have cursors support the iterator
|
|
|
|
protocol
|
|
|
|
- all exception objects are exported to the connection object
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
What's new in psycopg 1.99.1
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
* implemented microprotocols to adapt arbitrary types to the interface used by
|
|
|
|
psycopg to bind variables in execute;
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
* moved qstring, pboolean and mxdatetime to the new adapter layout (binary is
|
|
|
|
still missing; python 2.3 datetime needs to be written).
|
2004-10-19 07:17:12 +04:00
|
|
|
|
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
What's new in psycopg 1.99.0
|
2013-03-18 19:42:10 +04:00
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
* reorganized the whole source tree;
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
* async core is in place;
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
* splitted QuotedString objects from mx stuff;
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
* dropped autotools and moved to pythonic setup.py (needs work.)
|