-
Notifications
You must be signed in to change notification settings - Fork 42
/
CHANGES.txt
67 lines (49 loc) · 2.43 KB
/
CHANGES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
.. towncrier release notes start
1.1.2 (2023-12-07)
==================
* Improved reliability of reloads by delaying multiple reloads until the browser has
reconnected, and increasing the period of time to gather filesystem changes.
1.1.1 (2023-11-19)
==================
* Use ``aiohttp.web.AppKey`` to avoid warnings on aiohttp 3.9.
1.1 (2023-06-30)
================
* Display a list of available files in the static handler when serving a 404 error.
* Add ``no-cache`` headers to disable browser caching (can be disabled with ``--browser-cache``).
* Improved reliability of live reload by waiting up to 15 seconds (previously 2) for the app to restart and allowing the browser to reconnect when multiple files change quickly.
* Fixed unclean shutdowns on Windows by introducing a shutdown by endpoint method (Windows doesn't work with the default signals method).
* Changed to run with ``asyncio.Runner`` on Python 3.11+ (apparently fixing an issue with reloads on Windows).
* Rewrote the package name dynamically to match the app's name (e.g. used in aiohttp-admin as a default admin title).
* Migrated from ``watchdog`` dependency to the newer ``watchfiles``.
1.0.post0 (2021-12-31)
======================
* Fix missing JS files in release process
1.0 (2021-12-31)
================
* Add support for passing arguments to the application, like ``adev runserver [adev-args] project -- [project-args]``
* Remove ``start`` command (take a look at create-aio-app for an alternative).
* Remove debugtoolbar integration (it must be installed manually now).
* Fix an error when reloading a file not in the static path.
* Fix app cleanup not running is some situations.
* Fix static URLs in subapps.
* Fix support for aiohttp 3.8+.
0.13.1 (2019-06-19)
===================
* re-enable support for alternative loops, #238
0.13.0 (2019-05-21)
===================
* greatly simplify the ``start`` command, #233
* disable coloured output on windows, #234
* fix ``adev serve ...``, #235
0.12.0 (2019-02-20)
===================
* fix tests for python 3.7, #218
* fix tests for aiohttp >= 3.5, #223
* rebuild logging with coloured tracebacks and request & response details, #221
0.11.0 (2018-12-07)
===================
* use ``--root`` as base directory for watching if it's set, #209
* add ``MutableValue`` to avoid aiohttp warnings, #215
* improved logging including request time, #217
* remove ``aiohttp_debugtoolbar`` as a requirement, improve CI, #216
* uprev dependencies