All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/5] [oe] [meta-python] [PATCH] python3-requests-oauthlib: upgrade 1.3.0 -> 1.3.1
@ 2022-02-10 10:25 XU Huan
  2022-02-10 10:25 ` [PATCH 2/5] [oe] [meta-python] [PATCH] python3-sqlalchemy: upgrade 1.4.29 -> 1.4.31 XU Huan
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: XU Huan @ 2022-02-10 10:25 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Xu Huan

From: Xu Huan <xuhuan.fnst@fujitsu.com>

changelog:
===============================================================================
Add initial support for OAuth Mutual TLS (draft-ietf-oauth-mtls)
Add eBay compliance fix
Add Spotify OAuth 2 Tutorial
Add support for python 3.8, 3.9
Fixed LinkedIn Compliance Fixes
Fixed ReadTheDocs Documentation and sphinx errors
Moved pipeline to GitHub Actions

Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
---
 .../python/python3-requests-oauthlib_1.3.0.bb            | 9 ---------
 .../python/python3-requests-oauthlib_1.3.1.bb            | 8 ++++++++
 2 files changed, 8 insertions(+), 9 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python3-requests-oauthlib_1.3.0.bb
 create mode 100644 meta-python/recipes-devtools/python/python3-requests-oauthlib_1.3.1.bb

diff --git a/meta-python/recipes-devtools/python/python3-requests-oauthlib_1.3.0.bb b/meta-python/recipes-devtools/python/python3-requests-oauthlib_1.3.0.bb
deleted file mode 100644
index 12531d75fe..0000000000
--- a/meta-python/recipes-devtools/python/python3-requests-oauthlib_1.3.0.bb
+++ /dev/null
@@ -1,9 +0,0 @@
-LICENSE = "ISC"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=22d117a849df10d047ed9b792838e863"
-
-SRC_URI[md5sum] = "1ebcd55f1b1b9281940b4bc33010e2ba"
-SRC_URI[sha256sum] = "b4261601a71fd721a8bd6d7aa1cc1d6a8a93b4a9f5e96626f8e4d91e8beeaa6a"
-
-inherit pypi setuptools3
-
-RDEPENDS:${PN} += "${PYTHON_PN}-requests"
diff --git a/meta-python/recipes-devtools/python/python3-requests-oauthlib_1.3.1.bb b/meta-python/recipes-devtools/python/python3-requests-oauthlib_1.3.1.bb
new file mode 100644
index 0000000000..e02ff7911e
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-requests-oauthlib_1.3.1.bb
@@ -0,0 +1,8 @@
+LICENSE = "ISC"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=22d117a849df10d047ed9b792838e863"
+
+SRC_URI[sha256sum] = "75beac4a47881eeb94d5ea5d6ad31ef88856affe2332b9aafb52c6452ccf0d7a"
+
+inherit pypi setuptools3
+
+RDEPENDS:${PN} += "${PYTHON_PN}-requests ${PYTHON_PN}-oauthlib"
-- 
2.25.1



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

* [PATCH 2/5] [oe] [meta-python] [PATCH] python3-sqlalchemy: upgrade 1.4.29 -> 1.4.31
  2022-02-10 10:25 [PATCH 1/5] [oe] [meta-python] [PATCH] python3-requests-oauthlib: upgrade 1.3.0 -> 1.3.1 XU Huan
@ 2022-02-10 10:25 ` XU Huan
  2022-02-10 10:25 ` [PATCH 3/5] [oe] [meta-python] [PATCH] python3-oauthlib: upgrade 3.1.1 -> 3.2.0 XU Huan
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: XU Huan @ 2022-02-10 10:25 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Xu Huan

From: Xu Huan <xuhuan.fnst@fujitsu.com>

License-Update:
year updated to 2022

changelog:
===============================================================================
-orm
Fixed issue in Session.bulk_save_objects() where the sorting that takes place
when the preserve_order parameter is set to False would sort partially on
Mapper objects, which is rejected in Python 3.11.

-postgresql
Fixed regression where the change in #7148 to repair ENUM handling in
PostgreSQL broke the use case of an empty ARRAY of ENUM, preventing rows
that contained an empty array from being handled correctly when fetching results.

-mysql
Fixed regression in asyncmy dialect caused by #7567 where removal of the
PyMySQL dependency broke binary columns, due to the asyncmy dialect not being
properly included within CI tests.

-mssql
Added support for FILESTREAM when using VARBINARY(max) in MSSQL.

Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
---
 ...hon3-sqlalchemy_1.4.29.bb => python3-sqlalchemy_1.4.31.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-sqlalchemy_1.4.29.bb => python3-sqlalchemy_1.4.31.bb} (76%)

diff --git a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.29.bb b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.31.bb
similarity index 76%
rename from meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.29.bb
rename to meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.31.bb
index b535951c00..510bb7d9e4 100644
--- a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.29.bb
+++ b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.31.bb
@@ -2,9 +2,9 @@ DESCRIPTION = "Python SQL toolkit and Object Relational Mapper that gives \
 application developers the full power and flexibility of SQL"
 HOMEPAGE = "http://www.sqlalchemy.org/"
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=3359ed561ac16aaa25b6c6eff84df595"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=f4001d1ca15b69d096fa1b4fd1bdce79"
 
-SRC_URI[sha256sum] = "fa2bad14e1474ba649cfc969c1d2ec915dd3e79677f346bbfe08e93ef9020b39"
+SRC_URI[sha256sum] = "582b59d1e5780a447aada22b461e50b404a9dc05768da1d87368ad8190468418"
 
 PYPI_PACKAGE = "SQLAlchemy"
 inherit pypi setuptools3
-- 
2.25.1



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

* [PATCH 3/5] [oe] [meta-python] [PATCH] python3-oauthlib: upgrade 3.1.1 -> 3.2.0
  2022-02-10 10:25 [PATCH 1/5] [oe] [meta-python] [PATCH] python3-requests-oauthlib: upgrade 1.3.0 -> 1.3.1 XU Huan
  2022-02-10 10:25 ` [PATCH 2/5] [oe] [meta-python] [PATCH] python3-sqlalchemy: upgrade 1.4.29 -> 1.4.31 XU Huan
