All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-virtualization][PATCH 1/5] python3-paramiko: Upgrade 2.7.0 -> 2.7.2
@ 2021-04-09 16:31 Leon Anavi
  2021-04-09 16:31 ` [meta-virtualization][PATCH 2/5] python3-dotenv: Upgrade 0.13.0 -> 0.17.0 Leon Anavi
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Leon Anavi @ 2021-04-09 16:31 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Leon Anavi

Upgrade to release 2.7.2:

- Update our CI to catch issues with sdist generation,
  installation and testing.
- Add missing test suite fixtures directory to MANIFEST.in,
  reinstating the ability to run Paramiko's tests from an sdist
  tarball.
- Remove leading whitespace from OpenSSH RSA test suite static
  key fixture, to conform better to spec.
- Fix incorrect string formatting causing unhelpful error message
  annotation when using Kerberos/GSSAPI.
- Fix incorrectly swapped order of p and q numbers when loading
  OpenSSH-format RSA private keys. At minimum this should address
  a slowdown when using such keys, and it also means Paramiko
  works with Cryptography 3.1 and above (which complains
  strenuously when this problem appears).

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-paramiko_2.7.0.bb => python3-paramiko_2.7.2.bb}   | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename recipes-devtools/python/{python3-paramiko_2.7.0.bb => python3-paramiko_2.7.2.bb} (70%)

diff --git a/recipes-devtools/python/python3-paramiko_2.7.0.bb b/recipes-devtools/python/python3-paramiko_2.7.2.bb
similarity index 70%
rename from recipes-devtools/python/python3-paramiko_2.7.0.bb
rename to recipes-devtools/python/python3-paramiko_2.7.2.bb
index d03702c..3d05efb 100644
--- a/recipes-devtools/python/python3-paramiko_2.7.0.bb
+++ b/recipes-devtools/python/python3-paramiko_2.7.2.bb
@@ -5,8 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=fd0120fc2e9f841c73ac707a30389af5"
 
 inherit pypi setuptools3
 
-SRC_URI[md5sum] = "b130f3e1c3442d21c1a0c9ae17776f4e"
-SRC_URI[sha256sum] = "fba9c46340e3d690ad5a9d0dbf06677cd91425de3afa7e9c0c187298ee4ddd0d"
+SRC_URI[sha256sum] = "7f36f4ba2c0d81d219f4595e35f70d56cc94f9ac40a6acdf51d6ca210ce65035"
 
 RDEPENDS_${PN} += " \
     python3-bcrypt \
-- 
2.17.1


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

* [meta-virtualization][PATCH 2/5] python3-dotenv: Upgrade 0.13.0 -> 0.17.0
  2021-04-09 16:31 [meta-virtualization][PATCH 1/5] python3-paramiko: Upgrade 2.7.0 -> 2.7.2 Leon Anavi
@ 2021-04-09 16:31 ` Leon Anavi
  2021-04-09 16:31 ` [meta-virtualization][PATCH 3/5] python3-webob: Upgrade 1.8.5 -> 1.8.7 Leon Anavi
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Leon Anavi @ 2021-04-09 16:31 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Leon Anavi

Upgrade to release 0.17.0:

- Make dotenv get <key> only show the value, not key=value
- Add --override/--no-override option to dotenv run

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-dotenv_0.13.0.bb => python3-dotenv_0.17.0.bb}     | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename recipes-devtools/python/{python3-dotenv_0.13.0.bb => python3-dotenv_0.17.0.bb} (70%)

diff --git a/recipes-devtools/python/python3-dotenv_0.13.0.bb b/recipes-devtools/python/python3-dotenv_0.17.0.bb
similarity index 70%
rename from recipes-devtools/python/python3-dotenv_0.13.0.bb
rename to recipes-devtools/python/python3-dotenv_0.17.0.bb
index e7644cb..1fd13b7 100644
--- a/recipes-devtools/python/python3-dotenv_0.13.0.bb
+++ b/recipes-devtools/python/python3-dotenv_0.17.0.bb
@@ -7,7 +7,6 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=55ee2c3471d386636a719c8ccac40b31"
 
 PYPI_PACKAGE = "python-dotenv"
 
-SRC_URI[md5sum] = "3dfde58c6a5fbd41292c4039a68f70f4"
-SRC_URI[sha256sum] = "3b9909bc96b0edc6b01586e1eed05e71174ef4e04c71da5786370cebea53ad74"
+SRC_URI[sha256sum] = "471b782da0af10da1a80341e8438fca5fadeba2881c54360d5fd8d03d03a4f4a"
 
 inherit pypi setuptools3
-- 
2.17.1


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

* [meta-virtualization][PATCH 3/5] python3-webob: Upgrade 1.8.5 -> 1.8.7
  2021-04-09 16:31 [meta-virtualization][PATCH 1/5] python3-paramiko: Upgrade 2.7.0 -> 2.7.2 Leon Anavi
  2021-04-09 16:31 ` [meta-virtualization][PATCH 2/5] python3-dotenv: Upgrade 0.13.0 -> 0.17.0 Leon Anavi
