All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/6] python3-sqlalchemy: Upgrade 1.3.18 -> 1.3.19
@ 2020-08-18 15:34 Leon Anavi
  2020-08-18 15:34 ` [meta-python][PATCH 2/6] python3-sentry-sdk: Upgrade 0.16.3 -> 0.16.5 Leon Anavi
                   ` (5 more replies)
  0 siblings, 6 replies; 13+ messages in thread
From: Leon Anavi @ 2020-08-18 15:34 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.3.19:

- orm: Adjusted the workings of the Mapper.all_orm_descriptors()
  accessor to represent the attributes in the order that they are
  located in a deterministic way, assuming the use of Python 3.6
  or higher which maintains the sorting order of class attributes
  based on how they were declared. This sorting is not guaranteed
  to match the declared order of attributes in all cases however;
  see the method documentation for the exact scheme.
- orm: The name of the virtual column used when using the
  AbstractConcreteBase and ConcreteBase classes can now be
  customized, to allow for models that have a column that is
  actually named type.
- sql: Repaired an issue where the "ORDER BY" clause rendering a
  label name rather than a complete expression, which is
  particularly important for SQL Server, would fail to occur if
  the expression were enclosed in a parenthesized grouping in some
  cases. This case has been added to test support. The change
  additionally adjusts the "automatically add ORDER BY columns
  when DISTINCT is present" behavior of ORM query, deprecated in
  1.4, to more accurately detect column expressions that are
  already present.
- mysql: The MySQL dialect will render FROM DUAL for a SELECT
  statement that has no FROM clause but has a WHERE clause. This
  allows things like "SELECT 1 WHERE EXISTS (subquery)" kinds of
  queries to be used as well as other use cases.
- sqlite: Applied a sweep through all included dialects to ensure
  names that contain single or double quotes are properly escaped
  when querying system tables, for all Inspector methods that
  accept object names as an argument (e.g. table names, view
  names, etc). SQLite and MSSQL contained two quoting issues that
  were repaired.
- mssql: Fixed bug where the mssql dialect incorrectly escaped
  object names that contained ‘]’ character(s).
- Added a **kw argument to the DeclarativeMeta.__init__() method.
  This allows a class to support the PEP 487 metaclass hook
  __init_subclass__.

For more details have a look at the complete changelog:
https://docs.sqlalchemy.org/en/13/changelog/changelog_13.html

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

diff --git a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.18.bb b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.19.bb
similarity index 78%
rename from meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.18.bb
rename to meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.19.bb
index a5e1737b0..52e7bf376 100644
--- a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.18.bb
+++ b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.19.bb
@@ -4,8 +4,8 @@ HOMEPAGE = "http://www.sqlalchemy.org/"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=c19467890539ff718c00a019c9c7a7b2"
 
-SRC_URI[md5sum] = "96e085d318297b1ad36ef2685f54287a"
-SRC_URI[sha256sum] = "da2fb75f64792c1fc64c82313a00c728a7c301efe6a60b7a9fe35b16b4368ce7"
+SRC_URI[md5sum] = "a5710b0aee19a743e513f3bf002072a8"
+SRC_URI[sha256sum] = "3bba2e9fbedb0511769780fe1d63007081008c5c2d7d715e91858c94dbaa260e"
 
 PYPI_PACKAGE = "SQLAlchemy"
 inherit pypi setuptools3
-- 
2.17.1


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

* [meta-python][PATCH 2/6] python3-sentry-sdk: Upgrade 0.16.3 -> 0.16.5
  2020-08-18 15:34 [meta-python][PATCH 1/6] python3-sqlalchemy: Upgrade 1.3.18 -> 1.3.19 Leon Anavi
@ 2020-08-18 15:34 ` Leon Anavi
  2020-08-19 18:06   ` [oe] " Trevor Gamblin
  2020-08-18 15:34 ` [meta-python][PATCH 3/6] python3-python-vlc: Upgrade 3.0.10114 -> 3.0.11115 Leon Anavi
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 13+ messages in thread
From: Leon Anavi @ 2020-08-18 15:34 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.16.5:

- Fix a bug that caused Django apps to crash if the view didn't
  have a __name__ attribute.
- Add experiment to avoid trunchating span descriptions. Initialize
  with init(_experiments={"smart_transaction_trimming": True}).
- Add a span around the Django view in transactions to distinguish
  its operations from middleware operations.

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

diff --git a/meta-python/recipes-devtools/python/python3-sentry-sdk_0.16.3.bb b/meta-python/recipes-devtools/python/python3-sentry-sdk_0.16.5.bb
similarity index 72%
rename from meta-python/recipes-devtools/python/python3-sentry-sdk_0.16.3.bb
rename to meta-python/recipes-devtools/python/python3-sentry-sdk_0.16.5.bb
index ee84f6b0b..ad01f6f5b 100644
--- a/meta-python/recipes-devtools/python/python3-sentry-sdk_0.16.3.bb
+++ b/meta-python/recipes-devtools/python/python3-sentry-sdk_0.16.5.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] = "41ac61676030401bcf22b47ac6a2709f"
-SRC_URI[sha256sum] = "21b17d6aa064c0fb703a7c00f77cf6c9c497cf2f83345c28892980a5e742d116"
+SRC_URI[md5sum] = "6d65fda758929b6a8d16e6030302c811"
+SRC_URI[sha256sum] = "e12eb1c2c01cd9e9cfe70608dbda4ef451f37ef0b7cbb92e5d43f87c341d6334"
 
 PYPI_PACKAGE = "sentry-sdk"
 inherit pypi setuptools3
-- 
2.17.1


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

* [meta-python][PATCH 3/6] python3-python-vlc: Upgrade 3.0.10114 -> 3.0.11115
  2020-08-18 15:34 [meta-python][PATCH 1/6] python3-sqlalchemy: Upgrade 1.3.18 -> 1.3.19 Leon Anavi
  2020-08-18 15:34 ` [meta-python][PATCH 2/6] python3-sentry-sdk: Upgrade 0.16.3 -> 0.16.5 Leon Anavi
