summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-werkzeug_2.2.3.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2023-02-27 16:14:00 +0800
committerKhem Raj <raj.khem@gmail.com>2023-02-27 09:43:09 -0800
commit07da5d695bc78846c74cdfa66444009d0eee6cce (patch)
treec91a2d2b9a96d765bf0146d381a06458588dc341 /meta-python/recipes-devtools/python/python3-werkzeug_2.2.3.bb
parented8f92169bc6a34cf51266eff056a12743a4b252 (diff)
downloadmeta-openembedded-07da5d695bc78846c74cdfa66444009d0eee6cce.tar.gz
python3-werkzeug: upgrade 2.2.2 -> 2.2.3
Changelog: ========== - Ensure that URL rules using path converters will redirect with strict slashes when the trailing slash is missing. #2533 - Type signature for get_json specifies that return type is not optional when silent=False. #2508 - parse_content_range_header returns None for a value like bytes */-1 where the length is invalid, instead of raising an AssertionError. #2531 - Address remaining ResourceWarning related to the socket used by run_simple. Remove prepare_socket, which now happens when creating the server. #2421 - Update pre-existing headers for multipart/form-data requests with the test client. #2549 - Fix handling of header extended parameters such that they are no longer quoted. #2529 - LimitedStream.read works correctly when wrapping a stream that may not return the requested size in one read call. #2558 - A cookie header that starts with = is treated as an empty key and discarded, rather than stripping the leading ==. - Specify a maximum number of multipart parts, default 1000, after which a RequestEntityTooLarge exception is raised on parsing. This mitigates a DoS attack where a larger number of form/file parts would result in disproportionate resource use. 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-werkzeug_2.2.3.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-werkzeug_2.2.3.bb40
1 files changed, 40 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-werkzeug_2.2.3.bb b/meta-python/recipes-devtools/python/python3-werkzeug_2.2.3.bb
new file mode 100644
index 0000000000..5565fb4ead
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-werkzeug_2.2.3.bb
@@ -0,0 +1,40 @@
1SUMMARY = "The Swiss Army knife of Python web development"
2DESCRIPTION = "\
3Werkzeug started as simple collection of various utilities for WSGI \
4applications and has become one of the most advanced WSGI utility modules. \
5It includes a powerful debugger, full featured request and response objects, \
6HTTP utilities to handle entity tags, cache control headers, HTTP dates, \
7cookie handling, file uploads, a powerful URL routing system and a bunch \
8of community contributed addon modules."
9HOMEPAGE = "http://werkzeug.pocoo.org/"
10LICENSE = "BSD-3-Clause"
11LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=5dc88300786f1c214c1e9827a5229462"
12
13PYPI_PACKAGE = "Werkzeug"
14
15SRC_URI[sha256sum] = "2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe"
16
17inherit pypi setuptools3
18
19CLEANBROKEN = "1"
20
21RDEPENDS:${PN} += " \
22 ${PYTHON_PN}-datetime \
23 ${PYTHON_PN}-difflib \
24 ${PYTHON_PN}-email \
25 ${PYTHON_PN}-html \
26 ${PYTHON_PN}-io \
27 ${PYTHON_PN}-json \
28 ${PYTHON_PN}-logging \
29 ${PYTHON_PN}-netclient \
30 ${PYTHON_PN}-netserver \
31 ${PYTHON_PN}-numbers \
32 ${PYTHON_PN}-pkgutil \
33 ${PYTHON_PN}-pprint \
34 ${PYTHON_PN}-simplejson \
35 ${PYTHON_PN}-threading \
36 ${PYTHON_PN}-unixadmin \
37 ${PYTHON_PN}-misc \
38 ${PYTHON_PN}-profile \
39 ${PYTHON_PN}-markupsafe \
40"