Re: [Python] Psycopg 2.5 released

2013-04-07 Per discussione Giovanni Porcari

Il giorno 08/apr/2013, alle ore 07:53, Adriano Barbieri  
ha scritto:

> Ciao Daniele,
> Encomiabile, non conosco il progetto perché nuovo nella lista, ma chi dedica 
> il suo tempo per gli altri merita un grande plauso.
> Adriano
> 

Se consideri che PostgreSQL è la pietra angolare su cui costruire la nostra
applicazione, Psycopg e il cemento che tiene assieme l'edificio ;)
E San Daniele (ma non quello del prosciutto) da quando ha preso in mano
Psycopg, ha svolto un lavoro assolutamente eccezionale.


G


___
Python mailing list
Python@lists.python.it
http://lists.python.it/mailman/listinfo/python


Re: [Python] Psycopg 2.5 released

2013-04-07 Per discussione Adriano Barbieri

Ciao Daniele,
Encomiabile, non conosco il progetto perché nuovo nella lista, ma chi dedica 
il suo tempo per gli altri merita un grande plauso.

Adriano

- Original Message - 
From: "Daniele Varrazzo" 

To: 
Sent: Sunday, April 07, 2013 9:18 PM
Subject: [Python] Psycopg 2.5 released


We are happy to announce the release 2.5 of Psycopg. For a detailed
list
of the release highlights please check the article at
<http://initd.org/psycopg/articles/2013/04/07/psycopg-25-released/>.

- Download:
http://initd.org/psycopg/tarballs/PSYCOPG-2-5/psycopg2-2.5.tar.gz
- Signature:
http://initd.org/psycopg/tarballs/PSYCOPG-2-5/psycopg2-2.5.tar.gz.asc

New features:

- Added JSON adaptation.
- Added support for PostgreSQL 9.2 range types .
- 'connection' and 'cursor' objects can be used in "with" statements
  as context managers as specified by a recent DBAPI  extension.
- Added 'Diagnostics' object to get extended info from a database
error.
  Many thanks to Matthew Woodcraft for the implementation (ticket
#149).
- Added 'connection.cursor_factory' attribute to customize the default
  object returned by 'cursor()'.
- Added support for backward scrollable cursors. Thanks to Jon Nelson
  for the initial patch (ticket #108).
- Added a simple way to customize casting of composite types into
  Python objects other than namedtuples.  Many thanks to Ronan Dunklau
  and Tobias Oberstein for the feature development.
- 'connection.reset()' implemented using 'DISCARD ALL' on server
  versions supporting it.

Bug fixes:

- Properly cleanup memory of broken connections (ticket #148).
- 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.
- Dropped support for Python 2.4. Please use Psycopg 2.4.x if you
  need it.
- '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>.




Psycopg is the most popular PostgreSQL adapter for the Python
programming language. At its core it fully implements the Python DB
API 2.0 specifications. Several extensions allow access to many of the
features offered by PostgreSQL.

___
Python mailing list
Python@lists.python.it
http://lists.python.it/mailman/listinfo/python 


___
Python mailing list
Python@lists.python.it
http://lists.python.it/mailman/listinfo/python


Re: [Python] Psycopg 2.5 released

2013-04-07 Per discussione Marco Beri
Il giorno 07/apr/2013 21:58, "Giovanni Porcari" <
giovanni.porc...@softwell.it> ha scritto:
> Il giorno 07/apr/2013, alle ore 21:18, Daniele Varrazzo 
ha scritto:
>
> > We are happy to announce the release 2.5 of Psycopg. For a detailed list
>
> Che dire se non ... GRAZIE!

Grazie anche da parte mia. Donare il proprio tempo è incommensurabile.

Ciao.
Marco.
___
Python mailing list
Python@lists.python.it
http://lists.python.it/mailman/listinfo/python


Re: [Python] Psycopg 2.5 released

2013-04-07 Per discussione Giovanni Porcari

Il giorno 07/apr/2013, alle ore 21:18, Daniele Varrazzo  ha 
scritto:

> We are happy to announce the release 2.5 of Psycopg. For a detailed list

Che dire se non ... GRAZIE!

G
___
Python mailing list
Python@lists.python.it
http://lists.python.it/mailman/listinfo/python


Re: [Python] Psycopg 2.5 released

2013-04-07 Per discussione Carlo Miron
2013/4/7 Daniele Varrazzo ::

> We are happy to announce the release 2.5 of Psycopg.

grande piro.

©
--
|R
| K--S
|L
___
Python mailing list
Python@lists.python.it
http://lists.python.it/mailman/listinfo/python


[Python] Psycopg 2.5 released

2013-04-07 Per discussione Daniele Varrazzo
We are happy to announce the release 2.5 of Psycopg. For a detailed 
list

of the release highlights please check the article at
.

- Download: 
http://initd.org/psycopg/tarballs/PSYCOPG-2-5/psycopg2-2.5.tar.gz
- Signature: 
http://initd.org/psycopg/tarballs/PSYCOPG-2-5/psycopg2-2.5.tar.gz.asc


New features:

- Added JSON adaptation.
- Added support for PostgreSQL 9.2 range types .
- 'connection' and 'cursor' objects can be used in "with" statements
  as context managers as specified by a recent DBAPI  extension.
- Added 'Diagnostics' object to get extended info from a database 
error.
  Many thanks to Matthew Woodcraft for the implementation (ticket 
#149).

- Added 'connection.cursor_factory' attribute to customize the default
  object returned by 'cursor()'.
- Added support for backward scrollable cursors. Thanks to Jon Nelson
  for the initial patch (ticket #108).
- Added a simple way to customize casting of composite types into
  Python objects other than namedtuples.  Many thanks to Ronan Dunklau
  and Tobias Oberstein for the feature development.
- 'connection.reset()' implemented using 'DISCARD ALL' on server
  versions supporting it.

Bug fixes:

- Properly cleanup memory of broken connections (ticket #148).
- 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.
- Dropped support for Python 2.4. Please use Psycopg 2.4.x if you
  need it.
- 'errorcodes' map updated to PostgreSQL 9.2.
- Dropped Zope adapter from source repository. ZPsycopgDA now has its
  own project at .




Psycopg is the most popular PostgreSQL adapter for the Python
programming language. At its core it fully implements the Python DB
API 2.0 specifications. Several extensions allow access to many of the
features offered by PostgreSQL.

___
Python mailing list
Python@lists.python.it
http://lists.python.it/mailman/listinfo/python