@ 2021-04-09 16:31 ` Leon Anavi
  2021-04-09 16:31 ` [meta-virtualization][PATCH 4/5] python3-boto3: Upgrade 1.14.7 -> 1.17.48 Leon Anavi
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Leon Anavi @ 2021-04-09 16:31 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Leon Anavi

Upgrade to release 1.8.7:

- Decoding deflate-encoded responses now supports data which is
  packed in a zlib container as it is supposed to be. The old,
  non-standard behaviour is still supported.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../python/{python3-webob_1.8.5.bb => python3-webob_1.8.7.bb}  | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename recipes-devtools/python/{python3-webob_1.8.5.bb => python3-webob_1.8.7.bb} (67%)

diff --git a/recipes-devtools/python/python3-webob_1.8.5.bb b/recipes-devtools/python/python3-webob_1.8.7.bb
similarity index 67%
rename from recipes-devtools/python/python3-webob_1.8.5.bb
rename to recipes-devtools/python/python3-webob_1.8.7.bb
index 74a36e3..a51f8dd 100644
--- a/recipes-devtools/python/python3-webob_1.8.5.bb
+++ b/recipes-devtools/python/python3-webob_1.8.7.bb
@@ -6,8 +6,7 @@ LIC_FILES_CHKSUM = "file://docs/license.txt;md5=8ed3584bcc78c16da363747ccabc5af5
 
 PYPI_PACKAGE = "WebOb"
 
-SRC_URI[md5sum] = "1761f416e8cf53f6fb674149cc223bd1"
-SRC_URI[sha256sum] = "05aaab7975e0ee8af2026325d656e5ce14a71f1883c52276181821d6d5bf7086"
+SRC_URI[sha256sum] = "b64ef5141be559cfade448f044fa45c2260351edcb6a8ef6b7e00c7dcef0c323"
 
 inherit setuptools3 pypi
 
-- 
2.17.1


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

* [meta-virtualization][PATCH 4/5] python3-boto3: Upgrade 1.14.7 -> 1.17.48
  2021-04-09 16:31 [meta-virtualization][PATCH 1/5] python3-paramiko: Upgrade 2.7.0 -> 2.7.2 Leon Anavi
  2021-04-09 16:31 ` [meta-virtualization][PATCH 2/5] python3-dotenv: Upgrade 0.13.0 -> 0.17.0 Leon Anavi
  2021-04-09 16:31 ` [meta-virtualization][PATCH 3/5] python3-webob: Upgrade 1.8.5 -> 1.8.7 Leon Anavi
