forked from aio-libs/aiohttp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[PR aio-libs#6055/079e9c5a backport][3.8] Implement future changelog …
…previews in the docs (aio-libs#6055) (aio-libs#6057)
- Loading branch information
Showing
12 changed files
with
69 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,21 @@ | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html | ||
# for details | ||
|
||
--- | ||
version: 2 | ||
|
||
submodules: | ||
include: all # [] | ||
exclude: [] | ||
recursive: true | ||
|
||
build: | ||
image: latest | ||
python: | ||
version: 3.6 | ||
pip_install: false | ||
version: 3.8 | ||
install: | ||
- method: pip | ||
path: . | ||
- requirements: requirements/doc.txt | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Implemented readuntil in StreamResponse | ||
Implemented ``readuntil`` in ``StreamResponse`` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
AioHTTPTestCase is more async friendly now. | ||
``AioHTTPTestCase`` is more async friendly now. | ||
|
||
For people who use unittest and are used to use unittest.TestCase | ||
it will be easier to write new test cases like the sync version of the TestCase class, | ||
For people who use unittest and are used to use :py:exc:`~unittest.TestCase` | ||
it will be easier to write new test cases like the sync version of the :py:exc:`~unittest.TestCase` class, | ||
without using the decorator `@unittest_run_loop`, just `async def test_*`. | ||
The only difference is that for the people using python3.7 and below a new dependency is needed, it is `asynctestcase`. | ||
The only difference is that for the people using python3.7 and below a new dependency is needed, it is ``asynctestcase``. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Refactor OpenAPI/Swagger aiohttp addons, added aio-openapi | ||
Refactored OpenAPI/Swagger aiohttp addons, added ``aio-openapi`` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
remove deprecated loop argument for asnycio.sleep/gather calls | ||
Removed the deprecated ``loop`` argument from the ``asyncio.sleep``/``gather`` calls |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,17 @@ | ||
.. _aiohttp_changes: | ||
|
||
========= | ||
Changelog | ||
========= | ||
|
||
To be included in v\ |release| (if present) | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
.. towncrier-draft-entries:: |release| [UNRELEASED DRAFT] | ||
|
||
Released versions | ||
^^^^^^^^^^^^^^^^^ | ||
|
||
.. include:: ../CHANGES.rst | ||
|
||
.. include:: ../HISTORY.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters