All of lore.kernel.org
 help / color / mirror / Atom feed
* [oe] [meta-python] [PATCH] python3-fastjsonschema: upgrade 2.15.3 -> 2.16.1
@ 2022-07-22  1:35 XU Huan
  2022-07-22  1:35 ` [oe] [meta-python] [PATCH] python3-flask: upgrade 2.1.2 -> 2.1.3 XU Huan
  2022-07-22  1:35 ` [oe] [meta-python] [PATCH] python3-googleapis-common-protos: upgrade 1.56.3 -> 1.56.4 XU Huan
  0 siblings, 2 replies; 3+ messages in thread
From: XU Huan @ 2022-07-22  1:35 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Xu Huan

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

Add dependence python3-json

Changelog from 2.15.3 to 2.16.1
================================
* Fix uniqueItems when explicitly set to False
* Fix generating invalid code for some schemas using items
* Preserving full path in combination with $ref
* Improved error messages for oneOf and anyOf

Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
---
 ...stjsonschema_2.15.3.bb => python3-fastjsonschema_2.16.1.bb} | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-fastjsonschema_2.15.3.bb => python3-fastjsonschema_2.16.1.bb} (93%)

diff --git a/meta-python/recipes-devtools/python/python3-fastjsonschema_2.15.3.bb b/meta-python/recipes-devtools/python/python3-fastjsonschema_2.16.1.bb
similarity index 93%
rename from meta-python/recipes-devtools/python/python3-fastjsonschema_2.15.3.bb
rename to meta-python/recipes-devtools/python/python3-fastjsonschema_2.16.1.bb
index a2821c1177..bb6c1ee813 100644
--- a/meta-python/recipes-devtools/python/python3-fastjsonschema_2.15.3.bb
+++ b/meta-python/recipes-devtools/python/python3-fastjsonschema_2.16.1.bb
@@ -6,7 +6,7 @@ HOMEPAGE = "https://github.com/seznam/python-fastjsonschema"
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=18950e8362b69c0c617b42b8bd8e7532"
 
-SRCREV = "d03f3835da4899bdeb597a9d3f30a709e7c3254f"
+SRCREV = "98399bb4029b2d7020d8abd9770661a5b2c4f9f8"
 PYPI_SRC_URI = "git://github.com/horejsek/python-fastjsonschema;protocol=https;branch=master"
 
 SRC_URI += "file://run-ptest"
@@ -33,6 +33,7 @@ RDEPENDS:${PN} += "\
     python3-urllib3 \
     python3-numbers \
     python3-pickle \
+    python3-json \
     "
 
 BBCLASSEXTEND = "native nativesdk"
-- 
2.25.1



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

* [oe] [meta-python] [PATCH] python3-flask: upgrade 2.1.2 -> 2.1.3
  2022-07-22  1:35 [oe] [meta-python] [PATCH] python3-fastjsonschema: upgrade 2.15.3 -> 2.16.1 XU Huan
@ 2022-07-22  1:35 ` XU Huan
  2022-07-22  1:35 ` [oe] [meta-python] [PATCH] python3-googleapis-common-protos: upgrade 1.56.3 -> 1.56.4 XU Huan
  1 sibling, 0 replies; 3+ messages in thread
From: XU Huan @ 2022-07-22  1:35 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Xu Huan

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

Changelog:
=========
-  Inline some optional imports that are only used for certain CLI commands.
-  Relax type annotation for after_request functions.
-  instance_path for namespace packages uses the path closest to the imported submodule.
-  Clearer error message when render_template and render_template_string are
   used outside an application context.

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

diff --git a/meta-python/recipes-devtools/python/python3-flask_2.1.2.bb b/meta-python/recipes-devtools/python/python3-flask_2.1.3.bb
similarity index 87%
rename from meta-python/recipes-devtools/python/python3-flask_2.1.2.bb
rename to meta-python/recipes-devtools/python/python3-flask_2.1.3.bb
index 7d290a4fe3..95abddfd95 100644
--- a/meta-python/recipes-devtools/python/python3-flask_2.1.2.bb
+++ b/meta-python/recipes-devtools/python/python3-flask_2.1.3.bb
@@ -6,7 +6,7 @@ HOMEPAGE = "https://github.com/mitsuhiko/flask/"
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=ffeffa59c90c9c4a033c7574f8f3fb75"
 
-SRC_URI[sha256sum] = "315ded2ddf8a6281567edb27393010fe3406188bafbfe65a3339d5787d89e477"
+SRC_URI[sha256sum] = "15972e5017df0575c3d6c090ba168b6db90259e620ac8d7ea813a396bad5b6cb"
 
 PYPI_PACKAGE = "Flask"
 
-- 
2.25.1



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

* [oe] [meta-python] [PATCH] python3-googleapis-common-protos: upgrade 1.56.3 -> 1.56.4
  2022-07-22  1:35 [oe] [meta-python] [PATCH] python3-fastjsonschema: upgrade 2.15.3 -> 2.16.1 XU Huan
  2022-07-22  1:35 ` [oe] [meta-python] [PATCH] python3-flask: upgrade 2.1.2 -> 2.1.3 XU Huan
@ 2022-07-22  1:35 ` XU Huan
  1 sibling, 0 replies; 3+ messages in thread
From: XU Huan @ 2022-07-22  1:35 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Xu Huan

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

Bug Fixes
---------
    require python 3.7+ (#119) 

Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
---
 ...tos_1.56.3.bb => python3-googleapis-common-protos_1.56.4.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-googleapis-common-protos_1.56.3.bb => python3-googleapis-common-protos_1.56.4.bb} (80%)

diff --git a/meta-python/recipes-devtools/python/python3-googleapis-common-protos_1.56.3.bb b/meta-python/recipes-devtools/python/python3-googleapis-common-protos_1.56.4.bb
similarity index 80%
rename from meta-python/recipes-devtools/python/python3-googleapis-common-protos_1.56.3.bb
rename to meta-python/recipes-devtools/python/python3-googleapis-common-protos_1.56.4.bb
index 95823ea487..3f03933e06 100644
--- a/meta-python/recipes-devtools/python/python3-googleapis-common-protos_1.56.3.bb
+++ b/meta-python/recipes-devtools/python/python3-googleapis-common-protos_1.56.4.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7ca
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "6f1369b58ed6cf3a4b7054a44ebe8d03b29c309257583a2bbdc064cd1e4a1442"
+SRC_URI[sha256sum] = "c25873c47279387cfdcbdafa36149887901d36202cb645a0e4f29686bf6e4417"
 
 RDEPENDS:${PN} += "\
     ${PYTHON_PN}-grpcio \
-- 
2.25.1



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

end of thread, other threads:[~2022-07-22  1:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-22  1:35 [oe] [meta-python] [PATCH] python3-fastjsonschema: upgrade 2.15.3 -> 2.16.1 XU Huan
2022-07-22  1:35 ` [oe] [meta-python] [PATCH] python3-flask: upgrade 2.1.2 -> 2.1.3 XU Huan
2022-07-22  1:35 ` [oe] [meta-python] [PATCH] python3-googleapis-common-protos: upgrade 1.56.3 -> 1.56.4 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.