diff options
| author | Lee Chee Yang <chee.yang.lee@intel.com> | 2023-10-13 19:09:41 +0800 |
|---|---|---|
| committer | Steve Sakoman <steve@sakoman.com> | 2023-10-18 05:13:24 -1000 |
| commit | 3f174130d30f17a87e007672eb47096ee1e85d44 (patch) | |
| tree | 5501549dcfdc4ee2ff78a6c7c309d946fb3b18f3 /meta/recipes-devtools/python/python3-urllib3_1.26.17.bb | |
| parent | 43e36aec3476c4785f3b09353bfda03c381972d4 (diff) | |
| download | poky-3f174130d30f17a87e007672eb47096ee1e85d44.tar.gz | |
python3-urllib3: 1.26.15 -> 1.26.17
1.26.17 (2023-10-02)
Added the Cookie header to the list of headers to strip from requests
when redirecting to a different host. As before, different headers can
be set via Retry.remove_headers_on_redirect. (CVE-2023-43804)
1.26.16 (2023-05-23)
Fixed thread-safety issue where accessing a PoolManager with many
distinct origins would cause connection pools to be closed while
requests are in progress (#2954)
(From OE-Core rev: 27a1de55a46b7b313eb2a6370e9d779a7cd49154)
Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta/recipes-devtools/python/python3-urllib3_1.26.17.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-urllib3_1.26.17.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-urllib3_1.26.17.bb b/meta/recipes-devtools/python/python3-urllib3_1.26.17.bb new file mode 100644 index 0000000000..57b166870a --- /dev/null +++ b/meta/recipes-devtools/python/python3-urllib3_1.26.17.bb | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | SUMMARY = "Python HTTP library with thread-safe connection pooling, file post support, sanity friendly, and more" | ||
| 2 | HOMEPAGE = "https://github.com/shazow/urllib3" | ||
| 3 | LICENSE = "MIT" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=c2823cb995439c984fd62a973d79815c" | ||
| 5 | |||
| 6 | SRC_URI[sha256sum] = "24d6a242c28d29af46c3fae832c36db3bbebcc533dd1bb549172cd739c82df21" | ||
| 7 | |||
| 8 | inherit pypi setuptools3 | ||
| 9 | |||
| 10 | RDEPENDS:${PN} += "\ | ||
| 11 | ${PYTHON_PN}-certifi \ | ||
| 12 | ${PYTHON_PN}-cryptography \ | ||
| 13 | ${PYTHON_PN}-email \ | ||
| 14 | ${PYTHON_PN}-idna \ | ||
| 15 | ${PYTHON_PN}-netclient \ | ||
| 16 | ${PYTHON_PN}-pyopenssl \ | ||
| 17 | ${PYTHON_PN}-threading \ | ||
| 18 | ${PYTHON_PN}-logging \ | ||
| 19 | " | ||
| 20 | |||
| 21 | CVE_PRODUCT = "urllib3" | ||
| 22 | |||
| 23 | BBCLASSEXTEND = "native nativesdk" | ||
