public inbox for [email protected]
help / color / mirror / Atom feedPsycopg 2.8.1, 2.8.2 released
6+ messages / 3 participants
[nested] [flat]
* Psycopg 2.8.1, 2.8.2 released
@ 2019-04-14 17:42 Daniele Varrazzo <[email protected]>
2019-04-14 17:52 ` Re: Psycopg 2.8.1, 2.8.2 released Karsten Hilbert <[email protected]>
0 siblings, 1 reply; 6+ messages in thread
From: Daniele Varrazzo @ 2019-04-14 17:42 UTC (permalink / raw)
To: psycopg
Hello,
We have just released Psycopg 2.8.2; a few days ago Psycopg 2.8.1 was released.
Some of the bugs addressed are ordinary teething problem with the 2.8
release, but an important change landed with 2.8.2: binary packages
now ship with OpenSSL 1.1 instead of 1.0. This should fix concurrency
problems on connection experienced both on Windows and Linux. Many
thanks to Matthew Brett and Jason Erickson for this improvement!
The combined list of changes is:
- Fixed "there's no async cursor" error polling a connection with no cursor
(ticket #887).
- Fixed 'RealDictCursor' when there are repeated columns (ticket #884).
- Fixed 'RealDictRow' modifiability (ticket #886).
- Binary packages built with openssl 1.1.1b. Should fix concurrency problems
(tickets #543, #836).
Happy hacking!
----
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.
^ permalink raw reply [nested|flat] 6+ messages in thread
* Re: Psycopg 2.8.1, 2.8.2 released
2019-04-14 17:42 Psycopg 2.8.1, 2.8.2 released Daniele Varrazzo <[email protected]>
@ 2019-04-14 17:52 ` Karsten Hilbert <[email protected]>
2019-04-14 17:58 ` Re: Psycopg 2.8.1, 2.8.2 released Rich Shepard <[email protected]>
2019-04-14 18:19 ` Re: Psycopg 2.8.1, 2.8.2 released Daniele Varrazzo <[email protected]>
0 siblings, 2 replies; 6+ messages in thread
From: Karsten Hilbert @ 2019-04-14 17:52 UTC (permalink / raw)
To: [email protected]; psycopg
On Sun, Apr 14, 2019 at 06:42:26PM +0100, Daniele Varrazzo wrote:
> We have just released Psycopg 2.8.2; a few days ago Psycopg 2.8.1 was released.
Many thanks.
> - Fixed 'RealDictCursor' when there are repeated columns (ticket #884).
How ?
I ask because (to me) there's no immediately obvious solution
to that.
Karsten
--
GPG 40BE 5B0E C98E 1713 AFA6 5BC0 3BEA AC80 7D4F C89B
^ permalink raw reply [nested|flat] 6+ messages in thread
* Re: Psycopg 2.8.1, 2.8.2 released
2019-04-14 17:42 Psycopg 2.8.1, 2.8.2 released Daniele Varrazzo <[email protected]>
2019-04-14 17:52 ` Re: Psycopg 2.8.1, 2.8.2 released Karsten Hilbert <[email protected]>
@ 2019-04-14 17:58 ` Rich Shepard <[email protected]>
2019-04-14 18:04 ` Re: Psycopg 2.8.1, 2.8.2 released Rich Shepard <[email protected]>
1 sibling, 1 reply; 6+ messages in thread
From: Rich Shepard @ 2019-04-14 17:58 UTC (permalink / raw)
To: psycopg
On Sun, Apr 14, 2019 at 06:42:26PM +0100, Daniele Varrazzo wrote:
>
> We have just released Psycopg 2.8.2; a few days ago Psycopg 2.8.1 was
> released.
Daniele,
2.8.2 is not yet available on the web site, only 2.8.1. I'll try later
today.
Regards,
Rich
^ permalink raw reply [nested|flat] 6+ messages in thread
* Re: Psycopg 2.8.1, 2.8.2 released
2019-04-14 17:42 Psycopg 2.8.1, 2.8.2 released Daniele Varrazzo <[email protected]>
2019-04-14 17:52 ` Re: Psycopg 2.8.1, 2.8.2 released Karsten Hilbert <[email protected]>
2019-04-14 17:58 ` Re: Psycopg 2.8.1, 2.8.2 released Rich Shepard <[email protected]>
@ 2019-04-14 18:04 ` Rich Shepard <[email protected]>
0 siblings, 0 replies; 6+ messages in thread
From: Rich Shepard @ 2019-04-14 18:04 UTC (permalink / raw)
To: psycopg
On Sun, 14 Apr 2019, Rich Shepard wrote:
> 2.8.2 is not yet available on the web site, only 2.8.1. I'll try later
> today.
Later has arrived. :-)
Thanks!
Rich
^ permalink raw reply [nested|flat] 6+ messages in thread
* Re: Psycopg 2.8.1, 2.8.2 released
2019-04-14 17:42 Psycopg 2.8.1, 2.8.2 released Daniele Varrazzo <[email protected]>
2019-04-14 17:52 ` Re: Psycopg 2.8.1, 2.8.2 released Karsten Hilbert <[email protected]>
@ 2019-04-14 18:19 ` Daniele Varrazzo <[email protected]>
2019-04-14 18:39 ` Re: Psycopg 2.8.1, 2.8.2 released Karsten Hilbert <[email protected]>
1 sibling, 1 reply; 6+ messages in thread
From: Daniele Varrazzo @ 2019-04-14 18:19 UTC (permalink / raw)
To: psycopg
On Sun, Apr 14, 2019 at 6:52 PM Karsten Hilbert <[email protected]> wrote:
> > - Fixed 'RealDictCursor' when there are repeated columns (ticket #884).
>
> How ?
The problem was only that the result of 'select 1 as a, 2 as a' would
have been an object in an inconsistent state (bug introduced in 2.8.1
to fix the other, #886, which was caused by actually calling the
superclass constructor right) . Now the state is consistent... it's
arbitrary but hey. Can't fix the users, only the cursor.
-- Daniele
^ permalink raw reply [nested|flat] 6+ messages in thread
* Re: Psycopg 2.8.1, 2.8.2 released
2019-04-14 17:42 Psycopg 2.8.1, 2.8.2 released Daniele Varrazzo <[email protected]>
2019-04-14 17:52 ` Re: Psycopg 2.8.1, 2.8.2 released Karsten Hilbert <[email protected]>
2019-04-14 18:19 ` Re: Psycopg 2.8.1, 2.8.2 released Daniele Varrazzo <[email protected]>
@ 2019-04-14 18:39 ` Karsten Hilbert <[email protected]>
0 siblings, 0 replies; 6+ messages in thread
From: Karsten Hilbert @ 2019-04-14 18:39 UTC (permalink / raw)
To: [email protected]; psycopg
On Sun, Apr 14, 2019 at 07:19:28PM +0100, Daniele Varrazzo wrote:
> > > - Fixed 'RealDictCursor' when there are repeated columns (ticket #884).
> Now the state is consistent... it's
> arbitrary but hey. Can't fix the users, only the cursor.
Ah, OK, I see :-)
Karsten
--
GPG 40BE 5B0E C98E 1713 AFA6 5BC0 3BEA AC80 7D4F C89B
^ permalink raw reply [nested|flat] 6+ messages in thread
end of thread, other threads:[~2019-04-14 18:39 UTC | newest]
Thread overview: 6+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2019-04-14 17:42 Psycopg 2.8.1, 2.8.2 released Daniele Varrazzo <[email protected]>
2019-04-14 17:52 ` Karsten Hilbert <[email protected]>
2019-04-14 17:58 ` Rich Shepard <[email protected]>
2019-04-14 18:04 ` Rich Shepard <[email protected]>
2019-04-14 18:19 ` Daniele Varrazzo <[email protected]>
2019-04-14 18:39 ` Karsten Hilbert <[email protected]>
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox