All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/3] python3-traitlets: Upgrade 5.0.4 -> 5.0.5
@ 2020-10-22 14:17 Leon Anavi
  2020-10-22 14:17 ` [meta-python][PATCH 2/3] python3-sentry-sdk: Upgrade 0.19.0 -> 0.19.1 Leon Anavi
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Leon Anavi @ 2020-10-22 14:17 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 5.0.5:

- Support deprecated literals for sets, tuples on the command-line:
  nbconvert --TagRemovePreprocessor.remove_cell_tags='{"tag"}'
- Fix from_string_list for Tuples in general
- Fix support for List(default_value=None, allow_none=True) and
  other Container traits
- Fix help output for nested aliases and tuple traits

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...{python3-traitlets_5.0.4.bb => python3-traitlets_5.0.5.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-traitlets_5.0.4.bb => python3-traitlets_5.0.5.bb} (72%)

diff --git a/meta-python/recipes-devtools/python/python3-traitlets_5.0.4.bb b/meta-python/recipes-devtools/python/python3-traitlets_5.0.5.bb
similarity index 72%
rename from meta-python/recipes-devtools/python/python3-traitlets_5.0.4.bb
rename to meta-python/recipes-devtools/python/python3-traitlets_5.0.5.bb
index 194193f63e..53451cd3ce 100644
--- a/meta-python/recipes-devtools/python/python3-traitlets_5.0.4.bb
+++ b/meta-python/recipes-devtools/python/python3-traitlets_5.0.5.bb
@@ -6,8 +6,8 @@ LIC_FILES_CHKSUM = "file://COPYING.md;md5=eec4de4d599518742e54e75954e33b46"
 
 PYPI_PACKAGE = "traitlets"
 
-SRC_URI[md5sum] = "592dde72b6b706d09ea624cce9af3cf5"
-SRC_URI[sha256sum] = "86c9351f94f95de9db8a04ad8e892da299a088a64fd283f9f6f18770ae5eae1b"
+SRC_URI[md5sum] = "2ffe54aee5d0d87890127dd28ce3f6c4"
+SRC_URI[sha256sum] = "178f4ce988f69189f7e523337a3e11d91c786ded9360174a3d9ca83e79bc5396"
 
 RDEPENDS_${PN} = "\
     ${PYTHON_PN}-ipython-genutils \
-- 
2.17.1


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

* [meta-python][PATCH 2/3] python3-sentry-sdk: Upgrade 0.19.0 -> 0.19.1
  2020-10-22 14:17 [meta-python][PATCH 1/3] python3-traitlets: Upgrade 5.0.4 -> 5.0.5 Leon Anavi
@ 2020-10-22 14:17 ` Leon Anavi
  2020-10-28 15:20   ` [oe] " Trevor Gamblin
  2020-10-22 14:17 ` [meta-python][PATCH 3/3] python3-lxml: Upgrade 4.5.2 -> 4.6.1 Leon Anavi
  2020-10-28 15:19 ` [oe] [meta-python][PATCH 1/3] python3-traitlets: Upgrade 5.0.4 -> 5.0.5 Trevor Gamblin
  2 siblings, 1 reply; 6+ messages in thread
From: Leon Anavi @ 2020-10-22 14:17 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.19.1:

- Fix dependency check for blinker fixes
- Fix incorrect timeout warnings in AWS Lambda and GCP integrations

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...hon3-sentry-sdk_0.19.0.bb => python3-sentry-sdk_0.19.1.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-sentry-sdk_0.19.0.bb => python3-sentry-sdk_0.19.1.bb} (72%)

diff --git a/meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.0.bb b/meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.1.bb
similarity index 72%
rename from meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.0.bb
rename to meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.1.bb
index b03e76b7c1..2da9908e34 100644
--- a/meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.0.bb
+++ b/meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.1.bb
@@ -5,8 +5,8 @@ HOMEPAGE = "https://github.com/getsentry/sentry-python"
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=0c79f8d3c91fc847350efd28bfe0a341"
 
-SRC_URI[md5sum] = "5c988086e4c124380887b0d579081f33"
-SRC_URI[sha256sum] = "a3716e98a1285a74eeaea7418a5b8fb2d7568fa11b5fba389946f465876a4d44"
+SRC_URI[md5sum] = "1e6aabe30f4c86356d1d85a9beb0b05a"
+SRC_URI[sha256sum] = "5cf36eb6b1dc62d55f3c64289792cbaebc8ffa5a9da14474f49b46d20caa7fc8"
 
 PYPI_PACKAGE = "sentry-sdk"
 inherit pypi setuptools3
-- 
2.17.1


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

* [meta-python][PATCH 3/3] python3-lxml: Upgrade 4.5.2 -> 4.6.1
  2020-10-22 14:17 [meta-python][PATCH 1/3] python3-traitlets: Upgrade 5.0.4 -> 5.0.5 Leon Anavi
  2020-10-22 14:17 ` [meta-python][PATCH 2/3] python3-sentry-sdk: Upgrade 0.19.0 -> 0.19.1 Leon Anavi
@ 2020-10-22 14:17 ` Leon Anavi
  2020-10-28 15:20   ` [oe] " Trevor Gamblin
  2020-10-28 15:19 ` [oe] [meta-python][PATCH 1/3] python3-traitlets: Upgrade 5.0.4 -> 5.0.5 Trevor Gamblin
  2 siblings, 1 reply; 6+ messages in thread
From: Leon Anavi @ 2020-10-22 14:17 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 4.6.1:

- lxml.html.InputGetter supports __len__() to count the number of
  input fields.
- lxml.html.InputGetter has a new .items() method to ease
  processing all input fields.
- lxml.html.InputGetter.keys() now returns the field names in
  document order.
- GH-309: The API documentation is now generated using
  sphinx-apidoc.
- C14N 2.0 serialisation failed for unprefixed attributes when a
  default namespace was defined.
- TreeBuilder.close() raised AssertionError in some error cases
  where it should have raised XMLSyntaxError. It now raises a
  combined exception to keep up backwards compatibility, while
  switching to XMLSyntaxError as an interface.
- A vulnerability was discovered in the HTML Cleaner by Yaniv
  Nizry, which allowed JavaScript to pass through. The cleaner
  now removes more sneaky "style" content.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../python/{python3-lxml_4.5.2.bb => python3-lxml_4.6.1.bb}   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-lxml_4.5.2.bb => python3-lxml_4.6.1.bb} (93%)

diff --git a/meta-python/recipes-devtools/python/python3-lxml_4.5.2.bb b/meta-python/recipes-devtools/python/python3-lxml_4.6.1.bb
similarity index 93%
rename from meta-python/recipes-devtools/python/python3-lxml_4.5.2.bb
rename to meta-python/recipes-devtools/python/python3-lxml_4.6.1.bb
index 7e11a67e7f..af012e6300 100644
--- a/meta-python/recipes-devtools/python/python3-lxml_4.5.2.bb
+++ b/meta-python/recipes-devtools/python/python3-lxml_4.6.1.bb
@@ -18,8 +18,8 @@ LIC_FILES_CHKSUM = "file://LICENSES.txt;md5=e4c045ebad958ead4b48008f70838403 \
 
 DEPENDS += "libxml2 libxslt"
 
-SRC_URI[md5sum] = "83ad758eab6c254b3565715967d553a6"
-SRC_URI[sha256sum] = "cdc13a1682b2a6241080745b1953719e7fe0850b40a5c71ca574f090a1391df6"
+SRC_URI[md5sum] = "10924ab543397a06cb4cfaf9bdf0b80f"
+SRC_URI[sha256sum] = "c152b2e93b639d1f36ec5a8ca24cde4a8eefb2b6b83668fcd8e83a67badcb367"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH 1/3] python3-traitlets: Upgrade 5.0.4 -> 5.0.5
  2020-10-22 14:17 [meta-python][PATCH 1/3] python3-traitlets: Upgrade 5.0.4 -> 5.0.5 Leon Anavi
  2020-10-22 14:17 ` [meta-python][PATCH 2/3] python3-sentry-sdk: Upgrade 0.19.0 -> 0.19.1 Leon Anavi
  2020-10-22 14:17 ` [meta-python][PATCH 3/3] python3-lxml: Upgrade 4.5.2 -> 4.6.1 Leon Anavi
@ 2020-10-28 15:19 ` Trevor Gamblin
  2 siblings, 0 replies; 6+ messages in thread
From: Trevor Gamblin @ 2020-10-28 15:19 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1773 bytes --]


On 10/22/20 10:17 AM, Leon Anavi wrote:
> - Support deprecated literals for sets, tuples on the command-line:
>    nbconvert --TagRemovePreprocessor.remove_cell_tags='{"tag"}'
> - Fix from_string_list for Tuples in general
> - Fix support for List(default_value=None, allow_none=True) and
>    other Container traits
> - Fix help output for nested aliases and tuple traits
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...{python3-traitlets_5.0.4.bb => python3-traitlets_5.0.5.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-traitlets_5.0.4.bb => python3-traitlets_5.0.5.bb} (72%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-traitlets_5.0.4.bb b/meta-python/recipes-devtools/python/python3-traitlets_5.0.5.bb
> similarity index 72%
> rename from meta-python/recipes-devtools/python/python3-traitlets_5.0.4.bb
> rename to meta-python/recipes-devtools/python/python3-traitlets_5.0.5.bb
> index 194193f63e..53451cd3ce 100644
> --- a/meta-python/recipes-devtools/python/python3-traitlets_5.0.4.bb
> +++ b/meta-python/recipes-devtools/python/python3-traitlets_5.0.5.bb
> @@ -6,8 +6,8 @@ LIC_FILES_CHKSUM = "file://COPYING.md;md5=eec4de4d599518742e54e75954e33b46"
>   
>   PYPI_PACKAGE = "traitlets"
>   
> -SRC_URI[md5sum] = "592dde72b6b706d09ea624cce9af3cf5"
> -SRC_URI[sha256sum] = "86c9351f94f95de9db8a04ad8e892da299a088a64fd283f9f6f18770ae5eae1b"
> +SRC_URI[md5sum] = "2ffe54aee5d0d87890127dd28ce3f6c4"
> +SRC_URI[sha256sum] = "178f4ce988f69189f7e523337a3e11d91c786ded9360174a3d9ca83e79bc5396"
>   
>   RDEPENDS_${PN} = "\
>       ${PYTHON_PN}-ipython-genutils \
>
> 
>

[-- Attachment #2: Type: text/html, Size: 2678 bytes --]

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

* Re: [oe] [meta-python][PATCH 2/3] python3-sentry-sdk: Upgrade 0.19.0 -> 0.19.1
  2020-10-22 14:17 ` [meta-python][PATCH 2/3] python3-sentry-sdk: Upgrade 0.19.0 -> 0.19.1 Leon Anavi
@ 2020-10-28 15:20   ` Trevor Gamblin
  0 siblings, 0 replies; 6+ messages in thread
From: Trevor Gamblin @ 2020-10-28 15:20 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1612 bytes --]


On 10/22/20 10:17 AM, Leon Anavi wrote:
> - Fix dependency check for blinker fixes
> - Fix incorrect timeout warnings in AWS Lambda and GCP integrations
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...hon3-sentry-sdk_0.19.0.bb => python3-sentry-sdk_0.19.1.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-sentry-sdk_0.19.0.bb => python3-sentry-sdk_0.19.1.bb} (72%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.0.bb b/meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.1.bb
> similarity index 72%
> rename from meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.0.bb
> rename to meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.1.bb
> index b03e76b7c1..2da9908e34 100644
> --- a/meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.1.bb
> @@ -5,8 +5,8 @@ HOMEPAGE = "https://github.com/getsentry/sentry-python"
>   LICENSE = "BSD-2-Clause"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=0c79f8d3c91fc847350efd28bfe0a341"
>   
> -SRC_URI[md5sum] = "5c988086e4c124380887b0d579081f33"
> -SRC_URI[sha256sum] = "a3716e98a1285a74eeaea7418a5b8fb2d7568fa11b5fba389946f465876a4d44"
> +SRC_URI[md5sum] = "1e6aabe30f4c86356d1d85a9beb0b05a"
> +SRC_URI[sha256sum] = "5cf36eb6b1dc62d55f3c64289792cbaebc8ffa5a9da14474f49b46d20caa7fc8"
>   
>   PYPI_PACKAGE = "sentry-sdk"
>   inherit pypi setuptools3
>
> 
>

[-- Attachment #2: Type: text/html, Size: 2612 bytes --]

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

* Re: [oe] [meta-python][PATCH 3/3] python3-lxml: Upgrade 4.5.2 -> 4.6.1
  2020-10-22 14:17 ` [meta-python][PATCH 3/3] python3-lxml: Upgrade 4.5.2 -> 4.6.1 Leon Anavi
@ 2020-10-28 15:20   ` Trevor Gamblin
  0 siblings, 0 replies; 6+ messages in thread
From: Trevor Gamblin @ 2020-10-28 15:20 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2257 bytes --]


On 10/22/20 10:17 AM, Leon Anavi wrote:
> - lxml.html.InputGetter supports __len__() to count the number of
>    input fields.
> - lxml.html.InputGetter has a new .items() method to ease
>    processing all input fields.
> - lxml.html.InputGetter.keys() now returns the field names in
>    document order.
> - GH-309: The API documentation is now generated using
>    sphinx-apidoc.
> - C14N 2.0 serialisation failed for unprefixed attributes when a
>    default namespace was defined.
> - TreeBuilder.close() raised AssertionError in some error cases
>    where it should have raised XMLSyntaxError. It now raises a
>    combined exception to keep up backwards compatibility, while
>    switching to XMLSyntaxError as an interface.
> - A vulnerability was discovered in the HTML Cleaner by Yaniv
>    Nizry, which allowed JavaScript to pass through. The cleaner
>    now removes more sneaky "style" content.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/{python3-lxml_4.5.2.bb => python3-lxml_4.6.1.bb}   | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-lxml_4.5.2.bb => python3-lxml_4.6.1.bb} (93%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-lxml_4.5.2.bb b/meta-python/recipes-devtools/python/python3-lxml_4.6.1.bb
> similarity index 93%
> rename from meta-python/recipes-devtools/python/python3-lxml_4.5.2.bb
> rename to meta-python/recipes-devtools/python/python3-lxml_4.6.1.bb
> index 7e11a67e7f..af012e6300 100644
> --- a/meta-python/recipes-devtools/python/python3-lxml_4.5.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-lxml_4.6.1.bb
> @@ -18,8 +18,8 @@ LIC_FILES_CHKSUM = "file://LICENSES.txt;md5=e4c045ebad958ead4b48008f70838403 \
>   
>   DEPENDS += "libxml2 libxslt"
>   
> -SRC_URI[md5sum] = "83ad758eab6c254b3565715967d553a6"
> -SRC_URI[sha256sum] = "cdc13a1682b2a6241080745b1953719e7fe0850b40a5c71ca574f090a1391df6"
> +SRC_URI[md5sum] = "10924ab543397a06cb4cfaf9bdf0b80f"
> +SRC_URI[sha256sum] = "c152b2e93b639d1f36ec5a8ca24cde4a8eefb2b6b83668fcd8e83a67badcb367"
>   
>   inherit pypi setuptools3
>   
>
> 
>

[-- Attachment #2: Type: text/html, Size: 3130 bytes --]

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

end of thread, other threads:[~2020-10-28 15:20 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-22 14:17 [meta-python][PATCH 1/3] python3-traitlets: Upgrade 5.0.4 -> 5.0.5 Leon Anavi
2020-10-22 14:17 ` [meta-python][PATCH 2/3] python3-sentry-sdk: Upgrade 0.19.0 -> 0.19.1 Leon Anavi
2020-10-28 15:20   ` [oe] " Trevor Gamblin
2020-10-22 14:17 ` [meta-python][PATCH 3/3] python3-lxml: Upgrade 4.5.2 -> 4.6.1 Leon Anavi
2020-10-28 15:20   ` [oe] " Trevor Gamblin
2020-10-28 15:19 ` [oe] [meta-python][PATCH 1/3] python3-traitlets: Upgrade 5.0.4 -> 5.0.5 Trevor Gamblin

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.