|
Revision 849, 1.2 kB
(checked in by mfenniak, 2 years ago)
|
Update CHANGELOG
|
| Line | |
|---|
| 1 |
Version 1.02, 2007-03-13 |
|---|
| 2 |
------------------------ |
|---|
| 3 |
|
|---|
| 4 |
- Add complete DB-API 2.0 interface. |
|---|
| 5 |
|
|---|
| 6 |
- Add basic SSL support via ssl connect bool. |
|---|
| 7 |
|
|---|
| 8 |
- Rewrite pg8000_test.py to use Python's unittest library. |
|---|
| 9 |
|
|---|
| 10 |
- Add bytea type support. |
|---|
| 11 |
|
|---|
| 12 |
- Add support for parameter output types: NULL value, timestamp value, python |
|---|
| 13 |
long value. |
|---|
| 14 |
|
|---|
| 15 |
- Add support for input parameter type oid. |
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
Version 1.01, 2007-03-09 |
|---|
| 19 |
------------------------ |
|---|
| 20 |
|
|---|
| 21 |
- Add support for writing floats and decimal objs up to PG backend. |
|---|
| 22 |
|
|---|
| 23 |
- Add new error handling code and tests to make sure connection can recover |
|---|
| 24 |
from a database error. |
|---|
| 25 |
|
|---|
| 26 |
- Fixed bug where timestamp types were not always returned in the same binary |
|---|
| 27 |
format from the PG backend. Text format is now being used to send |
|---|
| 28 |
timestamps. |
|---|
| 29 |
|
|---|
| 30 |
- Fixed bug where large packets from the server were not being read fully, due |
|---|
| 31 |
to socket.read not always returning full read size requested. It was a |
|---|
| 32 |
lazy-coding bug. |
|---|
| 33 |
|
|---|
| 34 |
- Added locks to make most of the library thread-safe. |
|---|
| 35 |
|
|---|
| 36 |
- Added UNIX socket support. |
|---|
| 37 |
|
|---|
| 38 |
|
|---|
| 39 |
Version 1.00, 2007-03-08 |
|---|
| 40 |
------------------------ |
|---|
| 41 |
|
|---|
| 42 |
- First public release. Although fully functional, this release is mostly |
|---|
| 43 |
lacking in production testing and in type support. |
|---|
| 44 |
|
|---|