Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/3] Recipe upgrades from AUH 2023-02-16
@ 2023-02-16 23:58 Tim Orling
  2023-02-16 23:58 ` [PATCH 1/3] python3-hypothesis: upgrade 6.66.0 -> 6.68.1 Tim Orling
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Tim Orling @ 2023-02-16 23:58 UTC (permalink / raw)
  To: openembedded-core

Recipe upgrades from the AUH run on 2023-02-16

The following changes since commit 44311c454d0b0856f58cfa6fa60669903b2ba3af:

  yocto-bsps: remove 5.19 bbappend (2023-02-15 10:21:35 +0000)

are available in the Git repository at:

  https://git.yoctoproject.org/poky-contrib timo/recipe-upgrades
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=timo/recipe-upgrades

Tim Orling (3):
  python3-hypothesis: upgrade 6.66.0 -> 6.68.1
  python3-typing-extensions: upgrade 4.4.0 -> 4.5.0
  python3-cryptography{-vectors}: 39.0.0 -> 39.0.1

 ...vectors_39.0.0.bb => python3-cryptography-vectors_39.0.1.bb} | 2 +-
 ...n3-cryptography_39.0.0.bb => python3-cryptography_39.0.1.bb} | 2 +-
 ...ython3-hypothesis_6.66.0.bb => python3-hypothesis_6.68.1.bb} | 2 +-
 ...g-extensions_4.4.0.bb => python3-typing-extensions_4.5.0.bb} | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)
 rename meta/recipes-devtools/python/{python3-cryptography-vectors_39.0.0.bb => python3-cryptography-vectors_39.0.1.bb} (90%)
 rename meta/recipes-devtools/python/{python3-cryptography_39.0.0.bb => python3-cryptography_39.0.1.bb} (95%)
 rename meta/recipes-devtools/python/{python3-hypothesis_6.66.0.bb => python3-hypothesis_6.68.1.bb} (91%)
 rename meta/recipes-devtools/python/{python3-typing-extensions_4.4.0.bb => python3-typing-extensions_4.5.0.bb} (91%)

-- 
2.30.2



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/3] python3-hypothesis: upgrade 6.66.0 -> 6.68.1
  2023-02-16 23:58 [PATCH 0/3] Recipe upgrades from AUH 2023-02-16 Tim Orling
@ 2023-02-16 23:58 ` Tim Orling
  2023-02-16 23:58 ` [PATCH 2/3] python3-typing-extensions: upgrade 4.4.0 -> 4.5.0 Tim Orling
  2023-02-16 23:58 ` [PATCH 3/3] python3-cryptography{-vectors}: 39.0.0 -> 39.0.1 Tim Orling
  2 siblings, 0 replies; 4+ messages in thread
From: Tim Orling @ 2023-02-16 23:58 UTC (permalink / raw)
  To: openembedded-core

https://hypothesis.readthedocs.io/en/latest/changes.html#v6-68-1
https://hypothesis.readthedocs.io/en/latest/changes.html#v6-68-0
https://hypothesis.readthedocs.io/en/latest/changes.html#v6-67-1
https://hypothesis.readthedocs.io/en/latest/changes.html#v6-67-0

Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
All tests pass on qemux86-64

 ...ython3-hypothesis_6.66.0.bb => python3-hypothesis_6.68.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-hypothesis_6.66.0.bb => python3-hypothesis_6.68.1.bb} (91%)

diff --git a/meta/recipes-devtools/python/python3-hypothesis_6.66.0.bb b/meta/recipes-devtools/python/python3-hypothesis_6.68.1.bb
similarity index 91%
rename from meta/recipes-devtools/python/python3-hypothesis_6.66.0.bb
rename to meta/recipes-devtools/python/python3-hypothesis_6.68.1.bb
index 3101845e48c..1db31515ccc 100644
--- a/meta/recipes-devtools/python/python3-hypothesis_6.66.0.bb
+++ b/meta/recipes-devtools/python/python3-hypothesis_6.68.1.bb
@@ -13,7 +13,7 @@ SRC_URI += " \
     file://test_rle.py \
     "
 
