diff options
author | Tim Orling <ticotimo@gmail.com> | 2022-10-08 16:54:45 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-10-26 12:28:37 +0100 |
commit | 0164f95719155fd25bf5f0261149ef553684de3e (patch) | |
tree | 0851b5d933d09462e68d266babf90c3a384b766c /meta/recipes-devtools/python/python3-cryptography | |
parent | 59ba302179e1d522262f52384ba5974e1f5e607a (diff) | |
download | poky-0164f95719155fd25bf5f0261149ef553684de3e.tar.gz |
python3-cryptography: upgrade 37.0.4 -> 38.0.1
* Drop 0001-Cargo.toml-specify-pem-version.patch, superceded.
* Update crate:// (via cargo bitbake)
* Manually fix crate:// versions to satisfy cargo
Release notes:
38.0.1 - 2022-09-07
- Fixed parsing TLVs in ASN.1 with length greater than 65535 bytes
(typically seen in large CRLs).
38.0.0 - 2022-09-06
- Final deprecation of OpenSSL 1.1.0. The next release of cryptography
will drop support.
(For complete release notes, see:
https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst#3800---2022-09-06)
(From OE-Core rev: da62314b7149cd53ffb046115b67c5e620f2afe4)
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-cryptography')
-rw-r--r-- | meta/recipes-devtools/python/python3-cryptography/0001-Cargo.toml-specify-pem-version.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/meta/recipes-devtools/python/python3-cryptography/0001-Cargo.toml-specify-pem-version.patch b/meta/recipes-devtools/python/python3-cryptography/0001-Cargo.toml-specify-pem-version.patch deleted file mode 100644 index 7266fd7bef..0000000000 --- a/meta/recipes-devtools/python/python3-cryptography/0001-Cargo.toml-specify-pem-version.patch +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | From d41203b9b79f5edc2d33b0d62921822294dfaa6b Mon Sep 17 00:00:00 2001 | ||
2 | From: Tim Orling <tim.orling@konsulko.com> | ||
3 | Date: Fri, 14 Jan 2022 22:02:25 -0800 | ||
4 | Subject: [PATCH] Cargo.toml: specify pem version | ||
5 | |||
6 | pem = "1.0" is not resolving, specify the current | ||
7 | pem = { version: "1.0.2"} | ||
8 | |||
9 | Upstream-Status: Pending | ||
10 | |||
11 | Signed-off-by: Tim Orling <tim.orling@konsulko.com> | ||
12 | |||
13 | --- | ||
14 | src/rust/Cargo.toml | 2 +- | ||
15 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
16 | |||
17 | diff --git a/src/rust/Cargo.toml b/src/rust/Cargo.toml | ||
18 | index d17245d..f8f6416 100644 | ||
19 | --- a/src/rust/Cargo.toml | ||
20 | +++ b/src/rust/Cargo.toml | ||
21 | @@ -9,7 +9,7 @@ publish = false | ||
22 | lazy_static = "1" | ||
23 | pyo3 = { version = "0.15.2" } | ||
24 | asn1 = { version = "0.8.7", default-features = false, features = ["derive"] } | ||
25 | -pem = "1.0" | ||
26 | +pem = { version = "1.0.2" } | ||
27 | chrono = { version = "0.4", default-features = false, features = ["alloc", "clock"] } | ||
28 | ouroboros = "0.15" | ||
29 | |||