Skip to content

Commit 9747e9a

Browse files
committed
docs: Extracted changelog into a separate file.
Signed-off-by: Michael Seifert <[email protected]>
1 parent 929608e commit 9747e9a

File tree

3 files changed

+158
-163
lines changed

3 files changed

+158
-163
lines changed

CHANGELOG.rst

+157
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,157 @@
1+
Changelog
2+
---------
3+
4+
0.18.2 (22-03-03)
5+
~~~~~~~~~~~~~~~~~~~
6+
- Fix asyncio auto mode not marking static methods. `#295 <https://github.com/pytest-dev/pytest-asyncio/issues/295>`_
7+
- Fix a compatibility issue with Hypothesis 6.39.0. `#302 <https://github.com/pytest-dev/pytest-asyncio/issues/302>`_
8+
9+
0.18.1 (22-02-10)
10+
~~~~~~~~~~~~~~~~~~~
11+
- Fixes a regression that prevented async fixtures from working in synchronous tests. `#286 <https://github.com/pytest-dev/pytest-asyncio/issues/286>`_
12+
13+
0.18.0 (22-02-07)
14+
~~~~~~~~~~~~~~~~~~~
15+
16+
- Raise a warning if @pytest.mark.asyncio is applied to non-async function. `#275 <https://github.com/pytest-dev/pytest-asyncio/issues/275>`_
17+
- Support parametrized ``event_loop`` fixture. `#278 <https://github.com/pytest-dev/pytest-asyncio/issues/278>`_
18+
19+
0.17.2 (22-01-17)
20+
~~~~~~~~~~~~~~~~~~~
21+
22+
- Require ``typing-extensions`` on Python<3.8 only. `#269 <https://github.com/pytest-dev/pytest-asyncio/issues/269>`_
23+
- Fix a regression in tests collection introduced by 0.17.1, the plugin works fine with non-python tests again. `#267 <https://github.com/pytest-dev/pytest-asyncio/issues/267>`_
24+
25+
26+
0.17.1 (22-01-16)
27+
~~~~~~~~~~~~~~~~~~~
28+
- Fixes a bug that prevents async Hypothesis tests from working without explicit ``asyncio`` marker when ``--asyncio-mode=auto`` is set. `#258 <https://github.com/pytest-dev/pytest-asyncio/issues/258>`_
29+
- Fixed a bug that closes the default event loop if the loop doesn't exist `#257 <https://github.com/pytest-dev/pytest-asyncio/issues/257>`_
30+
- Added type annotations. `#198 <https://github.com/pytest-dev/pytest-asyncio/issues/198>`_
31+
- Show asyncio mode in pytest report headers. `#266 <https://github.com/pytest-dev/pytest-asyncio/issues/266>`_
32+
- Relax ``asyncio_mode`` type definition; it allows to support pytest 6.1+. `#262 <https://github.com/pytest-dev/pytest-asyncio/issues/262>`_
33+
34+
0.17.0 (22-01-13)
35+
~~~~~~~~~~~~~~~~~~~
36+
- `pytest-asyncio` no longer alters existing event loop policies. `#168 <https://github.com/pytest-dev/pytest-asyncio/issues/168>`_, `#188 <https://github.com/pytest-dev/pytest-asyncio/issues/168>`_
37+
- Drop support for Python 3.6
38+
- Fixed an issue when pytest-asyncio was used in combination with `flaky` or inherited asynchronous Hypothesis tests. `#178 <https://github.com/pytest-dev/pytest-asyncio/issues/178>`_ `#231 <https://github.com/pytest-dev/pytest-asyncio/issues/231>`_
39+
- Added `flaky <https://pypi.org/project/flaky/>`_ to test dependencies
40+
- Added ``unused_udp_port`` and ``unused_udp_port_factory`` fixtures (similar to ``unused_tcp_port`` and ``unused_tcp_port_factory`` counterparts. `#99 <https://github.com/pytest-dev/pytest-asyncio/issues/99>`_
41+
- Added the plugin modes: *strict*, *auto*, and *legacy*. See `documentation <https://github.com/pytest-dev/pytest-asyncio#modes>`_ for details. `#125 <https://github.com/pytest-dev/pytest-asyncio/issues/125>`_
42+
- Correctly process ``KeyboardInterrupt`` during async fixture setup phase `#219 <https://github.com/pytest-dev/pytest-asyncio/issues/219>`_
43+
44+
0.16.0 (2021-10-16)
45+
~~~~~~~~~~~~~~~~~~~
46+
- Add support for Python 3.10
47+
48+
0.15.1 (2021-04-22)
49+
~~~~~~~~~~~~~~~~~~~
50+
- Hotfix for errors while closing event loops while replacing them.
51+
`#209 <https://github.com/pytest-dev/pytest-asyncio/issues/209>`_
52+
`#210 <https://github.com/pytest-dev/pytest-asyncio/issues/210>`_
53+
54+
0.15.0 (2021-04-19)
55+
~~~~~~~~~~~~~~~~~~~
56+
- Add support for Python 3.9
57+
- Abandon support for Python 3.5. If you still require support for Python 3.5, please use pytest-asyncio v0.14 or earlier.
58+
- Set ``unused_tcp_port_factory`` fixture scope to 'session'.
59+
`#163 <https://github.com/pytest-dev/pytest-asyncio/pull/163>`_
60+
- Properly close event loops when replacing them.
61+
`#208 <https://github.com/pytest-dev/pytest-asyncio/issues/208>`_
62+
63+
0.14.0 (2020-06-24)
64+
~~~~~~~~~~~~~~~~~~~
65+
- Fix `#162 <https://github.com/pytest-dev/pytest-asyncio/issues/162>`_, and ``event_loop`` fixture behavior now is coherent on all scopes.
66+
`#164 <https://github.com/pytest-dev/pytest-asyncio/pull/164>`_
67+
68+
0.12.0 (2020-05-04)
69+
~~~~~~~~~~~~~~~~~~~
70+
- Run the event loop fixture as soon as possible. This helps with fixtures that have an implicit dependency on the event loop.
71+
`#156 <https://github.com/pytest-dev/pytest-asyncio/pull/156>`_
72+
73+
0.11.0 (2020-04-20)
74+
~~~~~~~~~~~~~~~~~~~
75+
- Test on 3.8, drop 3.3 and 3.4. Stick to 0.10 for these versions.
76+
`#152 <https://github.com/pytest-dev/pytest-asyncio/pull/152>`_
77+
- Use the new Pytest 5.4.0 Function API. We therefore depend on pytest >= 5.4.0.
78+
`#142 <https://github.com/pytest-dev/pytest-asyncio/pull/142>`_
79+
- Better ``pytest.skip`` support.
80+
`#126 <https://github.com/pytest-dev/pytest-asyncio/pull/126>`_
81+
82+
0.10.0 (2019-01-08)
83+
~~~~~~~~~~~~~~~~~~~~
84+
- ``pytest-asyncio`` integrates with `Hypothesis <https://hypothesis.readthedocs.io>`_
85+
to support ``@given`` on async test functions using ``asyncio``.
86+
`#102 <https://github.com/pytest-dev/pytest-asyncio/pull/102>`_
87+
- Pytest 4.1 support.
88+
`#105 <https://github.com/pytest-dev/pytest-asyncio/pull/105>`_
89+
90+
0.9.0 (2018-07-28)
91+
~~~~~~~~~~~~~~~~~~
92+
- Python 3.7 support.
93+
- Remove ``event_loop_process_pool`` fixture and
94+
``pytest.mark.asyncio_process_pool`` marker (see
95+
https://bugs.python.org/issue34075 for deprecation and removal details)
96+
97+
0.8.0 (2017-09-23)
98+
~~~~~~~~~~~~~~~~~~
99+
- Improve integration with other packages (like aiohttp) with more careful event loop handling.
100+
`#64 <https://github.com/pytest-dev/pytest-asyncio/pull/64>`_
101+
102+
0.7.0 (2017-09-08)
103+
~~~~~~~~~~~~~~~~~~
104+
- Python versions pre-3.6 can use the async_generator library for async fixtures.
105+
`#62 <https://github.com/pytest-dev/pytest-asyncio/pull/62>`
106+
107+
0.6.0 (2017-05-28)
108+
~~~~~~~~~~~~~~~~~~
109+
- Support for Python versions pre-3.5 has been dropped.
110+
- ``pytestmark`` now works on both module and class level.
111+
- The ``forbid_global_loop`` parameter has been removed.
112+
- Support for async and async gen fixtures has been added.
113+
`#45 <https://github.com/pytest-dev/pytest-asyncio/pull/45>`_
114+
- The deprecation warning regarding ``asyncio.async()`` has been fixed.
115+
`#51 <https://github.com/pytest-dev/pytest-asyncio/pull/51>`_
116+
117+
0.5.0 (2016-09-07)
118+
~~~~~~~~~~~~~~~~~~
119+
- Introduced a changelog.
120+
`#31 <https://github.com/pytest-dev/pytest-asyncio/issues/31>`_
121+
- The ``event_loop`` fixture is again responsible for closing itself.
122+
This makes the fixture slightly harder to correctly override, but enables
123+
other fixtures to depend on it correctly.
124+
`#30 <https://github.com/pytest-dev/pytest-asyncio/issues/30>`_
125+
- Deal with the event loop policy by wrapping a special pytest hook,
126+
``pytest_fixture_setup``. This allows setting the policy before fixtures
127+
dependent on the ``event_loop`` fixture run, thus allowing them to take
128+
advantage of the ``forbid_global_loop`` parameter. As a consequence of this,
129+
we now depend on pytest 3.0.
130+
`#29 <https://github.com/pytest-dev/pytest-asyncio/issues/29>`_
131+
132+
0.4.1 (2016-06-01)
133+
~~~~~~~~~~~~~~~~~~
134+
- Fix a bug preventing the propagation of exceptions from the plugin.
135+
`#25 <https://github.com/pytest-dev/pytest-asyncio/issues/25>`_
136+
137+
0.4.0 (2016-05-30)
138+
~~~~~~~~~~~~~~~~~~
139+
- Make ``event_loop`` fixtures simpler to override by closing them in the
140+
plugin, instead of directly in the fixture.
141+
`#21 <https://github.com/pytest-dev/pytest-asyncio/pull/21>`_
142+
- Introduce the ``forbid_global_loop`` parameter.
143+
`#21 <https://github.com/pytest-dev/pytest-asyncio/pull/21>`_
144+
145+
0.3.0 (2015-12-19)
146+
~~~~~~~~~~~~~~~~~~
147+
- Support for Python 3.5 ``async``/``await`` syntax.
148+
`#17 <https://github.com/pytest-dev/pytest-asyncio/pull/17>`_
149+
150+
0.2.0 (2015-08-01)
151+
~~~~~~~~~~~~~~~~~~
152+
- ``unused_tcp_port_factory`` fixture.
153+
`#10 <https://github.com/pytest-dev/pytest-asyncio/issues/10>`_
154+
155+
0.1.1 (2015-04-23)
156+
~~~~~~~~~~~~~~~~~~
157+
Initial release.

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include CHANGELOG.rst

README.rst

-163
Original file line numberDiff line numberDiff line change
@@ -254,169 +254,6 @@ Test classes subclassing the standard `unittest <https://docs.python.org/3/libra
254254
are recommended to use `unitest.IsolatedAsyncioTestCase <https://docs.python.org/3/library/unittest.html#unittest.IsolatedAsyncioTestCase>`__
255255
or an async framework such as `asynctest <https://asynctest.readthedocs.io/en/latest>`__.
256256

257-
Changelog
258-
---------
259-
260-
0.18.2 (22-03-03)
261-
~~~~~~~~~~~~~~~~~~~
262-
- Fix asyncio auto mode not marking static methods. `#295 <https://github.com/pytest-dev/pytest-asyncio/issues/295>`_
263-
- Fix a compatibility issue with Hypothesis 6.39.0. `#302 <https://github.com/pytest-dev/pytest-asyncio/issues/302>`_
264-
265-
266-
0.18.1 (22-02-10)
267-
~~~~~~~~~~~~~~~~~~~
268-
- Fixes a regression that prevented async fixtures from working in synchronous tests. `#286 <https://github.com/pytest-dev/pytest-asyncio/issues/286>`_
269-
270-
0.18.0 (22-02-07)
271-
~~~~~~~~~~~~~~~~~~~
272-
273-
- Raise a warning if @pytest.mark.asyncio is applied to non-async function. `#275 <https://github.com/pytest-dev/pytest-asyncio/issues/275>`_
274-
- Support parametrized ``event_loop`` fixture. `#278 <https://github.com/pytest-dev/pytest-asyncio/issues/278>`_
275-
276-
0.17.2 (22-01-17)
277-
~~~~~~~~~~~~~~~~~~~
278-
279-
- Require ``typing-extensions`` on Python<3.8 only. `#269 <https://github.com/pytest-dev/pytest-asyncio/issues/269>`_
280-
- Fix a regression in tests collection introduced by 0.17.1, the plugin works fine with non-python tests again. `#267 <https://github.com/pytest-dev/pytest-asyncio/issues/267>`_
281-
282-
283-
0.17.1 (22-01-16)
284-
~~~~~~~~~~~~~~~~~~~
285-
- Fixes a bug that prevents async Hypothesis tests from working without explicit ``asyncio`` marker when ``--asyncio-mode=auto`` is set. `#258 <https://github.com/pytest-dev/pytest-asyncio/issues/258>`_
286-
- Fixed a bug that closes the default event loop if the loop doesn't exist `#257 <https://github.com/pytest-dev/pytest-asyncio/issues/257>`_
287-
- Added type annotations. `#198 <https://github.com/pytest-dev/pytest-asyncio/issues/198>`_
288-
- Show asyncio mode in pytest report headers. `#266 <https://github.com/pytest-dev/pytest-asyncio/issues/266>`_
289-
- Relax ``asyncio_mode`` type definition; it allows to support pytest 6.1+. `#262 <https://github.com/pytest-dev/pytest-asyncio/issues/262>`_
290-
291-
0.17.0 (22-01-13)
292-
~~~~~~~~~~~~~~~~~~~
293-
- `pytest-asyncio` no longer alters existing event loop policies. `#168 <https://github.com/pytest-dev/pytest-asyncio/issues/168>`_, `#188 <https://github.com/pytest-dev/pytest-asyncio/issues/168>`_
294-
- Drop support for Python 3.6
295-
- Fixed an issue when pytest-asyncio was used in combination with `flaky` or inherited asynchronous Hypothesis tests. `#178 <https://github.com/pytest-dev/pytest-asyncio/issues/178>`_ `#231 <https://github.com/pytest-dev/pytest-asyncio/issues/231>`_
296-
- Added `flaky <https://pypi.org/project/flaky/>`_ to test dependencies
297-
- Added ``unused_udp_port`` and ``unused_udp_port_factory`` fixtures (similar to ``unused_tcp_port`` and ``unused_tcp_port_factory`` counterparts. `#99 <https://github.com/pytest-dev/pytest-asyncio/issues/99>`_
298-
- Added the plugin modes: *strict*, *auto*, and *legacy*. See `documentation <https://github.com/pytest-dev/pytest-asyncio#modes>`_ for details. `#125 <https://github.com/pytest-dev/pytest-asyncio/issues/125>`_
299-
- Correctly process ``KeyboardInterrupt`` during async fixture setup phase `#219 <https://github.com/pytest-dev/pytest-asyncio/issues/219>`_
300-
301-
0.16.0 (2021-10-16)
302-
~~~~~~~~~~~~~~~~~~~
303-
- Add support for Python 3.10
304-
305-
0.15.1 (2021-04-22)
306-
~~~~~~~~~~~~~~~~~~~
307-
- Hotfix for errors while closing event loops while replacing them.
308-
`#209 <https://github.com/pytest-dev/pytest-asyncio/issues/209>`_
309-
`#210 <https://github.com/pytest-dev/pytest-asyncio/issues/210>`_
310-
311-
0.15.0 (2021-04-19)
312-
~~~~~~~~~~~~~~~~~~~
313-
- Add support for Python 3.9
314-
- Abandon support for Python 3.5. If you still require support for Python 3.5, please use pytest-asyncio v0.14 or earlier.
315-
- Set ``unused_tcp_port_factory`` fixture scope to 'session'.
316-
`#163 <https://github.com/pytest-dev/pytest-asyncio/pull/163>`_
317-
- Properly close event loops when replacing them.
318-
`#208 <https://github.com/pytest-dev/pytest-asyncio/issues/208>`_
319-
320-
0.14.0 (2020-06-24)
321-
~~~~~~~~~~~~~~~~~~~
322-
- Fix `#162 <https://github.com/pytest-dev/pytest-asyncio/issues/162>`_, and ``event_loop`` fixture behavior now is coherent on all scopes.
323-
`#164 <https://github.com/pytest-dev/pytest-asyncio/pull/164>`_
324-
325-
0.12.0 (2020-05-04)
326-
~~~~~~~~~~~~~~~~~~~
327-
- Run the event loop fixture as soon as possible. This helps with fixtures that have an implicit dependency on the event loop.
328-
`#156 <https://github.com/pytest-dev/pytest-asyncio/pull/156>`_
329-
330-
0.11.0 (2020-04-20)
331-
~~~~~~~~~~~~~~~~~~~
332-
- Test on 3.8, drop 3.3 and 3.4. Stick to 0.10 for these versions.
333-
`#152 <https://github.com/pytest-dev/pytest-asyncio/pull/152>`_
334-
- Use the new Pytest 5.4.0 Function API. We therefore depend on pytest >= 5.4.0.
335-
`#142 <https://github.com/pytest-dev/pytest-asyncio/pull/142>`_
336-
- Better ``pytest.skip`` support.
337-
`#126 <https://github.com/pytest-dev/pytest-asyncio/pull/126>`_
338-
339-
0.10.0 (2019-01-08)
340-
~~~~~~~~~~~~~~~~~~~~
341-
- ``pytest-asyncio`` integrates with `Hypothesis <https://hypothesis.readthedocs.io>`_
342-
to support ``@given`` on async test functions using ``asyncio``.
343-
`#102 <https://github.com/pytest-dev/pytest-asyncio/pull/102>`_
344-
- Pytest 4.1 support.
345-
`#105 <https://github.com/pytest-dev/pytest-asyncio/pull/105>`_
346-
347-
0.9.0 (2018-07-28)
348-
~~~~~~~~~~~~~~~~~~
349-
- Python 3.7 support.
350-
- Remove ``event_loop_process_pool`` fixture and
351-
``pytest.mark.asyncio_process_pool`` marker (see
352-
https://bugs.python.org/issue34075 for deprecation and removal details)
353-
354-
0.8.0 (2017-09-23)
355-
~~~~~~~~~~~~~~~~~~
356-
- Improve integration with other packages (like aiohttp) with more careful event loop handling.
357-
`#64 <https://github.com/pytest-dev/pytest-asyncio/pull/64>`_
358-
359-
0.7.0 (2017-09-08)
360-
~~~~~~~~~~~~~~~~~~
361-
- Python versions pre-3.6 can use the async_generator library for async fixtures.
362-
`#62 <https://github.com/pytest-dev/pytest-asyncio/pull/62>`
363-
364-
365-
0.6.0 (2017-05-28)
366-
~~~~~~~~~~~~~~~~~~
367-
- Support for Python versions pre-3.5 has been dropped.
368-
- ``pytestmark`` now works on both module and class level.
369-
- The ``forbid_global_loop`` parameter has been removed.
370-
- Support for async and async gen fixtures has been added.
371-
`#45 <https://github.com/pytest-dev/pytest-asyncio/pull/45>`_
372-
- The deprecation warning regarding ``asyncio.async()`` has been fixed.
373-
`#51 <https://github.com/pytest-dev/pytest-asyncio/pull/51>`_
374-
375-
0.5.0 (2016-09-07)
376-
~~~~~~~~~~~~~~~~~~
377-
- Introduced a changelog.
378-
`#31 <https://github.com/pytest-dev/pytest-asyncio/issues/31>`_
379-
- The ``event_loop`` fixture is again responsible for closing itself.
380-
This makes the fixture slightly harder to correctly override, but enables
381-
other fixtures to depend on it correctly.
382-
`#30 <https://github.com/pytest-dev/pytest-asyncio/issues/30>`_
383-
- Deal with the event loop policy by wrapping a special pytest hook,
384-
``pytest_fixture_setup``. This allows setting the policy before fixtures
385-
dependent on the ``event_loop`` fixture run, thus allowing them to take
386-
advantage of the ``forbid_global_loop`` parameter. As a consequence of this,
387-
we now depend on pytest 3.0.
388-
`#29 <https://github.com/pytest-dev/pytest-asyncio/issues/29>`_
389-
390-
391-
0.4.1 (2016-06-01)
392-
~~~~~~~~~~~~~~~~~~
393-
- Fix a bug preventing the propagation of exceptions from the plugin.
394-
`#25 <https://github.com/pytest-dev/pytest-asyncio/issues/25>`_
395-
396-
0.4.0 (2016-05-30)
397-
~~~~~~~~~~~~~~~~~~
398-
- Make ``event_loop`` fixtures simpler to override by closing them in the
399-
plugin, instead of directly in the fixture.
400-
`#21 <https://github.com/pytest-dev/pytest-asyncio/pull/21>`_
401-
- Introduce the ``forbid_global_loop`` parameter.
402-
`#21 <https://github.com/pytest-dev/pytest-asyncio/pull/21>`_
403-
404-
0.3.0 (2015-12-19)
405-
~~~~~~~~~~~~~~~~~~
406-
- Support for Python 3.5 ``async``/``await`` syntax.
407-
`#17 <https://github.com/pytest-dev/pytest-asyncio/pull/17>`_
408-
409-
0.2.0 (2015-08-01)
410-
~~~~~~~~~~~~~~~~~~
411-
- ``unused_tcp_port_factory`` fixture.
412-
`#10 <https://github.com/pytest-dev/pytest-asyncio/issues/10>`_
413-
414-
415-
0.1.1 (2015-04-23)
416-
~~~~~~~~~~~~~~~~~~
417-
Initial release.
418-
419-
420257
Contributing
421258
------------
422259
Contributions are very welcome. Tests can be run with ``tox``, please ensure

0 commit comments

Comments
 (0)