@ 2020-08-18 15:34 ` Leon Anavi
  2020-08-18 17:11   ` [oe] " Khem Raj
  2020-08-19 18:06   ` Trevor Gamblin
  2020-08-18 15:34 ` [meta-python][PATCH 4/6] python3-pytest-asyncio: Upgrade 0.12.0 -> 0.14.0 Leon Anavi
                   ` (3 subsequent siblings)
  5 siblings, 2 replies; 13+ messages in thread
From: Leon Anavi @ 2020-08-18 15:34 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 3.0.11115:

- Position is now an enum
- Add Media.get_meta tests
- Fix typo in play_buffer example

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

diff --git a/meta-python/recipes-devtools/python/python3-python-vlc_3.0.10114.bb b/meta-python/recipes-devtools/python/python3-python-vlc_3.0.11115.bb
similarity index 65%
rename from meta-python/recipes-devtools/python/python3-python-vlc_3.0.10114.bb
rename to meta-python/recipes-devtools/python/python3-python-vlc_3.0.11115.bb
index 7f8affb4f..014509d55 100644
--- a/meta-python/recipes-devtools/python/python3-python-vlc_3.0.10114.bb
+++ b/meta-python/recipes-devtools/python/python3-python-vlc_3.0.11115.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "wiki.videolan.org/PythonBinding"
 LICENSE = "LGPL-2.0"
 LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
 
-SRC_URI[md5sum] = "17dba9a55903cdcae10814080fcadb8f"
-SRC_URI[sha256sum] = "c1a8a295bea8277fa3d9a07dcdf873fe18c5f11a0e4d1f618df47c316fe0003b"
+SRC_URI[md5sum] = "422fd025294af2e55dfdcf9bc7d7dbac"
+SRC_URI[sha256sum] = "a4d3bdddfce84a8fb1b2d5447193a0239c55c16ca246e5194d48efd59c4e236b"
 
 inherit pypi setuptools3
-- 
2.17.1


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

* [meta-python][PATCH 4/6] python3-pytest-asyncio: Upgrade 0.12.0 -> 0.14.0
  2020-08-18 15:34 [meta-python][PATCH 1/6] python3-sqlalchemy: Upgrade 1.3.18 -> 1.3.19 Leon Anavi
  2020-08-18 15:34 ` [meta-python][PATCH 2/6] python3-sentry-sdk: Upgrade 0.16.3 -> 0.16.5 Leon Anavi
  2020-08-18 15:34 ` [meta-python][PATCH 3/6] python3-python-vlc: Upgrade 3.0.10114 -> 3.0.11115 Leon Anavi
@ 2020-08-18 15:34 ` Leon Anavi
  2020-08-19 18:06   ` [oe] " Trevor Gamblin
  2020-08-18 15:34 ` [meta-python][PATCH 5/6] python3-djangorestframework: Consolidate in a single file Leon Anavi
                   ` (2 subsequent siblings)
  5 siblings, 1 reply; 13+ messages in thread
From: Leon Anavi @ 2020-08-18 15:34 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.14.0:

- event_loop fixture behavior now is coherent on all scopes.

License-Update: Use file LICENSE to check the license.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...st-asyncio_0.12.0.bb => python3-pytest-asyncio_0.14.0.bb} | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-pytest-asyncio_0.12.0.bb => python3-pytest-asyncio_0.14.0.bb} (54%)

diff --git a/meta-python/recipes-devtools/python/python3-pytest-asyncio_0.12.0.bb b/meta-python/recipes-devtools/python/python3-pytest-asyncio_0.14.0.bb
similarity index 54%
rename from meta-python/recipes-devtools/python/python3-pytest-asyncio_0.12.0.bb
rename to meta-python/recipes-devtools/python/python3-pytest-asyncio_0.14.0.bb
index d83c42de3..1e94c25f7 100644
--- a/meta-python/recipes-devtools/python/python3-pytest-asyncio_0.12.0.bb
+++ b/meta-python/recipes-devtools/python/python3-pytest-asyncio_0.14.0.bb
@@ -1,9 +1,10 @@
 DESCRIPTION = "pytest-asyncio is an Apache2 licensed library, written in Python, for testing asyncio code with pytest"
 
 LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = "file://README.rst;md5=3faed73a08162b5b5367cdcaee996f75"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=d2794c0df5b907fdace235a619d80314"
 
-SRC_URI[sha256sum] = "475bd2f3dc0bc11d2463656b3cbaafdbec5a47b47508ea0b329ee693040eebd2"
+SRC_URI[md5sum] = "b63593bc08f445f6e3f14c34128a68ed"
+SRC_URI[sha256sum] = "9882c0c6b24429449f5f969a5158b528f39bde47dc32e85b9f0403965017e700"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 5/6] python3-djangorestframework: Consolidate in a single file
  2020-08-18 15:34 [meta-python][PATCH 1/6] python3-sqlalchemy: Upgrade 1.3.18 -> 1.3.19 Leon Anavi
                   ` (2 preceding siblings ...)
  2020-08-18 15:34 ` [meta-python][PATCH 4/6] python3-pytest-asyncio: Upgrade 0.12.0 -> 0.14.0 Leon Anavi
@ 2020-08-18 15:34 ` Leon Anavi
  2020-08-19 18:07   ` [oe] " Trevor Gamblin
  2020-08-18 15:34 ` [meta-python][PATCH 6/6] python3-djangorestframework: Upgrade 3.9.0 -> 3.11.1 Leon Anavi
  2020-08-19 18:06 ` [oe] [meta-python][PATCH 1/6] python3-sqlalchemy: Upgrade 1.3.18 -> 1.3.19 Trevor Gamblin
  5 siblings, 1 reply; 13+ messages in thread
From: Leon Anavi @ 2020-08-18 15:34 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Consolidate inc and bb files into a single bb file.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../python/python-djangorestframework.inc      | 16 ----------------
 .../python3-djangorestframework_3.9.0.bb       | 18 ++++++++++++++++--
 2 files changed, 16 insertions(+), 18 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-djangorestframework.inc

diff --git a/meta-python/recipes-devtools/python/python-djangorestframework.inc b/meta-python/recipes-devtools/python/python-djangorestframework.inc
deleted file mode 100644
index 8551a8341..000000000
--- a/meta-python/recipes-devtools/python/python-djangorestframework.inc
+++ /dev/null
@@ -1,16 +0,0 @@
-SUMMARY =  "djangorestframework"
-DESCRIPTION = "pip3 install djangorestframework"
-HOMEPAGE = "https://pypi.python.org/pypi/djangorestframework"
-
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE.md;md5=7879a5a716147a784f7e524c9cf103c1"
-
-SRC_URI[md5sum] = "0d481bf8dbb87bb927b46798edc1a9bd"
-SRC_URI[sha256sum] = "607865b0bb1598b153793892101d881466bd5a991de12bd6229abb18b1c86136"
-PYPI_PACKAGE = "djangorestframework"
-
-inherit pypi
-
-RDEPENDS_${PN} += "\
-    ${PYTHON_PN}-django \
-"
\ No newline at end of file
diff --git a/meta-python/recipes-devtools/python/python3-djangorestframework_3.9.0.bb b/meta-python/recipes-devtools/python/python3-djangorestframework_3.9.0.bb
index 9ed6d1726..438a5e19a 100644
--- a/meta-python/recipes-devtools/python/python3-djangorestframework_3.9.0.bb
+++ b/meta-python/recipes-devtools/python/python3-djangorestframework_3.9.0.bb
@@ -1,2 +1,16 @@
-require python-djangorestframework.inc
-inherit setuptools3
\ No newline at end of file
+SUMMARY =  "djangorestframework"
+DESCRIPTION = "pip3 install djangorestframework"
+HOMEPAGE = "https://pypi.python.org/pypi/djangorestframework"
+
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE.md;md5=7879a5a716147a784f7e524c9cf103c1"
+
+SRC_URI[md5sum] = "0d481bf8dbb87bb927b46798edc1a9bd"
+SRC_URI[sha256sum] = "607865b0bb1598b153793892101d881466bd5a991de12bd6229abb18b1c86136"
+PYPI_PACKAGE = "djangorestframework"
+
+inherit pypi setuptools3
+
+RDEPENDS_${PN} += "\
+    ${PYTHON_PN}-django \
+"
-- 
2.17.1


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

* [meta-python][PATCH 6/6] python3-djangorestframework: Upgrade 3.9.0 -> 3.11.1
  2020-08-18 15:34 [meta-python][PATCH 1/6] python3-sqlalchemy: Upgrade 1.3.18 -> 1.3.19 Leon Anavi
                   ` (3 preceding siblings ...)
  2020-08-18 15:34 ` [meta-python][PATCH 5/6] python3-djangorestframework: Consolidate in a single file Leon Anavi
@ 2020-08-18 15:34 ` Leon Anavi
  2020-08-19 18:07   ` [oe] " Trevor Gamblin
  2020-08-19 18:06 ` [oe] [meta-python][PATCH 1/6] python3-sqlalchemy: Upgrade 1.3.18 -> 1.3.19 Trevor Gamblin
  5 siblings, 1 reply; 13+ messages in thread
