Accepting request 790506 from home:pgajdos:python
- version update to 3.5.1 - Includes bug fix from 2.21.0. - Fix list of nullable nested fields ``List(Nested(Field, allow_none=True)`` (:issue:`1497`). Because this fix reverts an optimization introduced to speed-up serialization and deserialization of lists of nested fields, a negative impact on performance in this specific case is expected. - Improve type coverage (:issue:`1479`). Thanks :user:`Reskov`. - Fix typing for ``data`` param of ``Schema.load`` and ``ValidationError`` (:issue:`1492`). Thanks :user:`mehdigmira` for reporting and thanks :user:`dfirst` for the PR. - Remove unnecessary typecasts (:pr:`1500`). Thanks :user:`hukkinj1`. - Remove useless ``_serialize`` override in ``UUID`` field (:pr:`1489`). - ``fields.Nested`` may take a callable that returns a schema instance. Use this to resolve order-of-declaration issues when schemas nest each other (:issue:`1146`). - Passing the string ``"self"`` to ``fields.Nested`` is deprecated. Use a callable instead. - Fix typing for ``Number._format_num`` (:pr:`1466`). Thanks :user:`hukkinj1`. - Make mypy stricter and remove dead code (:pr:`1467`). Thanks again, :user:`hukkinj1`. OBS-URL: https://build.opensuse.org/request/show/790506 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-marshmallow?expand=0&rev=25
This commit is contained in:
parent
81d4d63b23
commit
141efcaa63
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1a358beb89c2b4d5555272065a9533591a3eb02f1b854f3c4002d88d8f2a1ddb
|
||||
size 167093
|
3
marshmallow-3.5.1.tar.gz
Normal file
3
marshmallow-3.5.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:90854221bbb1498d003a0c3cc9d8390259137551917961c8b5258c64026b2f85
|
||||
size 168839
|
@ -1,3 +1,24 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 1 09:10:03 UTC 2020 - pgajdos@suse.com
|
||||
|
||||
- version update to 3.5.1
|
||||
- Includes bug fix from 2.21.0.
|
||||
- Fix list of nullable nested fields ``List(Nested(Field, allow_none=True)``
|
||||
(:issue:`1497`). Because this fix reverts an optimization introduced to
|
||||
speed-up serialization and deserialization of lists of nested fields, a
|
||||
negative impact on performance in this specific case is expected.
|
||||
- Improve type coverage (:issue:`1479`). Thanks :user:`Reskov`.
|
||||
- Fix typing for ``data`` param of ``Schema.load`` and ``ValidationError`` (:issue:`1492`).
|
||||
Thanks :user:`mehdigmira` for reporting and thanks :user:`dfirst` for the PR.
|
||||
- Remove unnecessary typecasts (:pr:`1500`). Thanks :user:`hukkinj1`.
|
||||
- Remove useless ``_serialize`` override in ``UUID`` field (:pr:`1489`).
|
||||
- ``fields.Nested`` may take a callable that returns a schema instance.
|
||||
Use this to resolve order-of-declaration issues when schemas nest each other (:issue:`1146`).
|
||||
- Passing the string ``"self"`` to ``fields.Nested`` is deprecated.
|
||||
Use a callable instead.
|
||||
- Fix typing for ``Number._format_num`` (:pr:`1466`). Thanks :user:`hukkinj1`.
|
||||
- Make mypy stricter and remove dead code (:pr:`1467`). Thanks again, :user:`hukkinj1`.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 13 15:40:31 UTC 2019 - Sebastian Wagner <sebix+novell.com@sebix.at>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-marshmallow
|
||||
#
|
||||
# Copyright (c) 2019 SUSE LLC.
|
||||
# Copyright (c) 2020 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -19,7 +19,7 @@
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
%define skip_python2 1
|
||||
Name: python-marshmallow
|
||||
Version: 3.2.2
|
||||
Version: 3.5.1
|
||||
Release: 0
|
||||
Summary: ORM/ODM/framework-agnostic library to convert datatypes from/to Python types
|
||||
License: MIT AND BSD-3-Clause
|
||||
|
Loading…
x
Reference in New Issue
Block a user