2022-08-05 12:31:22 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Fri Aug 5 09:51:32 UTC 2022 - Dominique Leuenberger <dimstar@opensuse.org>
|
|
|
|
|
|
|
|
- Fix URL to 1537.patch: add ".patch" to the gh Pr to reference the
|
|
|
|
raw patch, not the gh webui.
|
|
|
|
|
2022-07-20 10:11:36 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Jul 19 20:59:25 UTC 2022 - Ben Greiner <code@bnavigator.de>
|
|
|
|
|
|
|
|
- Disable testing with watchfiles
|
|
|
|
* We don't want it in Ring1-MinimalX
|
|
|
|
|
2022-07-19 09:33:14 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Mon Jul 18 20:17:15 UTC 2022 - Ben Greiner <code@bnavigator.de>
|
|
|
|
|
|
|
|
- Update to version 0.18.2
|
|
|
|
* Add default `log_config` on `uvicorn.run()` (#1541)
|
|
|
|
* Revert `logging` file name modification (#1543)
|
|
|
|
- Release 0.18.1
|
|
|
|
* Use `DEFAULT_MAX_INCOMPLETE_EVENT_SIZE` as default to
|
|
|
|
`h11_max_incomplete_event_size` on the CLI (#1534)
|
|
|
|
- Release 0.18.0
|
|
|
|
* The `reload` flag prioritizes `watchfiles` instead of the
|
|
|
|
deprecated `watchgod` (#1437)
|
|
|
|
* Annotate `uvicorn.run()` function (#1423)
|
|
|
|
* Allow configuring `max_incomplete_event_size` for `h11`
|
|
|
|
implementation (#1514)
|
|
|
|
* Remove `asgiref` dependency (#1532)
|
|
|
|
* Turn `raw_path` into bytes on both websockets implementations
|
|
|
|
(#1487)
|
|
|
|
* Revert log exception traceback in case of invalid HTTP request
|
|
|
|
(#1518)
|
|
|
|
* Set `asyncio.WindowsSelectorEventLoopPolicy()` when using
|
|
|
|
multiple workers to avoid "WinError 87" (#1454)
|
|
|
|
- Release 0.17.5
|
|
|
|
* Fix case where url is fragmented in httptools protocol (#1263)
|
|
|
|
2/16/22
|
|
|
|
* Fix WSGI middleware not to explode quadratically in the case of
|
|
|
|
a larger body (#1329)
|
|
|
|
* Send HTTP 400 response for invalid request (#1352)
|
|
|
|
- Release 0.17.4
|
|
|
|
* Replace `create_server` by `create_unix_server` (#1362)
|
|
|
|
- Release 0.17.3
|
|
|
|
* Drop wsproto version checking. (#1359)
|
|
|
|
- Release 0.17.2
|
|
|
|
* Revert #1332. While trying to solve the memory leak, it
|
|
|
|
introduced an issue (#1345) when the server receives big chunks
|
|
|
|
of data using the `httptools` implementation. (#1354)
|
|
|
|
* Revert stream interface changes. This was introduced on 0.14.0,
|
|
|
|
and caused an issue (#1226), which caused a memory leak when
|
|
|
|
sending TCP pings. (#1355)
|
|
|
|
* Fix wsproto version check expression (#1342)
|
|
|
|
- Release 0.17.1
|
|
|
|
* Move all data handling logic to protocol and ensure connection
|
|
|
|
is closed. (#1332)
|
|
|
|
* Change `spec_version` field from "2.1" to "2.3", as Uvicorn is
|
|
|
|
compliant with that version of the ASGI specifications. (#1337)
|
|
|
|
- Add uvicorn-pr1537-no-watchgod-tests.patch gh#encode/uvicorn#1537
|
|
|
|
|
2022-02-01 05:38:46 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Feb 1 05:38:09 UTC 2022 - Steve Kowalik <steven.kowalik@suse.com>
|
|
|
|
|
|
|
|
- Add missing Requires on python-asgiref.
|
|
|
|
|
2022-01-24 13:29:59 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Mon Jan 24 09:51:06 UTC 2022 - kkaempf@suse.com
|
|
|
|
|
|
|
|
- Update to version 0.17.0:
|
|
|
|
* Release 0.17.0 (#1322)
|
|
|
|
* Fix reload process behavior when exception is raised (#1313)
|
|
|
|
* Fix version that supports Python 3.6 on the README (#1316)
|
|
|
|
* Add missing http version on websockets scope (#1309)
|
|
|
|
* Remove Python 3.6 (#1261)
|
|
|
|
* Support `extra_headers` for WS `accept` message (#1293)
|
|
|
|
* Allow configurable websocket per-message-deflate setting (#1300)
|
|
|
|
* Remove root_path from logs (#1294)
|
|
|
|
|
|
|
|
- Update to version 0.16.0:
|
|
|
|
* Version 0.16.0 (#1270)
|
|
|
|
* Allow app-dir parameter on the run() function (#1271)
|
|
|
|
|
|
|
|
- Update to version 0.15.0:
|
|
|
|
* Added
|
|
|
|
- Change reload to be configurable with glob patterns. Currently
|
|
|
|
only .py files are watched, which is different from the previous
|
|
|
|
default behavior. (#820) 08/08/21
|
|
|
|
- Add Python 3.10-rc.1 support. Now the server uses asyncio.run
|
|
|
|
which will: start a fresh asyncio event loop, on shutdown cancel any
|
|
|
|
background tasks rather than aborting them, aexit any remaining async
|
|
|
|
generators, and shutdown the default ThreadPoolExecutor. (#1070) 30/07/21
|
|
|
|
- Exit with status 3 when worker starts failed (#1077) 22/06/21
|
|
|
|
- Add option to set websocket ping interval and timeout (#1048) 09/06/21
|
|
|
|
- Adapt bind_socket to make it usable with multiple processes (#1009) 21/06/21
|
|
|
|
- Add existence check to the reload directory(ies) (#1089) 21/06/21
|
|
|
|
- Add missing trace log for websocket protocols (#1083) 19/06/21
|
|
|
|
- Support disabling default Server and Date headers (#818) 11/06/21
|
|
|
|
* Changed
|
|
|
|
- Add PEP440 compliant version of click (#1099) 29/06/21
|
|
|
|
- Bump asgiref to 3.4.0 (#1100) 29/06/21
|
|
|
|
* Fixed
|
|
|
|
- When receiving a SIGTERM supervisors now terminate their
|
|
|
|
processes before joining them (#1069) 30/07/21
|
|
|
|
- Fix the need of httptools on minimal installation (#1135) 30/07/21
|
|
|
|
- Fix ping parameters annotation in Config class (#1127) 19/07/21
|
|
|
|
|
|
|
|
- Update to version 0.14.0:
|
|
|
|
* Added
|
|
|
|
- Defaults ws max_size on server to 16MB (#995) 5/29/21
|
|
|
|
- Improve user feedback if no ws library installed (#926 and
|
|
|
|
#1023) 2/27/21
|
|
|
|
- Support 'reason' field in 'websocket.close' messages (#957) 2/24/21
|
|
|
|
- Implemented lifespan.shutdown.failed (#755) 2/25/21
|
|
|
|
* Changed
|
|
|
|
- Upgraded websockets requirements (#1065) 6/1/21
|
|
|
|
- Switch to asyncio streams API (#869) 5/29/21
|
|
|
|
- Update httptools from 0.1.* to 0.2.* (#1024) 5/28/21
|
|
|
|
- Allow Click 8.0, refs #1016 (#1042) 5/23/21
|
|
|
|
- Add search for a trusted host in ProxyHeadersMiddleware (#591) 3/13/21
|
|
|
|
- Up wsproto to 1.0.0 (#892) 2/25/21
|
|
|
|
* Fixed
|
|
|
|
- Force reload_dirs to be a list (#978) 6/1/21
|
|
|
|
- Fix gunicorn worker not running if extras not installed (#901) 5/28/21
|
|
|
|
- Fix socket port 0 (#975) 3/5/21
|
|
|
|
- Prevent garbage collection of main lifespan task (#972) 3/4/21
|
|
|
|
|
|
|
|
- Update to version 0.13.0:
|
|
|
|
* Add --factory flag to support factory-style application imports.
|
|
|
|
(#875) 2020-12-07 50fc0d1
|
|
|
|
* Skip installation of signal handlers when not in the main thread.
|
|
|
|
Allows using Server in multithreaded contexts without having to
|
|
|
|
override .install_signal_handlers(). (#871) 2020-12-07 ce2ef45
|
|
|
|
|
2021-09-17 13:22:19 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Fri Sep 17 07:04:38 UTC 2021 - Dominique Leuenberger <dimstar@opensuse.org>
|
|
|
|
|
|
|
|
- Do not build for python 3.6: the required dependency uvloop does
|
|
|
|
no longer support Python 3.6 since version 0.16.
|
|
|
|
|
2020-11-30 16:11:56 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Sun Nov 29 09:56:12 UTC 2020 - John Vandenberg <jayvdb@gmail.com>
|
|
|
|
|
|
|
|
- Skip three tests due to minor change introduced in wsproto 1.0.0
|
|
|
|
- Add some missing minimum versions to Requires and BuildRequires
|
|
|
|
- Update to v0.12.3
|
|
|
|
* Fix race condition that leads Quart to hang
|
|
|
|
* Use latin1 when decoding X-Forwarded-* headers
|
|
|
|
* Rework IPv6 support
|
|
|
|
* Cancel old keepalive-trigger before setting new one
|
|
|
|
- from v0.12.2
|
|
|
|
* Adding ability to decrypt ssl key file
|
|
|
|
* Support .yml log config files
|
|
|
|
* Added python 3.9 support
|
|
|
|
* Fixes watchgod with common prefixes
|
|
|
|
* Fix reload with ipv6 host
|
|
|
|
* Added cli support for headers containing colon
|
|
|
|
* Sharing socket across workers on windows
|
|
|
|
* Note the need to configure trusted "ips" when using unix sockets
|
|
|
|
|
2020-10-13 09:53:07 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Oct 13 09:42:02 UTC 2020 - Jan Engelhardt <jengelh@inai.de>
|
|
|
|
|
|
|
|
- Trim marketing wording from descriptions.
|
|
|
|
|
2020-10-13 09:32:40 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Sun Oct 11 14:58:51 UTC 2020 - John Vandenberg <jayvdb@gmail.com>
|
|
|
|
|
|
|
|
- Update to v0.12.1
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Sat Jul 25 18:38:16 UTC 2020 - John Vandenberg <jayvdb@gmail.com>
|
|
|
|
|
|
|
|
- Update to v0.11.6
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Oct 8 09:08:25 AM UTC 2019 - John Vandenberg <jayvdb@gmail.com>
|
|
|
|
|
|
|
|
- Initial spec for v0.9.0
|