summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-uvicorn_0.42.0.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2026-03-26 19:56:25 +0800
committerKhem Raj <khem.raj@oss.qualcomm.com>2026-03-27 09:09:02 -0700
commit6489eee14b304cf7e0b612dd45a9766a86d0fa29 (patch)
tree8b60d6e64705f87b31976d1a282691546b8dc547 /meta-python/recipes-devtools/python/python3-uvicorn_0.42.0.bb
parent923ce0e77e0838887cd70a72a1cede5154fb4354 (diff)
downloadmeta-openembedded-6489eee14b304cf7e0b612dd45a9766a86d0fa29.tar.gz
python3-uvicorn: upgrade 0.41.0 -> 0.42.0
Changelog: =========== - Use bytearray for request body accumulation to avoid O(n^2) allocation on fragmented bodies - Escape brackets and backslash in httptools HEADER_RE regex - Fix multiple issues in websockets sans-io implementation Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-uvicorn_0.42.0.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-uvicorn_0.42.0.bb32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-uvicorn_0.42.0.bb b/meta-python/recipes-devtools/python/python3-uvicorn_0.42.0.bb
new file mode 100644
index 0000000000..f14ba46dc6
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-uvicorn_0.42.0.bb
@@ -0,0 +1,32 @@
1SUMMARY = "The lightning-fast ASGI server."
2HOMEPAGE = "https://github.com/encode/uvicorn"
3LICENSE = "BSD-3-Clause"
4LIC_FILES_CHKSUM = "file://LICENSE.md;md5=5c778842f66a649636561c423c0eec2e"
5RECIPE_MAINTAINER = "Tom Geelen <t.f.g.geelen@gmail.com>"
6
7SRC_URI[sha256sum] = "9b1f190ce15a2dd22e7758651d9b6d12df09a13d51ba5bf4fc33c383a48e1775"
8
9SRC_URI += "file://0001-ptest-disable-failing-tests.patch"
10
11inherit pypi python_hatchling ptest-python-pytest
12
13PYPI_PACKAGE = "uvicorn"
14CVE_PRODUCT = "encode:uvicorn"
15CVE_STATUS[CVE-2020-7694] = "fixed-version: The vulnerability has been fixed since 0.11.7"
16
17RDEPENDS:${PN} = "\
18 python3-click \
19 python3-h11 (>=0.8) \
20 python3-httptools \
21 python3-multiprocessing \
22 python3-python-dotenv \
23 python3-websockets \
24 python3-wsproto \
25"
26
27RDEPENDS:${PN}-ptest += "\
28 python3-a2wsgi \
29 python3-httpx \
30 python3-pytest-mock \
31 python3-pyyaml \
32"