All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/2] python3-regex: Upgrade 2020.7.14 -> 2020.9.27
@ 2020-09-29  8:26 Leon Anavi
  2020-09-29  8:26 ` [meta-python][PATCH 2/2] python3-djangorestframework: Upgrade 3.11.1 -> 3.12.1 Leon Anavi
  2020-09-30 22:17 ` [oe] [meta-python][PATCH 1/2] python3-regex: Upgrade 2020.7.14 -> 2020.9.27 Trevor Gamblin
  0 siblings, 2 replies; 4+ messages in thread
From: Leon Anavi @ 2020-09-29  8:26 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2020.9.27:

- Fix Memory Error - regex.findall. The problem was caused by a
  lazy repeat looping forever, growing the backtracking stack.
  Greedy repeats were OK.

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

diff --git a/meta-python/recipes-devtools/python/python3-regex_2020.7.14.bb b/meta-python/recipes-devtools/python/python3-regex_2020.9.27.bb
similarity index 68%
rename from meta-python/recipes-devtools/python/python3-regex_2020.7.14.bb
rename to meta-python/recipes-devtools/python/python3-regex_2020.9.27.bb
index 5c608c989f..fb891f8716 100644
--- a/meta-python/recipes-devtools/python/python3-regex_2020.7.14.bb
+++ b/meta-python/recipes-devtools/python/python3-regex_2020.9.27.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=ee7987010dadc17745
 
 inherit pypi setuptools3
 
-SRC_URI[md5sum] = "c3a53929c3797289566368be4b6b964a"
-SRC_URI[sha256sum] = "3a3af27a8d23143c49a3420efe5b3f8cf1a48c6fc8bc6856b03f638abc1833bb"
+SRC_URI[md5sum] = "195f5e867e9f87a39f921ad0e5761a61"
+SRC_URI[sha256sum] = "a6f32aea4260dfe0e55dc9733ea162ea38f0ea86aa7d0f77b15beac5bf7b369d"
 
 BBCLASSEXTEND = "native nativesdk"
-- 
2.17.1


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

* [meta-python][PATCH 2/2] python3-djangorestframework: Upgrade 3.11.1 -> 3.12.1
  2020-09-29  8:26 [meta-python][PATCH 1/2] python3-regex: Upgrade 2020.7.14 -> 2020.9.27 Leon Anavi
@ 2020-09-29  8:26 ` Leon Anavi
  2020-09-30 22:18   ` [oe] " Trevor Gamblin
  2020-09-30 22:17 ` [oe] [meta-python][PATCH 1/2] python3-regex: Upgrade 2020.7.14 -> 2020.9.27 Trevor Gamblin
  1 sibling, 1 reply; 4+ messages in thread
From: Leon Anavi @ 2020-09-29  8:26 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 3.12.1:

- Add --file option to generateschema command.
- Support tags for OpenAPI schema generation. See the schema docs.
- Support customising the operation ID for schema generation. See
  the schema docs.
- Support OpenAPI components for schema generation. See the schema
  docs.
- The following methods on AutoSchema become public API:
  get_path_parameters, get_pagination_parameters,
  get_filter_parameters, get_request_body, get_responses,
  get_serializer, get_paginator, map_serializer, map_field,
  map_choice_field, map_field_validators, allows_filters.
  See the schema docs.
- Add support for Django 3.1's database-agnositic JSONField.
- SearchFilter now supports nested search on JSONField and
  HStoreField model fields.
- SearchFilter now supports searching on annotate() fields.
- The authtoken model no longer exposes the pk in the admin URL.
- Add __repr__ for Request instances.
- UTF-8 decoding with Latin-1 fallback for basic auth credentials.
- CharField treats surrogate characters as a validation failure.
- Don't include callables as default values in schemas.
- Improve ListField schema output to include all available child
  information.
- Allow default=False to be included for BooleanField schema
  outputs.
- Include "type" information in ChoiceField schema outputs.
- Include "type": "object" on schema objects.
- Don't include component in schema output for DELETE requests.
- Fix schema types for DecimalField.
- Fix schema generation for ObtainAuthToken view.
- Support passing context=... to view .get_serializer() methods.
- Pass custom code to PermissionDenied if permission class has one
  set.
- Include "example" in schema pagination output.
- Default status code of 201 on schema output for POST requests.
- Use camelCase for operation IDs in schema output.
- Warn if duplicate operation IDs exist in schema output.
- Improve handling of decimal type when mapping ChoiceField to a
  schema output.
- Disable YAML aliases for OpenAPI schema outputs.
- Fix action URL names for APIs included under a namespaced URL.
- Update jQuery version from 3.4 to 3.5.
- Fix UniqueTogether handling when serializer fields use
  source=....
- HTTP HEAD requests now set self.action correctly on a ViewSet
  instance.
- Return a valid OpenAPI schema for the case where no API schema
  paths exist.
- Include tests in package distribution.
- Allow type checkers to support annotations like
  ModelSerializer[Author].
- Don't include invalid charset=None portion in the request
  Content-Type header when using APIClient.
- Fix \Z/\z tokens in OpenAPI regexs.
- Fix PrimaryKeyRelatedField and HyperlinkedRelatedField when
  source field is actually a property.
- Token.generate_key is now a class method.
- @action warns if method is wrapped in a decorator that does not
  preserve information using @functools.wraps.
- Add TokenProxy migration.

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

diff --git a/meta-python/recipes-devtools/python/python3-djangorestframework_3.11.1.bb b/meta-python/recipes-devtools/python/python3-djangorestframework_3.12.1.bb
similarity index 71%
rename from meta-python/recipes-devtools/python/python3-djangorestframework_3.11.1.bb
rename to meta-python/recipes-devtools/python/python3-djangorestframework_3.12.1.bb
index 81f55ff9e7..60bdbaa9ec 100644
--- a/meta-python/recipes-devtools/python/python3-djangorestframework_3.11.1.bb
+++ b/meta-python/recipes-devtools/python/python3-djangorestframework_3.12.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] = "c8ea3e4c3c0d705acf70184faeb2b696"
-SRC_URI[sha256sum] = "6dd02d5a4bd2516fb93f80360673bf540c3b6641fec8766b1da2870a5aa00b32"
+SRC_URI[md5sum] = "47d5ea46923a131c5fbefeb610c6ce2c"
+SRC_URI[sha256sum] = "d54452aedebb4b650254ca092f9f4f5df947cb1de6ab245d817b08b4f4156249"
 PYPI_PACKAGE = "djangorestframework"
 
 inherit pypi setuptools3
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH 1/2] python3-regex: Upgrade 2020.7.14 -> 2020.9.27
  2020-09-29  8:26 [meta-python][PATCH 1/2] python3-regex: Upgrade 2020.7.14 -> 2020.9.27 Leon Anavi
  2020-09-29  8:26 ` [meta-python][PATCH 2/2] python3-djangorestframework: Upgrade 3.11.1 -> 3.12.1 Leon Anavi
@ 2020-09-30 22:17 ` Trevor Gamblin
  1 sibling, 0 replies; 4+ messages in thread
From: Trevor Gamblin @ 2020-09-30 22:17 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 9/29/20 4:26 AM, Leon Anavi wrote:
> Upgrade to release 2020.9.27:
>
> - Fix Memory Error - regex.findall. The problem was caused by a
>    lazy repeat looping forever, growing the backtracking stack.
>    Greedy repeats were OK.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...{python3-regex_2020.7.14.bb => python3-regex_2020.9.27.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-regex_2020.7.14.bb => python3-regex_2020.9.27.bb} (68%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-regex_2020.7.14.bb b/meta-python/recipes-devtools/python/python3-regex_2020.9.27.bb
> similarity index 68%
> rename from meta-python/recipes-devtools/python/python3-regex_2020.7.14.bb
> rename to meta-python/recipes-devtools/python/python3-regex_2020.9.27.bb
> index 5c608c989f..fb891f8716 100644
> --- a/meta-python/recipes-devtools/python/python3-regex_2020.7.14.bb
> +++ b/meta-python/recipes-devtools/python/python3-regex_2020.9.27.bb
> @@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=ee7987010dadc17745
>   
>   inherit pypi setuptools3
>   
> -SRC_URI[md5sum] = "c3a53929c3797289566368be4b6b964a"
> -SRC_URI[sha256sum] = "3a3af27a8d23143c49a3420efe5b3f8cf1a48c6fc8bc6856b03f638abc1833bb"
> +SRC_URI[md5sum] = "195f5e867e9f87a39f921ad0e5761a61"
> +SRC_URI[sha256sum] = "a6f32aea4260dfe0e55dc9733ea162ea38f0ea86aa7d0f77b15beac5bf7b369d"
>   
>   BBCLASSEXTEND = "native nativesdk"
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 2/2] python3-djangorestframework: Upgrade 3.11.1 -> 3.12.1
  2020-09-29  8:26 ` [meta-python][PATCH 2/2] python3-djangorestframework: Upgrade 3.11.1 -> 3.12.1 Leon Anavi
@ 2020-09-30 22:18   ` Trevor Gamblin
  0 siblings, 0 replies; 4+ messages in thread
From: Trevor Gamblin @ 2020-09-30 22:18 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 9/29/20 4:26 AM, Leon Anavi wrote:
> Upgrade to release 3.12.1:
>
> - Add --file option to generateschema command.
> - Support tags for OpenAPI schema generation. See the schema docs.
> - Support customising the operation ID for schema generation. See
>    the schema docs.
> - Support OpenAPI components for schema generation. See the schema
>    docs.
> - The following methods on AutoSchema become public API:
>    get_path_parameters, get_pagination_parameters,
>    get_filter_parameters, get_request_body, get_responses,
>    get_serializer, get_paginator, map_serializer, map_field,
>    map_choice_field, map_field_validators, allows_filters.
>    See the schema docs.
> - Add support for Django 3.1's database-agnositic JSONField.
> - SearchFilter now supports nested search on JSONField and
>    HStoreField model fields.
> - SearchFilter now supports searching on annotate() fields.
> - The authtoken model no longer exposes the pk in the admin URL.
> - Add __repr__ for Request instances.
> - UTF-8 decoding with Latin-1 fallback for basic auth credentials.
> - CharField treats surrogate characters as a validation failure.
> - Don't include callables as default values in schemas.
> - Improve ListField schema output to include all available child
>    information.
> - Allow default=False to be included for BooleanField schema
>    outputs.
> - Include "type" information in ChoiceField schema outputs.
> - Include "type": "object" on schema objects.
> - Don't include component in schema output for DELETE requests.
> - Fix schema types for DecimalField.
> - Fix schema generation for ObtainAuthToken view.
> - Support passing context=... to view .get_serializer() methods.
> - Pass custom code to PermissionDenied if permission class has one
>    set.
> - Include "example" in schema pagination output.
> - Default status code of 201 on schema output for POST requests.
> - Use camelCase for operation IDs in schema output.
> - Warn if duplicate operation IDs exist in schema output.
> - Improve handling of decimal type when mapping ChoiceField to a
>    schema output.
> - Disable YAML aliases for OpenAPI schema outputs.
> - Fix action URL names for APIs included under a namespaced URL.
> - Update jQuery version from 3.4 to 3.5.
> - Fix UniqueTogether handling when serializer fields use
>    source=....
> - HTTP HEAD requests now set self.action correctly on a ViewSet
>    instance.
> - Return a valid OpenAPI schema for the case where no API schema
>    paths exist.
> - Include tests in package distribution.
> - Allow type checkers to support annotations like
>    ModelSerializer[Author].
> - Don't include invalid charset=None portion in the request
>    Content-Type header when using APIClient.
> - Fix \Z/\z tokens in OpenAPI regexs.
> - Fix PrimaryKeyRelatedField and HyperlinkedRelatedField when
>    source field is actually a property.
> - Token.generate_key is now a class method.
> - @action warns if method is wrapped in a decorator that does not
>    preserve information using @functools.wraps.
> - Add TokenProxy migration.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...mework_3.11.1.bb => python3-djangorestframework_3.12.1.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-djangorestframework_3.11.1.bb => python3-djangorestframework_3.12.1.bb} (71%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-djangorestframework_3.11.1.bb b/meta-python/recipes-devtools/python/python3-djangorestframework_3.12.1.bb
> similarity index 71%
> rename from meta-python/recipes-devtools/python/python3-djangorestframework_3.11.1.bb
> rename to meta-python/recipes-devtools/python/python3-djangorestframework_3.12.1.bb
> index 81f55ff9e7..60bdbaa9ec 100644
> --- a/meta-python/recipes-devtools/python/python3-djangorestframework_3.11.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-djangorestframework_3.12.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] = "c8ea3e4c3c0d705acf70184faeb2b696"
> -SRC_URI[sha256sum] = "6dd02d5a4bd2516fb93f80360673bf540c3b6641fec8766b1da2870a5aa00b32"
> +SRC_URI[md5sum] = "47d5ea46923a131c5fbefeb610c6ce2c"
> +SRC_URI[sha256sum] = "d54452aedebb4b650254ca092f9f4f5df947cb1de6ab245d817b08b4f4156249"
>   PYPI_PACKAGE = "djangorestframework"
>   
>   inherit pypi setuptools3
>
> 
>

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

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

end of thread, other threads:[~2020-09-30 22:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-29  8:26 [meta-python][PATCH 1/2] python3-regex: Upgrade 2020.7.14 -> 2020.9.27 Leon Anavi
2020-09-29  8:26 ` [meta-python][PATCH 2/2] python3-djangorestframework: Upgrade 3.11.1 -> 3.12.1 Leon Anavi
2020-09-30 22:18   ` [oe] " Trevor Gamblin
2020-09-30 22:17 ` [oe] [meta-python][PATCH 1/2] python3-regex: Upgrade 2020.7.14 -> 2020.9.27 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.