Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: python3-marshmallow | Distribution: SUSE Linux Enterprise 15 SP6 |
Version: 3.5.1 | Vendor: openSUSE |
Release: bp156.1.1 | Build date: Tue Jan 30 12:15:11 2024 |
Group: Development/Languages/Python | Build host: i04-ch4a |
Size: 533104 | Source RPM: python3-marshmallow-3.5.1-bp156.1.1.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://marshmallow.readthedocs.io/ | |
Summary: ORM/ODM/framework-agnostic library to convert datatypes from/to Python types |
marshmallow is an ORM/ODM/framework-agnostic library for converting complex datatypes, such as objects, to and from native Python datatypes.
MIT AND BSD-3-Clause
* Wed Apr 01 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 2019 Sebastian Wagner <sebix+novell.com@sebix.at> - Update to version 3.2.2: - Bug fixes: - Don't load fields for which ``load_only`` and ``dump_only`` are both ``True`` (:pr:`1448`). - Fix types in ``marshmallow.validate`` (:pr:`1446`). - Support: - Test against Python 3.8 (pr:`1431`). * Tue Oct 08 2019 Marketa Calabkova <mcalabkova@suse.com> - Update to 3.2.1 * Fix typing for Schema.dump[s] * Fix compatibility with Python < 3.5.3 * Fix bug that raised an uncaught error when a nested schema instance had an unpickleable object in its context * Fix propagating dot-delimited only and exclude parameters to nested schema instances * Few bug fixes * Wed Sep 11 2019 Tomáš Chvátal <tchvatal@suse.com> - Update to 3.0.3: * Handle when data_key is an empty string * Includes bug fix from 2.20.3 * Fix incorrect super() call in SchemaMeta.__init__ * Mon Aug 26 2019 Marketa Calabkova <mcalabkova@suse.com> - Update to 3.0.1 * Many changes, some of them breaking. For example: * Remove support for Python 2 (#1120). Only Python>=3.5 is supported. * Allow input value to be included in error messages for a number of fields. * Change ordering of keys and values arguments to fields.Dict. * Please read upstream changelog. - Drop upstreamed patches reproducible.patch and pytest5.patch * Wed Jul 31 2019 Tomáš Chvátal <tchvatal@suse.com> - Add patch to fix building with pytest5 from upstream git: * pytest5.patch * Wed Jul 24 2019 Tomáš Chvátal <tchvatal@suse.com> - Update to 2.19.5: * Fix deserializing ISO8601-formatted datetimes with less than 6-digit miroseconds (:issue:`1251`). Thanks :user:`diego-plan9` for reporting. * Microseconds no longer gets lost when deserializing datetimes without dateutil installed (:issue:`1147`). * Fix bug where nested fields in Meta.exclude would not work on multiple instantiations (:issue:`1212`). Thanks :user:`MHannila` for reporting. * Tue May 28 2019 Bernhard Wiedemann <bwiedemann@suse.com> - Add reproducible.patch to make build reproducible (boo#1047218) * Fri May 17 2019 Marketa Calabkova <mcalabkova@suse.com> - Update to version 2.19.2 * Handle OverflowError when (de)serializing large integers with fields.Float * Fri Apr 05 2019 Petr Gajdos <pgajdos@suse.com> - version update to 2.19.1 - Fix bug where ``Nested(many=True)`` would skip first element when serializing a generator (:issue:`1163`). Thanks :user:`khvn26` for the catch and patch. - A `RemovedInMarshmallow3` warning is raised when using `fields.FormattedString`. Use `fields.Method` or `fields.Function` instead (:issue:`1141`). - A ``ChangedInMarshmallow3Warning`` is no longer raised when ``strict=False`` (:issue:`1108`). Thanks :user:`Aegdesil` for reporting. - Add warnings for functions in ``marshmallow.utils`` that are removed in marshmallow 3. - Copying ``missing`` with ``copy.copy`` or ``copy.deepcopy`` will not duplicate it (:pr:`1099`). - Add ``marshmallow.__version_info__`` (:pr:`1074`). - Add warnings for API that is deprecated or changed to help users prepare for marshmallow 3 (:pr:`1075`). - Prevent memory leak when dynamically creating classes with ``type()`` (:issue:`732`). Thanks :user:`asmodehn` for writing the tests to reproduce this issue. - Prevent warning about importing from ``collections`` on Python 3.7 (:issue:`1027`). Thanks :user:`nkonin` for reporting and :user:`jmargeta` for the PR. - Remove spurious warning about implicit collection handling (:issue:`998`). Thanks :user:`lalvarezguillen` for reporting. - Allow username without password in basic auth part of the url in ``fields.Url`` (:pr:`982`). Thanks user:`alefnula` for the PR. - Prevent ``TypeError`` when a non-collection is passed to a ``Schema`` with ``many=True``. Instead, raise ``ValidationError`` with ``{'_schema': ['Invalid input type.']}`` (:issue:`906`). - Fix ``root`` attribute for nested container fields on list on inheriting schemas (:issue:`956`). Thanks :user:`bmcbu` for reporting. - Handle empty SQLAlchemy lazy lists gracefully when dumping (:issue:`948`). Thanks :user:`vke-code` for the catch and :user:`YuriHeupa` for the patch. - Respect ``load_from`` when reporting errors for ``@validates('field_name')`` (:issue:`748`). Thanks :user:`m-novikov` for the catch and patch. - Fix passing ``only`` as a string to ``nested`` when the passed field defines ``dump_to`` (:issue:`800`, :issue:`822`). Thanks :user:`deckar01` for the catch and patch. - Fix a race condition in validation when concurrent threads use the same ``Schema`` instance (:issue:`783`). Thanks :user:`yupeng0921` and :user:`lafrech` for the fix. - Fix serialization behavior of ``fields.List(fields.Integer(as_string=True))`` (:issue:`788`). Thanks :user:`cactus` for reporting and :user:`lafrech` for the fix. - Fix behavior of ``exclude`` parameter when passed from parent to nested schemas (:issue:`728`). Thanks :user:`timc13` for reporting and :user:`deckar01` for the fix. - :cve:`CVE-2018-17175`: Fix behavior when an empty list is passed as the ``only`` argument (:issue:`772`). Thanks :user:`deckar01` for reporting and thanks :user:`lafrech` for the fix. - Handle ``UnicodeDecodeError`` when deserializing ``bytes`` with a ``String`` field (:issue:`650`). Thanks :user:`dan-blanchard` for the suggestion and thanks :user:`4lissonsilveira` for the PR. - Add ``require_tld`` parameter to ``validate.URL`` (:issue:`664`). Thanks :user:`sduthil` for the suggestion and the PR. - added patches + python-marshmallow-no-version-warning.patch - deleted patches + patch-remove-unsupported-theme-option.patch (upstreamed) * Wed Dec 19 2018 Jan Engelhardt <jengelh@inai.de> - Use noun phrase in summary. * Tue Dec 04 2018 Matej Cepl <mcepl@suse.com> - Remove superfluous devel dependency for noarch package * Sat Aug 19 2017 sebix+novell.com@sebix.at - initial package
/usr/lib/python3.6/site-packages/marshmallow /usr/lib/python3.6/site-packages/marshmallow-3.5.1-py3.6.egg-info /usr/lib/python3.6/site-packages/marshmallow-3.5.1-py3.6.egg-info/PKG-INFO /usr/lib/python3.6/site-packages/marshmallow-3.5.1-py3.6.egg-info/SOURCES.txt /usr/lib/python3.6/site-packages/marshmallow-3.5.1-py3.6.egg-info/dependency_links.txt /usr/lib/python3.6/site-packages/marshmallow-3.5.1-py3.6.egg-info/not-zip-safe /usr/lib/python3.6/site-packages/marshmallow-3.5.1-py3.6.egg-info/requires.txt /usr/lib/python3.6/site-packages/marshmallow-3.5.1-py3.6.egg-info/top_level.txt /usr/lib/python3.6/site-packages/marshmallow/__init__.py /usr/lib/python3.6/site-packages/marshmallow/__pycache__ /usr/lib/python3.6/site-packages/marshmallow/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/marshmallow/__pycache__/__init__.cpython-36.pyc /usr/lib/python3.6/site-packages/marshmallow/__pycache__/base.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/marshmallow/__pycache__/base.cpython-36.pyc /usr/lib/python3.6/site-packages/marshmallow/__pycache__/class_registry.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/marshmallow/__pycache__/class_registry.cpython-36.pyc /usr/lib/python3.6/site-packages/marshmallow/__pycache__/decorators.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/marshmallow/__pycache__/decorators.cpython-36.pyc /usr/lib/python3.6/site-packages/marshmallow/__pycache__/error_store.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/marshmallow/__pycache__/error_store.cpython-36.pyc /usr/lib/python3.6/site-packages/marshmallow/__pycache__/exceptions.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/marshmallow/__pycache__/exceptions.cpython-36.pyc /usr/lib/python3.6/site-packages/marshmallow/__pycache__/fields.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/marshmallow/__pycache__/fields.cpython-36.pyc /usr/lib/python3.6/site-packages/marshmallow/__pycache__/orderedset.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/marshmallow/__pycache__/orderedset.cpython-36.pyc /usr/lib/python3.6/site-packages/marshmallow/__pycache__/schema.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/marshmallow/__pycache__/schema.cpython-36.pyc /usr/lib/python3.6/site-packages/marshmallow/__pycache__/types.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/marshmallow/__pycache__/types.cpython-36.pyc /usr/lib/python3.6/site-packages/marshmallow/__pycache__/utils.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/marshmallow/__pycache__/utils.cpython-36.pyc /usr/lib/python3.6/site-packages/marshmallow/__pycache__/validate.cpython-36.opt-1.pyc /usr/lib/python3.6/site-packages/marshmallow/__pycache__/validate.cpython-36.pyc /usr/lib/python3.6/site-packages/marshmallow/base.py /usr/lib/python3.6/site-packages/marshmallow/class_registry.py /usr/lib/python3.6/site-packages/marshmallow/decorators.py /usr/lib/python3.6/site-packages/marshmallow/error_store.py /usr/lib/python3.6/site-packages/marshmallow/exceptions.py /usr/lib/python3.6/site-packages/marshmallow/fields.py /usr/lib/python3.6/site-packages/marshmallow/orderedset.py /usr/lib/python3.6/site-packages/marshmallow/schema.py /usr/lib/python3.6/site-packages/marshmallow/types.py /usr/lib/python3.6/site-packages/marshmallow/utils.py /usr/lib/python3.6/site-packages/marshmallow/validate.py /usr/share/doc/packages/python3-marshmallow /usr/share/doc/packages/python3-marshmallow/AUTHORS.rst /usr/share/doc/packages/python3-marshmallow/CHANGELOG.rst /usr/share/doc/packages/python3-marshmallow/README.rst /usr/share/licenses/python3-marshmallow /usr/share/licenses/python3-marshmallow/LICENSE /usr/share/licenses/python3-marshmallow/NOTICE
Generated by rpm2html 1.8.1
Fabrice Bellet, Sun Mar 9 14:56:22 2025