From: Leon Anavi @ 2020-08-18 15:34 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 3.11.1:

- OpenAPI schema generation improvements
- Validator / Default context improvements
- Supported Python versions are now: 3.5, 3.6, 3.7, and 3.8
- Supported Django versions are now: 1.11, 2.0, 2.1, 2.2, and 3.0

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

diff --git a/meta-python/recipes-devtools/python/python3-djangorestframework_3.9.0.bb b/meta-python/recipes-devtools/python/python3-djangorestframework_3.11.1.bb
similarity index 71%
rename from meta-python/recipes-devtools/python/python3-djangorestframework_3.9.0.bb
rename to meta-python/recipes-devtools/python/python3-djangorestframework_3.11.1.bb
index 438a5e19a..81f55ff9e 100644
--- a/meta-python/recipes-devtools/python/python3-djangorestframework_3.9.0.bb
+++ b/meta-python/recipes-devtools/python/python3-djangorestframework_3.11.1.bb
@@ -5,8 +5,8 @@ HOMEPAGE = "https://pypi.python.org/pypi/djangorestframework"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE.md;md5=7879a5a716147a784f7e524c9cf103c1"
 
-SRC_URI[md5sum] = "0d481bf8dbb87bb927b46798edc1a9bd"
-SRC_URI[sha256sum] = "607865b0bb1598b153793892101d881466bd5a991de12bd6229abb18b1c86136"
+SRC_URI[md5sum] = "c8ea3e4c3c0d705acf70184faeb2b696"
+SRC_URI[sha256sum] = "6dd02d5a4bd2516fb93f80360673bf540c3b6641fec8766b1da2870a5aa00b32"
 PYPI_PACKAGE = "djangorestframework"
 
 inherit pypi setuptools3
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH 3/6] python3-python-vlc: Upgrade 3.0.10114 -> 3.0.11115
  2020-08-18 15:34 ` [meta-python][PATCH 3/6] python3-python-vlc: Upgrade 3.0.10114 -> 3.0.11115 Leon Anavi
@ 2020-08-18 17:11   ` Khem Raj
  2020-08-19 18:06   ` Trevor Gamblin
  1 sibling, 0 replies; 13+ messages in thread
From: Khem Raj @ 2020-08-18 17:11 UTC (permalink / raw)
  To: Leon Anavi; +Cc: openembeded-devel

On Tue, Aug 18, 2020 at 8:35 AM Leon Anavi <leon.anavi@konsulko.com> wrote:
>
> Upgrade to release 3.0.11115:
>
> - Position is now an enum
> - Add Media.get_meta tests
> - Fix typo in play_buffer example
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
> ---
>  ...ython-vlc_3.0.10114.bb => python3-python-vlc_3.0.11115.bb} | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>  rename meta-python/recipes-devtools/python/{python3-python-vlc_3.0.10114.bb => python3-python-vlc_3.0.11115.bb} (65%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-python-vlc_3.0.10114.bb b/meta-python/recipes-devtools/python/python3-python-vlc_3.0.11115.bb
> similarity index 65%
> rename from meta-python/recipes-devtools/python/python3-python-vlc_3.0.10114.bb
> rename to meta-python/recipes-devtools/python/python3-python-vlc_3.0.11115.bb
> index 7f8affb4f..014509d55 100644
> --- a/meta-python/recipes-devtools/python/python3-python-vlc_3.0.10114.bb
> +++ b/meta-python/recipes-devtools/python/python3-python-vlc_3.0.11115.bb
> @@ -3,7 +3,7 @@ HOMEPAGE = "wiki.videolan.org/PythonBinding"
>  LICENSE = "LGPL-2.0"
>  LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
>
> -SRC_URI[md5sum] = "17dba9a55903cdcae10814080fcadb8f"
> -SRC_URI[sha256sum] = "c1a8a295bea8277fa3d9a07dcdf873fe18c5f11a0e4d1f618df47c316fe0003b"
> +SRC_URI[md5sum] = "422fd025294af2e55dfdcf9bc7d7dbac"

I think bitbake does not generate md5sums anymore, so perhaps its good
to drop them

> +SRC_URI[sha256sum] = "a4d3bdddfce84a8fb1b2d5447193a0239c55c16ca246e5194d48efd59c4e236b"
>
>  inherit pypi setuptools3
> --
> 2.17.1
>
> 

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

* Re: [oe] [meta-python][PATCH 1/6] python3-sqlalchemy: Upgrade 1.3.18 -> 1.3.19
  2020-08-18 15:34 [meta-python][PATCH 1/6] python3-sqlalchemy: Upgrade 1.3.18 -> 1.3.19 Leon Anavi
                   ` (4 preceding siblings ...)
  2020-08-18 15:34 ` [meta-python][PATCH 6/6] python3-djangorestframework: Upgrade 3.9.0 -> 3.11.1 Leon Anavi
@ 2020-08-19 18:06 ` Trevor Gamblin
  5 siblings, 0 replies; 13+ messages in thread
