|
10 | 10 | Current release |
11 | 11 | --------------- |
12 | 12 |
|
13 | | -gaussdb_pool 3.2.6 |
14 | | -^^^^^^^^^^^^^^^^^^ |
15 | | - |
16 | | -- Reset transaction status of connection failing check (:ticket:`#1014`). |
17 | | - |
18 | | - |
19 | | -gaussdb_pool 3.2.5 |
20 | | -^^^^^^^^^^^^^^^^^^ |
21 | | - |
22 | | -- Fix spurious warning logging on pool shrinking (:ticket:`#1001`). |
23 | | - |
24 | | - |
25 | | -gaussdb_pool 3.2.4 |
26 | | -^^^^^^^^^^^^^^^^^^ |
27 | | - |
28 | | -- Add a hint to the warning printed if threads fail to stop during |
29 | | - ``__del__``, which has been reported happening during interpreter shutdown |
30 | | - on Python 3.13 (see :ticket:`#954`). |
31 | | - |
32 | | - |
33 | | -gaussdb_pool 3.2.3 |
34 | | -^^^^^^^^^^^^^^^^^^ |
35 | | - |
36 | | -- Add metadata to declare compatibility with Python 3.13. |
37 | | - |
38 | | - |
39 | | -gaussdb_pool 3.2.2 |
40 | | -^^^^^^^^^^^^^^^^^^ |
41 | | - |
42 | | -- Raise a `RuntimeWarning` instead of a `DeprecationWarning` if an async pool |
43 | | - is open in the constructor. |
44 | | -- Fix connections possibly left in the pool after closing (:ticket:`#784`). |
45 | | -- Use an empty query instead of ``SELECT 1`` to check connections |
46 | | - (:ticket:`#790`). |
47 | | - |
48 | | - |
49 | | -gaussdb_pool 3.2.1 |
50 | | -^^^^^^^^^^^^^^^^^^ |
51 | | - |
52 | | -- Respect the `!timeout` parameter on `~ConnectionPool.connection()` when |
53 | | - `!check` fails. Also avoid a busy-loop of checking; separate check attempts |
54 | | - using an exponential backoff (:ticket:`#709`). |
55 | | -- Use `typing.Self` as a more correct return value annotation of context |
56 | | - managers and other self-returning methods (see :ticket:`708`). |
57 | | - |
58 | | - |
59 | | -gaussdb_pool 3.2.0 |
60 | | ------------------- |
61 | | - |
62 | | -- Add support for async `!reconnect_failed` callbacks in `AsyncConnectionPool` |
63 | | - (:ticket:`#520`). |
64 | | -- Add `!check` parameter to the pool constructor and |
65 | | - `~ConnectionPool.check_connection()` method. (:ticket:`#656`). |
66 | | -- Make connection pool classes generic on the connection type (:ticket:`#559`). |
67 | | -- Raise a warning if sync pools rely an implicit `!open=True` and the |
68 | | - pool context is not used. In the future the default will become `!False` |
69 | | - (:ticket:`#659`). |
70 | | -- Raise a warning if async pools are opened in the constructor. In the future |
71 | | - it will become an error. (:ticket:`#659`). |
72 | | - |
73 | | - |
74 | | -gaussdb_pool 3.1.9 |
75 | | -^^^^^^^^^^^^^^^^^^ |
76 | | - |
77 | | -- Fix the return type annotation of `!NullConnectionPool.__enter__()` |
78 | | - (:ticket:`#540`). |
79 | | - |
80 | | - |
81 | | -gaussdb_pool 3.1.8 |
82 | | -^^^^^^^^^^^^^^^^^^ |
83 | | - |
84 | | -- Enforce connections' ``max_lifetime`` on `~ConnectionPool.check()` |
85 | | - (:ticket:`#482`). |
86 | | - |
87 | | - |
88 | | -gaussdb_pool 3.1.7 |
89 | | -^^^^^^^^^^^^^^^^^^ |
90 | | - |
91 | | -- Fix handling of tasks cancelled while waiting in async pool queue |
92 | | - (:ticket:`#503`). |
93 | | - |
94 | | - |
95 | | -gaussdb_pool 3.1.6 |
96 | | -^^^^^^^^^^^^^^^^^^ |
97 | | - |
98 | | -- Declare all parameters in pools constructors, instead of using `!**kwargs` |
99 | | - (:ticket:`#493`). |
100 | | - |
101 | | - |
102 | | -gaussdb_pool 3.1.5 |
103 | | -^^^^^^^^^^^^^^^^^^ |
104 | | - |
105 | | -- Make sure that `!ConnectionPool.check()` refills an empty pool |
106 | | - (:ticket:`#438`). |
107 | | -- Avoid error in Pyright caused by aliasing `!TypeAlias` (:ticket:`#439`). |
108 | | - |
109 | | - |
110 | | -gaussdb_pool 3.1.4 |
111 | | -^^^^^^^^^^^^^^^^^^ |
112 | | - |
113 | | -- Fix async pool exhausting connections, happening if the pool is created |
114 | | - before the event loop is started (:ticket:`#219`). |
115 | | - |
116 | | - |
117 | | -gaussdb_pool 3.1.3 |
118 | | -^^^^^^^^^^^^^^^^^^ |
119 | | - |
120 | | -- Add support for Python 3.11 (:ticket:`#305`). |
121 | | - |
122 | | - |
123 | | -gaussdb_pool 3.1.2 |
124 | | -^^^^^^^^^^^^^^^^^^ |
125 | | - |
126 | | -- Fix possible failure to reconnect after losing connection from the server |
127 | | - (:ticket:`#370`). |
128 | | - |
129 | | - |
130 | | -gaussdb_pool 3.1.1 |
131 | | -^^^^^^^^^^^^^^^^^^ |
132 | | - |
133 | | -- Fix race condition on pool creation which might result in the pool not |
134 | | - filling (:ticket:`#230`). |
135 | | - |
136 | | - |
137 | | -gaussdb_pool 3.1.0 |
138 | | ------------------- |
139 | | - |
140 | | -- Add :ref:`null-pool` (:ticket:`#148`). |
141 | | -- Add `ConnectionPool.open()` and `!open` parameter to the pool constructor |
142 | | - (:ticket:`#151`). |
143 | | -- Drop support for Python 3.6. |
144 | | - |
145 | | - |
146 | | -gaussdb_pool 3.0.3 |
147 | | -^^^^^^^^^^^^^^^^^^ |
148 | | - |
149 | | -- Raise `!ValueError` if `ConnectionPool` `!min_size` and `!max_size` are both |
150 | | - set to 0 (instead of hanging). |
151 | | -- Raise `PoolClosed` calling `~ConnectionPool.wait()` on a closed pool. |
152 | | - |
153 | | - |
154 | | -gaussdb_pool 3.0.2 |
155 | | -^^^^^^^^^^^^^^^^^^ |
156 | | - |
157 | | -- Remove dependency on the internal `!gaussdb._compat` module. |
158 | | - |
159 | | - |
160 | | -gaussdb_pool 3.0.1 |
161 | | -^^^^^^^^^^^^^^^^^^ |
162 | | - |
163 | | -- Don't leave connections idle in transaction after calling |
164 | | - `~ConnectionPool.check()` (:ticket:`#144`). |
165 | | - |
166 | | - |
167 | | -gaussdb_pool 3.0 |
168 | | ----------------- |
169 | | - |
170 | 13 | - First release on PyPI. |
0 commit comments