2021-03-01 10:00:09 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-daphne: updated to 3.0.1
3.0.1 (2020-11-12)
* Fixed a bug where ``asyncio.CancelledError`` was not correctly handled on
Python 3.8+, resulting in incorrect protocol application cleanup.
3.0.0 (2020-10-28)
* Updates internals to use ASGI v3 throughout. ``asgiref.compatibility`` is
used for older applications.
* Consequently, the `--asgi-protocol` command-line option is removed.
* HTTP request bodies are now read, and passed to the application, in chunks.
* Added support for Python 3.9.
* Dropped support for Python 3.5.
|
2020-04-16 09:42:30 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-daphne: updated to 2.5.0
2.5.0:
* Fixes compatability for twisted when running Python 3.8+ on Windows, by
setting ``asyncio.WindowsSelectorEventLoopPolicy`` as the event loop policy
in this case.
* The internal ``daphne.testing.TestApplication`` now requires an addition
``lock`` argument to ``__init__()``. This is expected to be an instance of
``multiprocessing.Lock``.
|
2020-02-01 21:39:42 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-daphne: updated to 2.4.1
2.4.1:
* Avoids Twisted using the default event loop, for compatibility with Django
3.0's ``async_unsafe()`` decorator in threaded contexts, such as using the
auto-reloader.
|
2019-11-26 20:13:01 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-daphne: updated to 2.4.0
2.4.0:
* Adds CI testing against and support for Python 3.8.
* Adds support for ``raw_path`` in ASGI scope.
* Ensures an error response is sent to the client if the application sends
malformed headers.
* Resolves an asyncio + multiprocessing problem when testing that would cause
the test suite to fail/hang on macOS.
* Requires installing Twisted's TLS extras, via ``install_requires``.
* Adds missing LICENSE to distribution.
|
2019-05-06 12:24:25 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-daphne: updated to 2.3.0
2.3.0:
* Added support for ASGI v3.
|
2019-04-26 15:14:25 by Maya Rashish | Files touched by this commit (473) |
Log message:
Omit mentions of python 34 and 35, after those were removed.
- Includes some whitespace changes, to be handled in a separate commit.
|
2019-02-13 16:55:41 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-daphne: updated to 2.2.5
2.2.5:
* WebSocket handshakes are now affected by the websocket connect timeout, so
you can limit them from the command line.
* Server name can now be set using --server-name
|
2018-12-16 19:22:59 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-daphne: updated to 2.2.4
2.2.4:
* No longer listens on port 8000 when a file descriptor is provided with --fixed
* Fixed a memory leak with WebSockets
|
2018-11-28 15:35:30 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-daphne: updated to 2.2.3
2.2.3:
* Enforce that response headers are only bytestrings, rather than allowing
unicode strings and coercing them into bytes.
* New command-line options to set proxy header names: --proxy-headers-host and
--proxy-headers-port.
|
2018-08-19 12:53:11 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-daphne: updated to 2.2.2
2.2.2:
* X-Forwarded-Proto support is now present and enabled if you turn on the
--proxy-headers flag
* ASGI applications are no longer instantiated in a thread (the ASGI spec
was finalised to say all constructors must be non-blocking on the main thread)
2.2.1:
* Python 3.7 compatability is flagged and ensured by using Twisted 18.7 and
above as a dependency.
* The send() awaitable in applications no longer blocks if the connection is
closed.
* Fixed a race condition where applications would be cleaned up before they
had even started.
|