Codebase list aiopg / 0b26055
Update upstream source from tag 'upstream/1.3.4' Update to upstream version '1.3.4' with Debian dir cccef3474c403eef5bec08da9088cf22e7073edf Piotr Ożarowski 1 year, 7 months ago
7 changed file(s) with 63 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
0 1.3.4 (2022-06-30)
1 ^^^^^^^^^^^^^^^^^^
2
3
4 1.3.4b3 (2022-06-29)
5 ^^^^^^^^^^^^^^^^^^^^
6
7
8 1.3.4b2 (2022-06-29)
9 ^^^^^^^^^^^^^^^^^^^^
10
11
12 1.3.4b1 (2022-06-29)
13 ^^^^^^^^^^^^^^^^^^^^
14
15 * Fix compatibility with SA 1.4.38 `#891 <https://github.com/aio-libs/aiopg/pull/891>`_
16 * Add py.typed marker `#878 <https://github.com/aio-libs/aiopg/pull/878>`_
17
18
019 1.3.3 (2021-11-01)
120 ^^^^^^^^^^^^^^^^^^
221
00 Metadata-Version: 2.1
11 Name: aiopg
2 Version: 1.3.3
2 Version: 1.3.4
33 Summary: Postgres integration with asyncio.
44 Home-page: https://aiopg.readthedocs.io
55 Author: Andrew Svetlov
128128 Changelog
129129 ---------
130130
131 1.3.4 (2022-06-30)
132 ^^^^^^^^^^^^^^^^^^
133
134
135 1.3.4b3 (2022-06-29)
136 ^^^^^^^^^^^^^^^^^^^^
137
138
139 1.3.4b2 (2022-06-29)
140 ^^^^^^^^^^^^^^^^^^^^
141
142
143 1.3.4b1 (2022-06-29)
144 ^^^^^^^^^^^^^^^^^^^^
145
146 * Fix compatibility with SA 1.4.38 `#891 <https://github.com/aio-libs/aiopg/pull/891>`_
147 * Add py.typed marker `#878 <https://github.com/aio-libs/aiopg/pull/878>`_
148
149
131150 1.3.3 (2021-11-01)
132151 ^^^^^^^^^^^^^^^^^^
133152
4040 "Transaction",
4141 )
4242
43 __version__ = "1.3.3"
43 __version__ = "1.3.4"
4444
4545 version = f"{__version__}, Python {sys.version}"
4646
(New empty file)
1616
1717
1818 class APGCompiler_psycopg2(PGCompiler_psycopg2):
19 def construct_params(self, params=None, _group_number=None, _check=True):
20 pd = super().construct_params(params, _group_number, _check)
19 def construct_params(self, *args, **kwargs):
20 pd = super().construct_params(*args, **kwargs)
2121
2222 for column in self.prefetch:
2323 pd[column.key] = self._exec_default(column.default)
00 Metadata-Version: 2.1
11 Name: aiopg
2 Version: 1.3.3
2 Version: 1.3.4
33 Summary: Postgres integration with asyncio.
44 Home-page: https://aiopg.readthedocs.io
55 Author: Andrew Svetlov
128128 Changelog
129129 ---------
130130
131 1.3.4 (2022-06-30)
132 ^^^^^^^^^^^^^^^^^^
133
134
135 1.3.4b3 (2022-06-29)
136 ^^^^^^^^^^^^^^^^^^^^
137
138
139 1.3.4b2 (2022-06-29)
140 ^^^^^^^^^^^^^^^^^^^^
141
142
143 1.3.4b1 (2022-06-29)
144 ^^^^^^^^^^^^^^^^^^^^
145
146 * Fix compatibility with SA 1.4.38 `#891 <https://github.com/aio-libs/aiopg/pull/891>`_
147 * Add py.typed marker `#878 <https://github.com/aio-libs/aiopg/pull/878>`_
148
149
131150 1.3.3 (2021-11-01)
132151 ^^^^^^^^^^^^^^^^^^
133152
88 aiopg/connection.py
99 aiopg/log.py
1010 aiopg/pool.py
11 aiopg/py.typed
1112 aiopg/utils.py
1213 aiopg.egg-info/PKG-INFO
1314 aiopg.egg-info/SOURCES.txt