@ 2021-04-09 16:31 ` Leon Anavi
  2021-04-09 16:31 ` [meta-virtualization][PATCH 5/5] python3-newrelic: Upgrade 6.0.1.155 -> 6.2.0.156 Leon Anavi
  2021-04-14  2:49 ` [meta-virtualization][PATCH 1/5] python3-paramiko: Upgrade 2.7.0 -> 2.7.2 Bruce Ashfield
  4 siblings, 0 replies; 6+ messages in thread
From: Leon Anavi @ 2021-04-09 16:31 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Leon Anavi

Upgrade to release 1.17.48:

- api-change:lookoutequipment: [botocore] This release introduces
  support for Amazon Lookout for Equipment.
- api-change:kinesis-video-archived-media: [botocore]
  Documentation updates for archived.kinesisvideo
- api-change:robomaker: [botocore] This release allows RoboMaker
  customers to specify custom tools to run with their simulation
  job
- api-change:appstream: [botocore] This release provides support
  for image updates
- api-change:ram: [botocore] Documentation updates for AWS RAM
  resource sharing
- api-change:customer-profiles: [botocore] Documentation updates
  for Put-Integration API
- api-change:autoscaling: [botocore] Amazon EC2 Auto Scaling
  announces Warm Pools that help applications to scale out faster
  by pre-initializing EC2 instances and save money by requiring
  fewer continuously running instances

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-boto3_1.14.7.bb => python3-boto3_1.17.48.bb}      | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename recipes-devtools/python/{python3-boto3_1.14.7.bb => python3-boto3_1.17.48.bb} (75%)

diff --git a/recipes-devtools/python/python3-boto3_1.14.7.bb b/recipes-devtools/python/python3-boto3_1.17.48.bb
similarity index 75%
rename from recipes-devtools/python/python3-boto3_1.14.7.bb
rename to recipes-devtools/python/python3-boto3_1.17.48.bb
index f9e979e..fd2e479 100644
--- a/recipes-devtools/python/python3-boto3_1.14.7.bb
+++ b/recipes-devtools/python/python3-boto3_1.17.48.bb
@@ -9,7 +9,6 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93"
 
-SRC_URI[md5sum] = "fb8b77d4ac10a971570419dd3613196e"
-SRC_URI[sha256sum] = "4856c8cb4150b900cc7dccbdf16f542fb8c12e97b17639979e58760847f7cf35"
+SRC_URI[sha256sum] = "e86c15049dc07cb67e8b466795f004f1f23c1acf078d47283cd5e4a692a5aa37"
 
 inherit pypi setuptools3
-- 
2.17.1


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

* [meta-virtualization][PATCH 5/5] python3-newrelic: Upgrade 6.0.1.155 -> 6.2.0.156
  2021-04-09 16:31 [meta-virtualization][PATCH 1/5] python3-paramiko: Upgrade 2.7.0 -> 2.7.2 Leon Anavi
                   ` (2 preceding siblings ...)
  2021-04-09 16:31 ` [meta-virtualization][PATCH 4/5] python3-boto3: Upgrade 1.14.7 -> 1.17.48 Leon Anavi
@ 2021-04-09 16:31 ` Leon Anavi
  2021-04-14  2:49 ` [meta-virtualization][PATCH 1/5] python3-paramiko: Upgrade 2.7.0 -> 2.7.2 Bruce Ashfield
  4 siblings, 0 replies; 6+ messages in thread
From: Leon Anavi @ 2021-04-09 16:31 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Leon Anavi

Upgrade to release 6.2.0.156:

- Improved CPU metric sampling
- Improved memory metric sampling
- Increased custom attribute limit from 64 to 128
- Fixed a TypeError with Uvicorn and unix sockets
- Fixed a crash when using a FIPS compliant system with Cross
  Agent Tracing enabled

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...on3-newrelic_6.0.1.155.bb => python3-newrelic_6.2.0.156.bb} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename recipes-devtools/python/{python3-newrelic_6.0.1.155.bb => python3-newrelic_6.2.0.156.bb} (83%)

diff --git a/recipes-devtools/python/python3-newrelic_6.0.1.155.bb b/recipes-devtools/python/python3-newrelic_6.2.0.156.bb
similarity index 83%
rename from recipes-devtools/python/python3-newrelic_6.0.1.155.bb
rename to recipes-devtools/python/python3-newrelic_6.2.0.156.bb
index f79c99c..d3bbd9e 100644
--- a/recipes-devtools/python/python3-newrelic_6.0.1.155.bb
+++ b/recipes-devtools/python/python3-newrelic_6.2.0.156.bb
@@ -8,8 +8,7 @@ SECTION = "devel/python"
 LICENSE = "BSD-3-Clause & MIT & Python-2.0 & BSD-2-Clause & NewRelic"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=2b42edef8fa55315f34f2370b4715ca9"
 
-SRC_URI[md5sum] = "0acf701c37ceb590e2a12d358ced16d7"
-SRC_URI[sha256sum] = "e96689fc75eb2b1591903ad9e74225f5e1da734afcd3151d318c53f6635b5dda"
+SRC_URI[sha256sum] = "3dec4647de67609570c4e305f2b6432a00e0a0940a7ac69660ee92268b49d6e7"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* Re: [meta-virtualization][PATCH 1/5] python3-paramiko: Upgrade 2.7.0 -> 2.7.2
  2021-04-09 16:31 [meta-virtualization][PATCH 1/5] python3-paramiko: Upgrade 2.7.0 -> 2.7.2 Leon Anavi
                   ` (3 preceding siblings ...)
  2021-04-09 16:31 ` [meta-virtualization][PATCH 5/5] python3-newrelic: Upgrade 6.0.1.155 -> 6.2.0.156 Leon Anavi
@ 2021-04-14  2:49 ` Bruce Ashfield
  4 siblings, 0 replies; 6+ messages in thread
