blob: 7f212e04691776042585c5526e6dab0143ed027e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
.. currentmodule:: psycopg_pool
.. index::
single: Release notes
single: News
``psycopg_pool`` release notes
==============================
Current release
---------------
psycopg_pool 3.1.5
^^^^^^^^^^^^^^^^^^
- Make sure that `!ConnectionPool.check()` refills an empty pool
(:ticket:`#438`).
- Avoid error in Pyright caused by aliasing `!TypeAlias` (:ticket:`#439`).
psycopg_pool 3.1.4
^^^^^^^^^^^^^^^^^^
- Fix async pool exhausting connections, happening if the pool is created
before the event loop is started (:ticket:`#219`).
psycopg_pool 3.1.3
^^^^^^^^^^^^^^^^^^
- Add support for Python 3.11 (:ticket:`#305`).
psycopg_pool 3.1.2
^^^^^^^^^^^^^^^^^^
- Fix possible failure to reconnect after losing connection from the server
(:ticket:`#370`).
psycopg_pool 3.1.1
^^^^^^^^^^^^^^^^^^
- Fix race condition on pool creation which might result in the pool not
filling (:ticket:`#230`).
psycopg_pool 3.1.0
------------------
- Add :ref:`null-pool` (:ticket:`#148`).
- Add `ConnectionPool.open()` and ``open`` parameter to the pool init
(:ticket:`#151`).
- Drop support for Python 3.6.
psycopg_pool 3.0.3
^^^^^^^^^^^^^^^^^^
- Raise `!ValueError` if `ConnectionPool` `!min_size` and `!max_size` are both
set to 0 (instead of hanging).
- Raise `PoolClosed` calling `~ConnectionPool.wait()` on a closed pool.
psycopg_pool 3.0.2
^^^^^^^^^^^^^^^^^^
- Remove dependency on the internal `!psycopg._compat` module.
psycopg_pool 3.0.1
^^^^^^^^^^^^^^^^^^
- Don't leave connections idle in transaction after calling
`~ConnectionPool.check()` (:ticket:`#144`).
psycopg_pool 3.0
----------------
- First release on PyPI.
|