@ 2022-02-10 10:25 ` XU Huan
  2022-02-10 10:25 ` [PATCH 4/5] [oe] [meta-python] [PATCH] python3-pyudev: upgrade 0.22.0 -> 0.23.2 XU Huan
  2022-02-10 10:25 ` [PATCH 5/5] [oe] [meta-python] [PATCH] python3-pyopenssl: upgrade 21.0.0 -> 22.0.0 XU Huan
  3 siblings, 0 replies; 5+ messages in thread
From: XU Huan @ 2022-02-10 10:25 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Xu Huan

From: Xu Huan <xuhuan.fnst@fujitsu.com>

changelog:
===============================================================================

OAuth2.0 Client:
Add Device Authorization Flow for Web Application
Add PKCE support for Client
Fallback to none in case of wrong expires_at format.

OAuth2.0 Provider:
Add support for CORS to metadata endpoint.
Add support for CORS to token endpoint.
Remove comma after Bearer in WWW-Authenticate

OAuth2.0 Provider - OIDC:
Call save_token in Hybrid code flow
OIDC add support of refreshing ID Tokens with refresh_id_token
The RefreshTokenGrant modifiers now take the same arguments as the
AuthorizationCodeGrant modifiers (token, token_handler, request).

General:
Added Python 3.9, 3.10, 3.11
Improve Travis & Coverage

Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
---
 .../{python3-oauthlib_3.1.1.bb => python3-oauthlib_3.2.0.bb}    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-oauthlib_3.1.1.bb => python3-oauthlib_3.2.0.bb} (92%)

diff --git a/meta-python/recipes-devtools/python/python3-oauthlib_3.1.1.bb b/meta-python/recipes-devtools/python/python3-oauthlib_3.2.0.bb
similarity index 92%
rename from meta-python/recipes-devtools/python/python3-oauthlib_3.1.1.bb
rename to meta-python/recipes-devtools/python/python3-oauthlib_3.2.0.bb
index c2ec856fdb..3e5d957c4e 100644
--- a/meta-python/recipes-devtools/python/python3-oauthlib_3.1.1.bb
+++ b/meta-python/recipes-devtools/python/python3-oauthlib_3.2.0.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "https://github.com/idan/oauthlib"
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=abd2675e944a2011aed7e505290ba482"
 
-SRC_URI[sha256sum] = "8f0215fcc533dd8dd1bee6f4c412d4f0cd7297307d43ac61666389e3bc3198a3"
+SRC_URI[sha256sum] = "23a8208d75b902797ea29fd31fa80a15ed9dc2c6c16fe73f5d346f83f6fa27a2"
 
 inherit pypi setuptools3
 
-- 
2.25.1



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

* [PATCH 4/5] [oe] [meta-python] [PATCH] python3-pyudev: upgrade 0.22.0 -> 0.23.2
  2022-02-10 10:25 [PATCH 1/5] [oe] [meta-python] [PATCH] python3-requests-oauthlib: upgrade 1.3.0 -> 1.3.1 XU Huan
  2022-02-10 10:25 ` [PATCH 2/5] [oe] [meta-python] [PATCH] python3-sqlalchemy: upgrade 1.4.29 -> 1.4.31 XU Huan
  2022-02-10 10:25 ` [PATCH 3/5] [oe] [meta-python] [PATCH] python3-oauthlib: upgrade 3.1.1 -> 3.2.0 XU Huan
@ 2022-02-10 10:25 ` XU Huan
  2022-02-10 10:25 ` [PATCH 5/5] [oe] [meta-python] [PATCH] python3-pyopenssl: upgrade 21.0.0 -> 22.0.0 XU Huan
  3 siblings, 0 replies; 5+ messages in thread
From: XU Huan @ 2022-02-10 10:25 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Xu Huan

From: Xu Huan <xuhuan.fnst@fujitsu.com>

Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
---
 .../{python3-pyudev_0.22.0.bb => python3-pyudev_0.23.2.bb}      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pyudev_0.22.0.bb => python3-pyudev_0.23.2.bb} (84%)

diff --git a/meta-python/recipes-devtools/python/python3-pyudev_0.22.0.bb b/meta-python/recipes-devtools/python/python3-pyudev_0.23.2.bb
similarity index 84%
rename from meta-python/recipes-devtools/python/python3-pyudev_0.22.0.bb
rename to meta-python/recipes-devtools/python/python3-pyudev_0.23.2.bb
index dc70b482b1..183bf7273c 100644
--- a/meta-python/recipes-devtools/python/python3-pyudev_0.22.0.bb
+++ b/meta-python/recipes-devtools/python/python3-pyudev_0.23.2.bb
@@ -3,7 +3,7 @@ SUMMARY = "A libudev binding"
 LICENSE = "LGPLv2.1+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343"
 
-SRC_URI[sha256sum] = "69bb1beb7ac52855b6d1b9fe909eefb0017f38d917cba9939602c6880035b276"
+SRC_URI[sha256sum] = "32ae3585b320a51bc283e0a04000fd8a25599edb44541e2f5034f6afee5d15cc"
 
 inherit pypi setuptools3
 
-- 
2.25.1



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

* [PATCH 5/5] [oe] [meta-python] [PATCH] python3-pyopenssl: upgrade 21.0.0 -> 22.0.0
  2022-02-10 10:25 [PATCH 1/5] [oe] [meta-python] [PATCH] python3-requests-oauthlib: upgrade 1.3.0 -> 1.3.1 XU Huan
                   ` (2 preceding siblings ...)
  2022-02-10 10:25 ` [PATCH 4/5] [oe] [meta-python] [PATCH] python3-pyudev: upgrade 0.22.0 -> 0.23.2 XU Huan
@ 2022-02-10 10:25 ` XU Huan
  3 siblings, 0 replies; 5+ messages in thread
