-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement future changelog previews in the docs (#6055)
* Implement future changelog previews in the docs * Self-install on RTD * Fix spelling mistakes in the check notes
- Loading branch information
Showing
19 changed files
with
78 additions
and
27 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 @@ | ||
Clarified WebSocketResponse closure in quickstart example. | ||
Clarified ``WebSocketResponse`` closure in the quick start example. |
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,4 +1,4 @@ | ||
Disable implicit switch-back to pure python mode. The build fails loudly if aiohttp | ||
cannot be compiled with C Accellerators. Use AIOHTTP_NO_EXTENSIONS=1 to explicitly | ||
Disabled implicit switch-back to pure python mode. The build fails loudly if aiohttp | ||
cannot be compiled with C Accelerators. Use `AIOHTTP_NO_EXTENSIONS=1` to explicitly | ||
disable C Extensions complication and switch to Pure-Python mode. Note that Pure-Python | ||
mode is significantly slower than compiled one. |
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 +1 @@ | ||
Add set_cookie and del_cookie methods to HTTPException | ||
Added ``set_cookie`` and ``del_cookie`` methods to ``HTTPException`` |
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 @@ | ||
Delete older code in example (examples/web_classview.py) | ||
Delete older code in example (:file:`examples/web_classview.py`) |
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 @@ | ||
Fixed the support of route handlers wrapped by functools.partial() | ||
Fixed the support of route handlers wrapped by :py:func:`functools.partial` |
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 @@ | ||
Fix typo in client_quickstart docs. | ||
Fixed a typo in the ``client_quickstart`` doc. |
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 @@ | ||
Started keeping the ``Authorization`` header during http->https redirects when the host remains the same. | ||
Started keeping the ``Authorization`` header during HTTP -> HTTPS redirects when the host remains the same. |
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