2024-01-18 11:35:04 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-uvicorn: updated to 0.26.0
0.26.0
Update --root-path to include the root path prefix in the full ASGI path as per \
the ASGI spec
Use __future__.annotations on some internal modules
|
2024-01-10 11:33:07 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-uvicorn: updated to 0.25.0
0.25.0 - 2023-12-17
Added
Support the WebSocket Denial Response ASGI extension
Fixed
Allow explicit hidden file paths on --reload-include
Properly annotate uvicorn.run()
0.24.0.post1 - 2023-11-06
Fixed
Revert mkdocs-material from 9.1.21 to 9.2.6
0.24.0 - 2023-11-04
Added
Support Python 3.12
Allow setting app via environment variable UVICORN_APP
0.23.2 - 2023-07-31
Fixed
Maintain the same behavior of websockets from 10.4 on 11.0
0.23.1 - 2023-07-18
Fixed
Add typing_extensions for Python 3.10 and lower
0.23.0 - 2023-07-10
Added
Add --ws-max-queue parameter WebSockets
Removed
Drop support for Python 3.7
Remove asgiref as typing dependency
Fixed
Set scope["scheme"] to ws or wss instead of http or https on \
ProxyHeadersMiddleware for WebSockets
Changed
Raise ImportError on circular import
Use logger.getEffectiveLevel() instead of logger.level to check if log level is TRACE
0.22.0 - 2023-04-28
Added
Add --timeout-graceful-shutdown parameter
Handle SIGBREAK on Windows
Fixed
Shutdown event is now being triggered on Windows when using hot reload
--reload-delay is effectively used on the watchfiles reloader
0.21.1 - 2023-03-16
Fixed
Reset lifespan state on each request
0.21.0 - 2023-03-09
Added
Introduce lifespan state
Allow headers to be sent as iterables on H11 implementation
Improve discoverability when --port=0 is used
Changed
Avoid importing h11 and pyyaml when not needed to improve import time
Replace current native WSGIMiddleware implementation by a2wsgi
Change default --app-dir from "." (dot) to "" (empty string)
Fixed
Send code 1012 on shutdown for WebSockets
Use surrogateescape to encode headers on websockets implementation
Fix warning message on reload failure
0.20.0 - 2022-11-20
Added
Check if handshake is completed before sending frame on wsproto shutdown
Add default headers to WebSockets implementations
Warn user when reload and workers flag are used together
Fixed
Use correct WebSocket error codes on close
Send disconnect event on connection lost for wsproto
Add SIGQUIT handler to UvicornWorker
Fix crash on exist with "--uds" if socket doesn't exist
Annotate CONFIG_KWARGS in UvicornWorker class
Removed
Remove conditional on RemoteProtocolError.event_hint on wsproto
Remove unused handle_no_connect on wsproto implementation
|
2023-10-28 21:57:26 by Thomas Klausner | Files touched by this commit (516) | |
Log message:
python/wheel.mk: simplify a lot, and switch to 'installer' for installation
This follows the recommended bootstrap method (flit_core, build, installer).
However, installer installs different files than pip, so update PLISTs
for all packages using wheel.mk and bump their PKGREVISIONs.
|
2023-06-06 14:42:56 by Taylor R Campbell | Files touched by this commit (1319) |
Log message:
Mass-change BUILD_DEPENDS to TOOL_DEPENDS outside mk/.
Almost all uses, if not all of them, are wrong, according to the
semantics of BUILD_DEPENDS (packages built for target available for
use _by_ tools at build-time) and TOOL_DEPEPNDS (packages built for
host available for use _as_ tools at build-time).
No change to BUILD_DEPENDS as used correctly inside buildlink3.
As proposed on tech-pkg:
https://mail-index.netbsd.org/tech-pkg/2023/06/03/msg027632.html
|
2023-03-29 11:34:15 by Thomas Klausner | Files touched by this commit (96) |
Log message:
*: use PYTHON_VERSION instead of _PYTHON_VERSION
|
2022-09-08 17:23:24 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-uvicorn: updated to 0.18.3
0.18.3
Fixed
Remove cyclic references on HTTP implementations.
Changed
reload_delay default changed from None to 0.25 on uvicorn.run() and Config. None \
is not an acceptable value anymore.
|
2022-07-29 11:07:09 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-uvicorn: updated to 0.18.2
0.18.2 - 2022-06-27
Fixed
Add default log_config on uvicorn.run()
Revert logging file name modification
0.18.1 - 2022-06-23
Fixed
Use DEFAULT_MAX_INCOMPLETE_EVENT_SIZE as default to \
h11_max_incomplete_event_size on the CLI
0.18.0 - 2022-06-23
Added
The reload flag prioritizes watchfiles instead of the deprecated watchgod
Annotate uvicorn.run() function
Allow configuring max_incomplete_event_size for h11 implementation
Removed
Remove asgiref dependency
Fixed
Turn raw_path into bytes on both websockets implementations
Revert log exception traceback in case of invalid HTTP request
Set asyncio.WindowsSelectorEventLoopPolicy() when using multiple workers to \
avoid "WinError 87"
|
2022-03-12 09:36:40 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-uvicorn: updated to 0.17.6
0.17.6 - 2022-03-11
Change httptools range to >=0.4.0
|
2022-02-16 14:11:48 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-uvicorn: updated to 0.17.5
0.17.5
Fixed
Fix case where url is fragmented in httptools protocol
Fix WSGI middleware not to explode quadratically in the case of a larger body
Changed
Send HTTP 400 response for invalid request
|
2022-02-05 13:11:10 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-uvicorn: updated to 0.17.4
0.17.4
Fixed
Replace create_server by create_unix_server
0.17.3
Fixed
Drop wsproto version checking.
0.17.2
Fixed
Revert 1332. While trying to solve the memory leak, it introduced an issue
Revert stream interface changes. This was introduced on 0.14.0, and caused an issue
Fix wsproto version check expression
|