Skip to content

Commit 82d212b

Browse files
authored
Extract changelog to separate file (#306)
* docs: Extracted changelog into a separate file. Signed-off-by: Michael Seifert <[email protected]> * docs: Adjusted heading adornments in changelog to reflect its status as a standalone file. Signed-off-by: Michael Seifert <[email protected]> * build: Removed GitHub and git-related files from the source tarball. Signed-off-by: Michael Seifert <[email protected]>
1 parent 929608e commit 82d212b

File tree

3 files changed

+163
-163
lines changed

3 files changed

+163
-163
lines changed

CHANGELOG.rst

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

MANIFEST.in

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
include CHANGELOG.rst
2+
3+
recursive-exclude .github *
4+
exclude .gitignore
5+
exclude .pre-commit-config.yaml

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)