From: XU Huan @ 2022-02-10 10:25 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Xu Huan

From: Xu Huan <xuhuan.fnst@fujitsu.com>

changelog:
Drop support for Python 2.7. #1047
The minimum cryptography version is now 35.0.

Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
---
 ...{python3-pyopenssl_21.0.0.bb => python3-pyopenssl_22.0.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pyopenssl_21.0.0.bb => python3-pyopenssl_22.0.0.bb} (86%)

diff --git a/meta-python/recipes-devtools/python/python3-pyopenssl_21.0.0.bb b/meta-python/recipes-devtools/python/python3-pyopenssl_22.0.0.bb
similarity index 86%
rename from meta-python/recipes-devtools/python/python3-pyopenssl_21.0.0.bb
rename to meta-python/recipes-devtools/python/python3-pyopenssl_22.0.0.bb
index a7e0ae4b14..db0e809ef5 100644
--- a/meta-python/recipes-devtools/python/python3-pyopenssl_21.0.0.bb
+++ b/meta-python/recipes-devtools/python/python3-pyopenssl_22.0.0.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
 
 DEPENDS += "openssl ${PYTHON_PN}-cryptography"
 
-SRC_URI[sha256sum] = "5e2d8c5e46d0d865ae933bef5230090bdaf5506281e9eec60fa250ee80600cb3"
+SRC_URI[sha256sum] = "660b1b1425aac4a1bea1d94168a85d99f0b3144c869dd4390d27629d0087f1bf"
 
 PYPI_PACKAGE = "pyOpenSSL"
 inherit pypi setuptools3
-- 
2.25.1



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

end of thread, other threads:[~2022-02-10 10:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-10 10:25 [PATCH 1/5] [oe] [meta-python] [PATCH] python3-requests-oauthlib: upgrade 1.3.0 -> 1.3.1 XU Huan
2022-02-10 10:25 ` [PATCH 2/5] [oe] [meta-python] [PATCH] python3-sqlalchemy: upgrade 1.4.29 -> 1.4.31 XU Huan
2022-02-10 10:25 ` [PATCH 3/5] [oe] [meta-python] [PATCH] python3-oauthlib: upgrade 3.1.1 -> 3.2.0 XU Huan
2022-02-10 10:25 ` [PATCH 4/5] [oe] [meta-python] [PATCH] python3-pyudev: upgrade 0.22.0 -> 0.23.2 XU Huan
2022-02-10 10:25 ` [PATCH 5/5] [oe] [meta-python] [PATCH] python3-pyopenssl: upgrade 21.0.0 -> 22.0.0 XU Huan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.