From: Trevor Gamblin @ 2020-08-19 18:06 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 8/18/20 11:34 AM, Leon Anavi wrote:
> Upgrade to release 1.3.19:
>
> - orm: Adjusted the workings of the Mapper.all_orm_descriptors()
>    accessor to represent the attributes in the order that they are
>    located in a deterministic way, assuming the use of Python 3.6
>    or higher which maintains the sorting order of class attributes
>    based on how they were declared. This sorting is not guaranteed
>    to match the declared order of attributes in all cases however;
>    see the method documentation for the exact scheme.
> - orm: The name of the virtual column used when using the
>    AbstractConcreteBase and ConcreteBase classes can now be
>    customized, to allow for models that have a column that is
>    actually named type.
> - sql: Repaired an issue where the "ORDER BY" clause rendering a
>    label name rather than a complete expression, which is
>    particularly important for SQL Server, would fail to occur if
>    the expression were enclosed in a parenthesized grouping in some
>    cases. This case has been added to test support. The change
>    additionally adjusts the "automatically add ORDER BY columns
>    when DISTINCT is present" behavior of ORM query, deprecated in
>    1.4, to more accurately detect column expressions that are
>    already present.
> - mysql: The MySQL dialect will render FROM DUAL for a SELECT
>    statement that has no FROM clause but has a WHERE clause. This
>    allows things like "SELECT 1 WHERE EXISTS (subquery)" kinds of
>    queries to be used as well as other use cases.
> - sqlite: Applied a sweep through all included dialects to ensure
>    names that contain single or double quotes are properly escaped
>    when querying system tables, for all Inspector methods that
>    accept object names as an argument (e.g. table names, view
>    names, etc). SQLite and MSSQL contained two quoting issues that
>    were repaired.
> - mssql: Fixed bug where the mssql dialect incorrectly escaped
>    object names that contained ‘]’ character(s).
> - Added a **kw argument to the DeclarativeMeta.__init__() method.
>    This allows a class to support the PEP 487 metaclass hook
>    __init_subclass__.
>
> For more details have a look at the complete changelog:
> https://docs.sqlalchemy.org/en/13/changelog/changelog_13.html
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...hon3-sqlalchemy_1.3.18.bb => python3-sqlalchemy_1.3.19.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-sqlalchemy_1.3.18.bb => python3-sqlalchemy_1.3.19.bb} (78%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.18.bb b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.19.bb
> similarity index 78%
> rename from meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.18.bb
> rename to meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.19.bb
> index a5e1737b0..52e7bf376 100644
> --- a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.18.bb
> +++ b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.19.bb
> @@ -4,8 +4,8 @@ HOMEPAGE = "http://www.sqlalchemy.org/"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=c19467890539ff718c00a019c9c7a7b2"
>   
> -SRC_URI[md5sum] = "96e085d318297b1ad36ef2685f54287a"
> -SRC_URI[sha256sum] = "da2fb75f64792c1fc64c82313a00c728a7c301efe6a60b7a9fe35b16b4368ce7"
> +SRC_URI[md5sum] = "a5710b0aee19a743e513f3bf002072a8"
> +SRC_URI[sha256sum] = "3bba2e9fbedb0511769780fe1d63007081008c5c2d7d715e91858c94dbaa260e"
>   
>   PYPI_PACKAGE = "SQLAlchemy"
>   inherit pypi setuptools3
>
> 

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

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

* Re: [oe] [meta-python][PATCH 2/6] python3-sentry-sdk: Upgrade 0.16.3 -> 0.16.5
  2020-08-18 15:34 ` [meta-python][PATCH 2/6] python3-sentry-sdk: Upgrade 0.16.3 -> 0.16.5 Leon Anavi
@ 2020-08-19 18:06   ` Trevor Gamblin
  0 siblings, 0 replies; 13+ messages in thread
From: Trevor Gamblin @ 2020-08-19 18:06 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 8/18/20 11:34 AM, Leon Anavi wrote:
> Upgrade to release 0.16.5:
>
> - Fix a bug that caused Django apps to crash if the view didn't
>    have a __name__ attribute.
> - Add experiment to avoid trunchating span descriptions. Initialize
>    with init(_experiments={"smart_transaction_trimming": True}).
> - Add a span around the Django view in transactions to distinguish
>    its operations from middleware operations.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...hon3-sentry-sdk_0.16.3.bb => python3-sentry-sdk_0.16.5.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-sentry-sdk_0.16.3.bb => python3-sentry-sdk_0.16.5.bb} (72%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-sentry-sdk_0.16.3.bb b/meta-python/recipes-devtools/python/python3-sentry-sdk_0.16.5.bb
> similarity index 72%
> rename from meta-python/recipes-devtools/python/python3-sentry-sdk_0.16.3.bb
> rename to meta-python/recipes-devtools/python/python3-sentry-sdk_0.16.5.bb
> index ee84f6b0b..ad01f6f5b 100644
> --- a/meta-python/recipes-devtools/python/python3-sentry-sdk_0.16.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-sentry-sdk_0.16.5.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] = "41ac61676030401bcf22b47ac6a2709f"
> -SRC_URI[sha256sum] = "21b17d6aa064c0fb703a7c00f77cf6c9c497cf2f83345c28892980a5e742d116"
> +SRC_URI[md5sum] = "6d65fda758929b6a8d16e6030302c811"
> +SRC_URI[sha256sum] = "e12eb1c2c01cd9e9cfe70608dbda4ef451f37ef0b7cbb92e5d43f87c341d6334"
>   
>   PYPI_PACKAGE = "sentry-sdk"
>   inherit pypi setuptools3
>
> 

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

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

* Re: [oe] [meta-python][PATCH 3/6] python3-python-vlc: Upgrade 3.0.10114 -> 3.0.11115
  2020-08-18 15:34 ` [meta-python][PATCH 3/6] python3-python-vlc: Upgrade 3.0.10114 -> 3.0.11115 Leon Anavi
  2020-08-18 17:11   ` [oe] " Khem Raj
@ 2020-08-19 18:06   ` Trevor Gamblin
  1 sibling, 0 replies; 13+ messages in thread
From: Trevor Gamblin @ 2020-08-19 18:06 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 8/18/20 11:34 AM, Leon Anavi wrote:
> Upgrade to release 3.0.11115:
>
> - Position is now an enum
> - Add Media.get_meta tests
> - Fix typo in play_buffer example
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...ython-vlc_3.0.10114.bb => python3-python-vlc_3.0.11115.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-python-vlc_3.0.10114.bb => python3-python-vlc_3.0.11115.bb} (65%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-python-vlc_3.0.10114.bb b/meta-python/recipes-devtools/python/python3-python-vlc_3.0.11115.bb
> similarity index 65%
> rename from meta-python/recipes-devtools/python/python3-python-vlc_3.0.10114.bb
> rename to meta-python/recipes-devtools/python/python3-python-vlc_3.0.11115.bb
> index 7f8affb4f..014509d55 100644
> --- a/meta-python/recipes-devtools/python/python3-python-vlc_3.0.10114.bb
> +++ b/meta-python/recipes-devtools/python/python3-python-vlc_3.0.11115.bb
> @@ -3,7 +3,7 @@ HOMEPAGE = "wiki.videolan.org/PythonBinding"
>   LICENSE = "LGPL-2.0"
>   LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
>   
> -SRC_URI[md5sum] = "17dba9a55903cdcae10814080fcadb8f"
> -SRC_URI[sha256sum] = "c1a8a295bea8277fa3d9a07dcdf873fe18c5f11a0e4d1f618df47c316fe0003b"
> +SRC_URI[md5sum] = "422fd025294af2e55dfdcf9bc7d7dbac"
> +SRC_URI[sha256sum] = "a4d3bdddfce84a8fb1b2d5447193a0239c55c16ca246e5194d48efd59c4e236b"
>   
>   inherit pypi setuptools3
>
> 

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

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

* Re: [oe] [meta-python][PATCH 4/6] python3-pytest-asyncio: Upgrade 0.12.0 -> 0.14.0
  2020-08-18 15:34 ` [meta-python][PATCH 4/6] python3-pytest-asyncio: Upgrade 0.12.0 -> 0.14.0 Leon Anavi
@ 2020-08-19 18:06   ` Trevor Gamblin
  0 siblings, 0 replies; 13+ messages in thread
From: Trevor Gamblin @ 2020-08-19 18:06 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 8/18/20 11:34 AM, Leon Anavi wrote:
> Upgrade to release 0.14.0:
>
> - event_loop fixture behavior now is coherent on all scopes.
>
> License-Update: Use file LICENSE to check the license.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...st-asyncio_0.12.0.bb => python3-pytest-asyncio_0.14.0.bb} | 5 +++--
>   1 file changed, 3 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-pytest-asyncio_0.12.0.bb => python3-pytest-asyncio_0.14.0.bb} (54%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pytest-asyncio_0.12.0.bb b/meta-python/recipes-devtools/python/python3-pytest-asyncio_0.14.0.bb
> similarity index 54%
> rename from meta-python/recipes-devtools/python/python3-pytest-asyncio_0.12.0.bb
> rename to meta-python/recipes-devtools/python/python3-pytest-asyncio_0.14.0.bb
> index d83c42de3..1e94c25f7 100644
> --- a/meta-python/recipes-devtools/python/python3-pytest-asyncio_0.12.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-pytest-asyncio_0.14.0.bb
> @@ -1,9 +1,10 @@
>   DESCRIPTION = "pytest-asyncio is an Apache2 licensed library, written in Python, for testing asyncio code with pytest"
>   
>   LICENSE = "Apache-2.0"
> -LIC_FILES_CHKSUM = "file://README.rst;md5=3faed73a08162b5b5367cdcaee996f75"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=d2794c0df5b907fdace235a619d80314"
>   
> -SRC_URI[sha256sum] = "475bd2f3dc0bc11d2463656b3cbaafdbec5a47b47508ea0b329ee693040eebd2"
> +SRC_URI[md5sum] = "b63593bc08f445f6e3f14c34128a68ed"
> +SRC_URI[sha256sum] = "9882c0c6b24429449f5f969a5158b528f39bde47dc32e85b9f0403965017e700"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 5/6] python3-djangorestframework: Consolidate in a single file
  2020-08-18 15:34 ` [meta-python][PATCH 5/6] python3-djangorestframework: Consolidate in a single file Leon Anavi
@ 2020-08-19 18:07   ` Trevor Gamblin
  0 siblings, 0 replies; 13+ messages in thread
From: Trevor Gamblin @ 2020-08-19 18:07 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 8/18/20 11:34 AM, Leon Anavi wrote:
> Consolidate inc and bb files into a single bb file.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/python-djangorestframework.inc      | 16 ----------------
>   .../python3-djangorestframework_3.9.0.bb       | 18 ++++++++++++++++--
>   2 files changed, 16 insertions(+), 18 deletions(-)
>   delete mode 100644 meta-python/recipes-devtools/python/python-djangorestframework.inc
>
> diff --git a/meta-python/recipes-devtools/python/python-djangorestframework.inc b/meta-python/recipes-devtools/python/python-djangorestframework.inc
> deleted file mode 100644
> index 8551a8341..000000000
> --- a/meta-python/recipes-devtools/python/python-djangorestframework.inc
> +++ /dev/null
> @@ -1,16 +0,0 @@
> -SUMMARY =  "djangorestframework"
> -DESCRIPTION = "pip3 install djangorestframework"
> -HOMEPAGE = "https://pypi.python.org/pypi/djangorestframework"
> -
> -LICENSE = "MIT"
> -LIC_FILES_CHKSUM = "file://LICENSE.md;md5=7879a5a716147a784f7e524c9cf103c1"
> -
> -SRC_URI[md5sum] = "0d481bf8dbb87bb927b46798edc1a9bd"
> -SRC_URI[sha256sum] = "607865b0bb1598b153793892101d881466bd5a991de12bd6229abb18b1c86136"
> -PYPI_PACKAGE = "djangorestframework"
> -
> -inherit pypi
> -
> -RDEPENDS_${PN} += "\
> -    ${PYTHON_PN}-django \
> -"
> \ No newline at end of file
> diff --git a/meta-python/recipes-devtools/python/python3-djangorestframework_3.9.0.bb b/meta-python/recipes-devtools/python/python3-djangorestframework_3.9.0.bb
> index 9ed6d1726..438a5e19a 100644
> --- a/meta-python/recipes-devtools/python/python3-djangorestframework_3.9.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-djangorestframework_3.9.0.bb
> @@ -1,2 +1,16 @@
> -require python-djangorestframework.inc
> -inherit setuptools3
> \ No newline at end of file
> +SUMMARY =  "djangorestframework"
> +DESCRIPTION = "pip3 install djangorestframework"
> +HOMEPAGE = "https://pypi.python.org/pypi/djangorestframework"
> +
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://LICENSE.md;md5=7879a5a716147a784f7e524c9cf103c1"
> +
> +SRC_URI[md5sum] = "0d481bf8dbb87bb927b46798edc1a9bd"
> +SRC_URI[sha256sum] = "607865b0bb1598b153793892101d881466bd5a991de12bd6229abb18b1c86136"
> +PYPI_PACKAGE = "djangorestframework"
> +
> +inherit pypi setuptools3
> +
> +RDEPENDS_${PN} += "\
> +    ${PYTHON_PN}-django \
> +"
>
> 

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

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

* Re: [oe] [meta-python][PATCH 6/6] python3-djangorestframework: Upgrade 3.9.0 -> 3.11.1
  2020-08-18 15:34 ` [meta-python][PATCH 6/6] python3-djangorestframework: Upgrade 3.9.0 -> 3.11.1 Leon Anavi
@ 2020-08-19 18:07   ` Trevor Gamblin
  0 siblings, 0 replies; 13+ messages in thread
From: Trevor Gamblin @ 2020-08-19 18:07 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 8/18/20 11:34 AM, Leon Anavi wrote:
> Upgrade to release 3.11.1:
>
> - OpenAPI schema generation improvements
> - Validator / Default context improvements
> - Supported Python versions are now: 3.5, 3.6, 3.7, and 3.8
> - Supported Django versions are now: 1.11, 2.0, 2.1, 2.2, and 3.0
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...amework_3.9.0.bb => python3-djangorestframework_3.11.1.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-djangorestframework_3.9.0.bb => python3-djangorestframework_3.11.1.bb} (71%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-djangorestframework_3.9.0.bb b/meta-python/recipes-devtools/python/python3-djangorestframework_3.11.1.bb
> similarity index 71%
> rename from meta-python/recipes-devtools/python/python3-djangorestframework_3.9.0.bb
> rename to meta-python/recipes-devtools/python/python3-djangorestframework_3.11.1.bb
> index 438a5e19a..81f55ff9e 100644
> --- a/meta-python/recipes-devtools/python/python3-djangorestframework_3.9.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-djangorestframework_3.11.1.bb
> @@ -5,8 +5,8 @@ HOMEPAGE = "https://pypi.python.org/pypi/djangorestframework"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE.md;md5=7879a5a716147a784f7e524c9cf103c1"
>   
> -SRC_URI[md5sum] = "0d481bf8dbb87bb927b46798edc1a9bd"
> -SRC_URI[sha256sum] = "607865b0bb1598b153793892101d881466bd5a991de12bd6229abb18b1c86136"
> +SRC_URI[md5sum] = "c8ea3e4c3c0d705acf70184faeb2b696"
> +SRC_URI[sha256sum] = "6dd02d5a4bd2516fb93f80360673bf540c3b6641fec8766b1da2870a5aa00b32"
>   PYPI_PACKAGE = "djangorestframework"
>   
>   inherit pypi setuptools3
>
> 

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

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

end of thread, other threads:[~2020-08-19 18:07 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-18 15:34 [meta-python][PATCH 1/6] python3-sqlalchemy: Upgrade 1.3.18 -> 1.3.19 Leon Anavi
2020-08-18 15:34 ` [meta-python][PATCH 2/6] python3-sentry-sdk: Upgrade 0.16.3 -> 0.16.5 Leon Anavi
2020-08-19 18:06   ` [oe] " Trevor Gamblin
2020-08-18 15:34 ` [meta-python][PATCH 3/6] python3-python-vlc: Upgrade 3.0.10114 -> 3.0.11115 Leon Anavi
2020-08-18 17:11   ` [oe] " Khem Raj
2020-08-19 18:06   ` Trevor Gamblin
2020-08-18 15:34 ` [meta-python][PATCH 4/6] python3-pytest-asyncio: Upgrade 0.12.0 -> 0.14.0 Leon Anavi
2020-08-19 18:06   ` [oe] " Trevor Gamblin
2020-08-18 15:34 ` [meta-python][PATCH 5/6] python3-djangorestframework: Consolidate in a single file Leon Anavi
2020-08-19 18:07   ` [oe] " Trevor Gamblin
2020-08-18 15:34 ` [meta-python][PATCH 6/6] python3-djangorestframework: Upgrade 3.9.0 -> 3.11.1 Leon Anavi
2020-08-19 18:07   ` [oe] " Trevor Gamblin
2020-08-19 18:06 ` [oe] [meta-python][PATCH 1/6] python3-sqlalchemy: Upgrade 1.3.18 -> 1.3.19 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.