diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2024-08-28 16:25:02 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-08-28 07:11:34 -0700 |
| commit | f96f5cef7a71bf395a46a22be32317ba7104c424 (patch) | |
| tree | 03b5c335d4bef89dae702c595194c435a9c49f02 /meta-python/recipes-devtools/python/python3-gunicorn_23.0.0.bb | |
| parent | b3c388cea1f473d336c875ef8bb0428fa290ec38 (diff) | |
| download | meta-openembedded-f96f5cef7a71bf395a46a22be32317ba7104c424.tar.gz | |
python3-gunicorn: upgrade 22.0.0 -> 23.0.0
Changelog:
===========
- minor docs fixes
- worker_class parameter accepts a class
- fix deadlock if request terminated during chunked parsing
- permit receiving Transfer-Encodings: compress, deflate, gzip
- permit Transfer-Encoding headers specifying multiple encodings. note: no parameters, still
- sdist generation now explicitly excludes sphinx build folder
- decode bytes-typed status (as can be passed by gevent) as utf-8 instead of raising TypeError
- raise correct Exception when encounting invalid chunked requests
- the SCRIPT_NAME and PATH_INFO headers, when received from allowed forwarders, are no longer restricted for containing an underscore
- include IPv6 loopback address [::1] in default for forwarded_allow_ips and proxy_allow_ips
- refuse requests where the uri field is empty
- refuse requests with invalid CR/LR/NUL in heade field values
- remove temporary --tolerate-dangerous-framing switch from 22.0
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-gunicorn_23.0.0.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-gunicorn_23.0.0.bb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-gunicorn_23.0.0.bb b/meta-python/recipes-devtools/python/python3-gunicorn_23.0.0.bb new file mode 100644 index 0000000000..8d825c8651 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-gunicorn_23.0.0.bb | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | SUMMARY = "WSGI HTTP Server for UNIX" | ||
| 2 | |||
| 3 | LICENSE = "MIT" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=5b70a8b30792a916f50dc96123e61ddf" | ||
| 5 | |||
| 6 | SRC_URI[sha256sum] = "f014447a0101dc57e294f6c18ca6b40227a4c90e9bdb586042628030cba004ec" | ||
| 7 | |||
| 8 | inherit pypi python_setuptools_build_meta ptest | ||
| 9 | |||
| 10 | SRC_URI += " \ | ||
| 11 | file://run-ptest \ | ||
| 12 | " | ||
| 13 | |||
| 14 | RDEPENDS:${PN}-ptest += " \ | ||
| 15 | python3-eventlet \ | ||
| 16 | python3-gevent \ | ||
| 17 | python3-pytest \ | ||
| 18 | python3-unittest-automake-output \ | ||
| 19 | " | ||
| 20 | |||
| 21 | do_install_ptest() { | ||
| 22 | install -d ${D}${PTEST_PATH}/tests | ||
| 23 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | ||
| 24 | } | ||
| 25 | |||
| 26 | RDEPENDS:${PN} += "python3-setuptools python3-fcntl" | ||