-SRC_URI[sha256sum] = "2fb334ab068dc6e7c02d49a1c694f66bd1f681197eeed94406650a59eebef870"
+SRC_URI[sha256sum] = "b37bd77b4b7f404a59ff965e24be8aec4209323866e34ececdf416522c6d0854"
 
 RDEPENDS:${PN} += " \
     python3-attrs \
-- 
2.30.2



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/3] python3-typing-extensions: upgrade 4.4.0 -> 4.5.0
  2023-02-16 23:58 [PATCH 0/3] Recipe upgrades from AUH 2023-02-16 Tim Orling
  2023-02-16 23:58 ` [PATCH 1/3] python3-hypothesis: upgrade 6.66.0 -> 6.68.1 Tim Orling
@ 2023-02-16 23:58 ` Tim Orling
  2023-02-16 23:58 ` [PATCH 3/3] python3-cryptography{-vectors}: 39.0.0 -> 39.0.1 Tim Orling
  2 siblings, 0 replies; 4+ messages in thread
From: Tim Orling @ 2023-02-16 23:58 UTC (permalink / raw)
  To: openembedded-core

https://github.com/python/typing_extensions/blob/main/CHANGELOG.md#release-450-february-14-2023

Release 4.5.0 (February 14, 2023)

* Runtime support for PEP 702, adding typing_extensions.deprecated. Patch
  by Jelle Zijlstra.
* Add better default value for TypeVar default parameter, PEP 696. Enables
  runtime check if None was passed as default. Patch by Marc Mueller (@cdce8p).
* The @typing_extensions.override decorator now sets the .__override__
  attribute. Patch by Steven Troxler.
* Fix get_type_hints() on cross-module inherited TypedDict in 3.9 and 3.10.
  Patch by Carl Meyer.
* Add frozen_default parameter on dataclass_transform. Patch by Erik De Bonte.

Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
 ...g-extensions_4.4.0.bb => python3-typing-extensions_4.5.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-typing-extensions_4.4.0.bb => python3-typing-extensions_4.5.0.bb} (91%)

diff --git a/meta/recipes-devtools/python/python3-typing-extensions_4.4.0.bb b/meta/recipes-devtools/python/python3-typing-extensions_4.5.0.bb
similarity index 91%
rename from meta/recipes-devtools/python/python3-typing-extensions_4.4.0.bb
rename to meta/recipes-devtools/python/python3-typing-extensions_4.5.0.bb
index 27ec7560ea7..80f87cae841 100644
--- a/meta/recipes-devtools/python/python3-typing-extensions_4.4.0.bb
+++ b/meta/recipes-devtools/python/python3-typing-extensions_4.5.0.bb
@@ -15,7 +15,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=f16b323917992e0f8a6f0071bc9913e2"
 # The name on PyPi is slightly different.
 PYPI_PACKAGE = "typing_extensions"
 
-SRC_URI[sha256sum] = "1511434bb92bf8dd198c12b1cc812e800d4181cfcb867674e0f8279cc93087aa"
+SRC_URI[sha256sum] = "5cb5f4a79139d699607b3ef622a1dedafa84e115ab0024e0d9c044a9479ca7cb"
 
 inherit pypi python_flit_core
 
-- 
2.30.2



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 3/3] python3-cryptography{-vectors}: 39.0.0 -> 39.0.1
  2023-02-16 23:58 [PATCH 0/3] Recipe upgrades from AUH 2023-02-16 Tim Orling
  2023-02-16 23:58 ` [PATCH 1/3] python3-hypothesis: upgrade 6.66.0 -> 6.68.1 Tim Orling
  2023-02-16 23:58 ` [PATCH 2/3] python3-typing-extensions: upgrade 4.4.0 -> 4.5.0 Tim Orling
@ 2023-02-16 23:58 ` Tim Orling
  2 siblings, 0 replies; 4+ messages in thread
