diff options
| author | Tim Orling <ticotimo@gmail.com> | 2023-07-23 08:44:15 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-07-25 15:27:33 +0100 |
| commit | db4946b66f1ee733b8d106c30bf142e3b7fa0770 (patch) | |
| tree | c7848d0a30bbb2d1afe1814d5bd523ca1fcf714a /meta/recipes-devtools/python/python3-urllib3_2.0.4.bb | |
| parent | 88ae1b73c09c4a1b2563f61fcddd15b5ae9fedca (diff) | |
| download | poky-db4946b66f1ee733b8d106c30bf142e3b7fa0770.tar.gz | |
python3-urllib3: upgrade 2.0.3 -> 2.0.4
https://github.com/urllib3/urllib3/blob/main/CHANGES.rst#204-2023-07-19
2.0.4 (2023-07-19)
* Added support for union operators to HTTPHeaderDict (#2254)
* Added BaseHTTPResponse to urllib3.__all__ (#3078)
* Fixed urllib3.connection.HTTPConnection to raise the http.client.connect
audit event to have the same behavior as the standard library HTTP client
(#2757)
* Relied on the standard library for checking hostnames in supported PyPy
releases (#3087)
(From OE-Core rev: 3513a31db197fcaf78a68a48be448b45b60defbf)
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-urllib3_2.0.4.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-urllib3_2.0.4.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-urllib3_2.0.4.bb b/meta/recipes-devtools/python/python3-urllib3_2.0.4.bb new file mode 100644 index 0000000000..0abd2adf65 --- /dev/null +++ b/meta/recipes-devtools/python/python3-urllib3_2.0.4.bb | |||
| @@ -0,0 +1,24 @@ | |||
| 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=52d273a3054ced561275d4d15260ecda" | ||
| 5 | |||
| 6 | SRC_URI[sha256sum] = "8d22f86aae8ef5e410d4f539fde9ce6b2113a001bb4d189e0aed70642d602b11" | ||
| 7 | |||
| 8 | inherit pypi python_hatchling | ||
| 9 | |||
| 10 | RDEPENDS:${PN} += "\ | ||
| 11 | ${PYTHON_PN}-certifi \ | ||
| 12 | ${PYTHON_PN}-cryptography \ | ||
| 13 | ${PYTHON_PN}-email \ | ||
| 14 | ${PYTHON_PN}-idna \ | ||
| 15 | ${PYTHON_PN}-json \ | ||
| 16 | ${PYTHON_PN}-netclient \ | ||
| 17 | ${PYTHON_PN}-pyopenssl \ | ||
| 18 | ${PYTHON_PN}-threading \ | ||
| 19 | ${PYTHON_PN}-logging \ | ||
| 20 | " | ||
| 21 | |||
| 22 | CVE_PRODUCT = "urllib3" | ||
| 23 | |||
| 24 | BBCLASSEXTEND = "native nativesdk" | ||