From: Bruce Ashfield @ 2021-04-14  2:49 UTC (permalink / raw)
  To: Leon Anavi; +Cc: meta-virtualization

merged.

Bruce

In message: [meta-virtualization][PATCH 1/5] python3-paramiko: Upgrade 2.7.0 -> 2.7.2
on 09/04/2021 Leon Anavi wrote:

> Upgrade to release 2.7.2:
> 
> - Update our CI to catch issues with sdist generation,
>   installation and testing.
> - Add missing test suite fixtures directory to MANIFEST.in,
>   reinstating the ability to run Paramiko's tests from an sdist
>   tarball.
> - Remove leading whitespace from OpenSSH RSA test suite static
>   key fixture, to conform better to spec.
> - Fix incorrect string formatting causing unhelpful error message
>   annotation when using Kerberos/GSSAPI.
> - Fix incorrectly swapped order of p and q numbers when loading
>   OpenSSH-format RSA private keys. At minimum this should address
>   a slowdown when using such keys, and it also means Paramiko
>   works with Cryptography 3.1 and above (which complains
>   strenuously when this problem appears).
> 
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
> ---
>  .../{python3-paramiko_2.7.0.bb => python3-paramiko_2.7.2.bb}   | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
>  rename recipes-devtools/python/{python3-paramiko_2.7.0.bb => python3-paramiko_2.7.2.bb} (70%)
> 
> diff --git a/recipes-devtools/python/python3-paramiko_2.7.0.bb b/recipes-devtools/python/python3-paramiko_2.7.2.bb
> similarity index 70%
> rename from recipes-devtools/python/python3-paramiko_2.7.0.bb
> rename to recipes-devtools/python/python3-paramiko_2.7.2.bb
> index d03702c..3d05efb 100644
> --- a/recipes-devtools/python/python3-paramiko_2.7.0.bb
> +++ b/recipes-devtools/python/python3-paramiko_2.7.2.bb
> @@ -5,8 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=fd0120fc2e9f841c73ac707a30389af5"
>  
>  inherit pypi setuptools3
>  
> -SRC_URI[md5sum] = "b130f3e1c3442d21c1a0c9ae17776f4e"
> -SRC_URI[sha256sum] = "fba9c46340e3d690ad5a9d0dbf06677cd91425de3afa7e9c0c187298ee4ddd0d"
> +SRC_URI[sha256sum] = "7f36f4ba2c0d81d219f4595e35f70d56cc94f9ac40a6acdf51d6ca210ce65035"
>  
>  RDEPENDS_${PN} += " \
>      python3-bcrypt \
> -- 
> 2.17.1
> 

> 
> 
> 



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

end of thread, other threads:[~2021-04-14  2:49 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-09 16:31 [meta-virtualization][PATCH 1/5] python3-paramiko: Upgrade 2.7.0 -> 2.7.2 Leon Anavi
2021-04-09 16:31 ` [meta-virtualization][PATCH 2/5] python3-dotenv: Upgrade 0.13.0 -> 0.17.0 Leon Anavi
2021-04-09 16:31 ` [meta-virtualization][PATCH 3/5] python3-webob: Upgrade 1.8.5 -> 1.8.7 Leon Anavi
2021-04-09 16:31 ` [meta-virtualization][PATCH 4/5] python3-boto3: Upgrade 1.14.7 -> 1.17.48 Leon Anavi
2021-04-09 16:31 ` [meta-virtualization][PATCH 5/5] python3-newrelic: Upgrade 6.0.1.155 -> 6.2.0.156 Leon Anavi
2021-04-14  2:49 ` [meta-virtualization][PATCH 1/5] python3-paramiko: Upgrade 2.7.0 -> 2.7.2 Bruce Ashfield

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.