From: Tim Orling @ 2023-02-16 23:58 UTC (permalink / raw)
  To: openembedded-core

https://cryptography.io/en/latest/changelog/#v39-0-1

39.0.1 - 2023-02-07
* SECURITY ISSUE - Fixed a bug where Cipher.update_into accepted Python
  buffer protocol objects, but allowed immutable buffers. CVE-2023-23931

* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.0.8.

CVE: CVE-2023-23931

Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
All tests (except those requiring python3-pytest-benchmark) pass on
qemux86-64

 ...vectors_39.0.0.bb => python3-cryptography-vectors_39.0.1.bb} | 2 +-
 ...n3-cryptography_39.0.0.bb => python3-cryptography_39.0.1.bb} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-devtools/python/{python3-cryptography-vectors_39.0.0.bb => python3-cryptography-vectors_39.0.1.bb} (90%)
 rename meta/recipes-devtools/python/{python3-cryptography_39.0.0.bb => python3-cryptography_39.0.1.bb} (95%)

diff --git a/meta/recipes-devtools/python/python3-cryptography-vectors_39.0.0.bb b/meta/recipes-devtools/python/python3-cryptography-vectors_39.0.1.bb
similarity index 90%
rename from meta/recipes-devtools/python/python3-cryptography-vectors_39.0.0.bb
rename to meta/recipes-devtools/python/python3-cryptography-vectors_39.0.1.bb
index 6aaf6501b46..458ca2adbd6 100644
--- a/meta/recipes-devtools/python/python3-cryptography-vectors_39.0.0.bb
+++ b/meta/recipes-devtools/python/python3-cryptography-vectors_39.0.1.bb
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=8c3617db4fb6fae01f1d253ab91511e4 \
 # NOTE: Make sure to keep this recipe at the same version as python3-cryptography
 #       Upgrade both recipes at the same time
 
-SRC_URI[sha256sum] = "52e59670a0820b5bbfa85f724b8aebd61385787eb8b6607f64d533969124b2a0"
+SRC_URI[sha256sum] = "0cbaeb50bdb7f3c9d7a93b26a0462ef6e97c768ca78d902854fe045c30b680c6"
 
 PYPI_PACKAGE = "cryptography_vectors"
 
diff --git a/meta/recipes-devtools/python/python3-cryptography_39.0.0.bb b/meta/recipes-devtools/python/python3-cryptography_39.0.1.bb
similarity index 95%
rename from meta/recipes-devtools/python/python3-cryptography_39.0.0.bb
rename to meta/recipes-devtools/python/python3-cryptography_39.0.1.bb
index cca192bc84c..abc8d8e0ef4 100644
--- a/meta/recipes-devtools/python/python3-cryptography_39.0.0.bb
+++ b/meta/recipes-devtools/python/python3-cryptography_39.0.1.bb
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=bf405a8056a6647e7d077b0e7bc36aba \
                    "
 LDSHARED += "-pthread"
 
-SRC_URI[sha256sum] = "f964c7dcf7802d133e8dbd1565914fa0194f9d683d82411989889ecd701e8adf"
+SRC_URI[sha256sum] = "d1f6198ee6d9148405e49887803907fe8962a23e6c6f83ea7d98f1c0de375695"
 
 SRC_URI += "\
     file://0002-Cargo.toml-edition-2018-2021.patch \
-- 
2.30.2



^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-02-16 23:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-16 23:58 [PATCH 0/3] Recipe upgrades from AUH 2023-02-16 Tim Orling
2023-02-16 23:58 ` [PATCH 1/3] python3-hypothesis: upgrade 6.66.0 -> 6.68.1 Tim Orling
2023-02-16 23:58 ` [PATCH 2/3] python3-typing-extensions: upgrade 4.4.0 -> 4.5.0 Tim Orling
2023-02-16 23:58 ` [PATCH 3/3] python3-cryptography{-vectors}: 39.0.0 -> 39.0.1 Tim Orling

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox