Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python-marshmallow-docs-3.5.1-bp153.1.19 RPM for noarch

From OpenSuSE Leap 15.3 for noarch

Name: python-marshmallow-docs Distribution: SUSE Linux Enterprise 15 SP3
Version: 3.5.1 Vendor: openSUSE
Release: bp153.1.19 Build date: Sat Mar 6 11:07:59 2021
Group: Documentation/Other Build host: lamb04
Size: 2501502 Source RPM: python-marshmallow-3.5.1-bp153.1.19.src.rpm
Packager: https://bugs.opensuse.org
Url: https://marshmallow.readthedocs.io/
Summary: Documentation files for python-marshmallow
HTML Documentation and examples for python-marshmallow.

Provides

Requires

License

MIT AND BSD-3-Clause

Changelog

* 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

Files

/usr/share/doc/packages/python-marshmallow-docs
/usr/share/doc/packages/python-marshmallow-docs/examples
/usr/share/doc/packages/python-marshmallow-docs/examples/flask_example.py
/usr/share/doc/packages/python-marshmallow-docs/examples/inflection_example.py
/usr/share/doc/packages/python-marshmallow-docs/examples/package_json_example.py
/usr/share/doc/packages/python-marshmallow-docs/examples/peewee_example.py
/usr/share/doc/packages/python-marshmallow-docs/examples/textblob_example.py
/usr/share/doc/packages/python-marshmallow-docs/html
/usr/share/doc/packages/python-marshmallow-docs/html/_modules
/usr/share/doc/packages/python-marshmallow-docs/html/_modules/decimal.html
/usr/share/doc/packages/python-marshmallow-docs/html/_modules/index.html
/usr/share/doc/packages/python-marshmallow-docs/html/_modules/marshmallow
/usr/share/doc/packages/python-marshmallow-docs/html/_modules/marshmallow/class_registry.html
/usr/share/doc/packages/python-marshmallow-docs/html/_modules/marshmallow/decorators.html
/usr/share/doc/packages/python-marshmallow-docs/html/_modules/marshmallow/error_store.html
/usr/share/doc/packages/python-marshmallow-docs/html/_modules/marshmallow/exceptions.html
/usr/share/doc/packages/python-marshmallow-docs/html/_modules/marshmallow/fields.html
/usr/share/doc/packages/python-marshmallow-docs/html/_modules/marshmallow/schema.html
/usr/share/doc/packages/python-marshmallow-docs/html/_modules/marshmallow/utils.html
/usr/share/doc/packages/python-marshmallow-docs/html/_modules/marshmallow/validate.html
/usr/share/doc/packages/python-marshmallow-docs/html/_sources
/usr/share/doc/packages/python-marshmallow-docs/html/_sources/api_reference.rst.txt
/usr/share/doc/packages/python-marshmallow-docs/html/_sources/authors.rst.txt
/usr/share/doc/packages/python-marshmallow-docs/html/_sources/changelog.rst.txt
/usr/share/doc/packages/python-marshmallow-docs/html/_sources/code_of_conduct.rst.txt
/usr/share/doc/packages/python-marshmallow-docs/html/_sources/contributing.rst.txt
/usr/share/doc/packages/python-marshmallow-docs/html/_sources/custom_fields.rst.txt
/usr/share/doc/packages/python-marshmallow-docs/html/_sources/ecosystem.rst.txt
/usr/share/doc/packages/python-marshmallow-docs/html/_sources/examples.rst.txt
/usr/share/doc/packages/python-marshmallow-docs/html/_sources/extending.rst.txt
/usr/share/doc/packages/python-marshmallow-docs/html/_sources/index.rst.txt
/usr/share/doc/packages/python-marshmallow-docs/html/_sources/install.rst.txt
/usr/share/doc/packages/python-marshmallow-docs/html/_sources/kudos.rst.txt
/usr/share/doc/packages/python-marshmallow-docs/html/_sources/license.rst.txt
/usr/share/doc/packages/python-marshmallow-docs/html/_sources/nesting.rst.txt
/usr/share/doc/packages/python-marshmallow-docs/html/_sources/quickstart.rst.txt
/usr/share/doc/packages/python-marshmallow-docs/html/_sources/upgrading.rst.txt
/usr/share/doc/packages/python-marshmallow-docs/html/_sources/whos_using.rst.txt
/usr/share/doc/packages/python-marshmallow-docs/html/_sources/why.rst.txt
/usr/share/doc/packages/python-marshmallow-docs/html/_static
/usr/share/doc/packages/python-marshmallow-docs/html/_static/ajax-loader.gif
/usr/share/doc/packages/python-marshmallow-docs/html/_static/alabaster.css
/usr/share/doc/packages/python-marshmallow-docs/html/_static/basic.css
/usr/share/doc/packages/python-marshmallow-docs/html/_static/comment-bright.png
/usr/share/doc/packages/python-marshmallow-docs/html/_static/comment-close.png
/usr/share/doc/packages/python-marshmallow-docs/html/_static/comment.png
/usr/share/doc/packages/python-marshmallow-docs/html/_static/css
/usr/share/doc/packages/python-marshmallow-docs/html/_static/css/versionwarning.css
/usr/share/doc/packages/python-marshmallow-docs/html/_static/custom.css
/usr/share/doc/packages/python-marshmallow-docs/html/_static/doctools.js
/usr/share/doc/packages/python-marshmallow-docs/html/_static/documentation_options.js
/usr/share/doc/packages/python-marshmallow-docs/html/_static/down-pressed.png
/usr/share/doc/packages/python-marshmallow-docs/html/_static/down.png
/usr/share/doc/packages/python-marshmallow-docs/html/_static/file.png
/usr/share/doc/packages/python-marshmallow-docs/html/_static/jquery-3.2.1.js
/usr/share/doc/packages/python-marshmallow-docs/html/_static/jquery.js
/usr/share/doc/packages/python-marshmallow-docs/html/_static/language_data.js
/usr/share/doc/packages/python-marshmallow-docs/html/_static/marshmallow-logo.png
/usr/share/doc/packages/python-marshmallow-docs/html/_static/minus.png
/usr/share/doc/packages/python-marshmallow-docs/html/_static/plus.png
/usr/share/doc/packages/python-marshmallow-docs/html/_static/pygments.css
/usr/share/doc/packages/python-marshmallow-docs/html/_static/searchtools.js
/usr/share/doc/packages/python-marshmallow-docs/html/_static/underscore-1.3.1.js
/usr/share/doc/packages/python-marshmallow-docs/html/_static/underscore.js
/usr/share/doc/packages/python-marshmallow-docs/html/_static/up-pressed.png
/usr/share/doc/packages/python-marshmallow-docs/html/_static/up.png
/usr/share/doc/packages/python-marshmallow-docs/html/_static/websupport.js
/usr/share/doc/packages/python-marshmallow-docs/html/api_reference.html
/usr/share/doc/packages/python-marshmallow-docs/html/authors.html
/usr/share/doc/packages/python-marshmallow-docs/html/changelog.html
/usr/share/doc/packages/python-marshmallow-docs/html/code_of_conduct.html
/usr/share/doc/packages/python-marshmallow-docs/html/contributing.html
/usr/share/doc/packages/python-marshmallow-docs/html/custom_fields.html
/usr/share/doc/packages/python-marshmallow-docs/html/ecosystem.html
/usr/share/doc/packages/python-marshmallow-docs/html/examples.html
/usr/share/doc/packages/python-marshmallow-docs/html/extending.html
/usr/share/doc/packages/python-marshmallow-docs/html/genindex.html
/usr/share/doc/packages/python-marshmallow-docs/html/index.html
/usr/share/doc/packages/python-marshmallow-docs/html/install.html
/usr/share/doc/packages/python-marshmallow-docs/html/kudos.html
/usr/share/doc/packages/python-marshmallow-docs/html/license.html
/usr/share/doc/packages/python-marshmallow-docs/html/nesting.html
/usr/share/doc/packages/python-marshmallow-docs/html/objects.inv
/usr/share/doc/packages/python-marshmallow-docs/html/py-modindex.html
/usr/share/doc/packages/python-marshmallow-docs/html/quickstart.html
/usr/share/doc/packages/python-marshmallow-docs/html/search.html
/usr/share/doc/packages/python-marshmallow-docs/html/searchindex.js
/usr/share/doc/packages/python-marshmallow-docs/html/upgrading.html
/usr/share/doc/packages/python-marshmallow-docs/html/whos_using.html
/usr/share/doc/packages/python-marshmallow-docs/html/why.html


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 14:50:04 2024