2020-06-09 19:24:43 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Tue Jun 9 19:24:27 UTC 2020 - Dirk Mueller <dmueller@suse.com>
|
|
|
|
|
|
|
|
- update to 1.5.1
|
|
|
|
* Signature generation with `extra: allow` never uses a field name, #1418 by @prettywood
|
|
|
|
* Avoid mutating `Field` default value, #1412 by @prettywood
|
|
|
|
|
Accepting request 795387 from home:mnhauke
- Update to version 1.5
* Make includes/excludes arguments for .dict(), ._iter(), ...,
immutable
* Always use a field's real name with includes/excludes in
model._iter(), regardless of by_alias, #1397 by @AlexECX
* Update constr regex example to include start and end lines,
* Confirm that shallow model.copy() does make a shallow copy of
attributes
* Renaming model_name argument of main.create_model()
to __model_name to allow using model_name as a field name
* Replace raising of exception to silent passing for non-Var
attributes in mypy plugin
* Remove typing_extensions dependency for python 3.8
* Make SecretStr and SecretBytes initialization idempotent
* document making secret types dumpable using the json method
* fix card number length check in PaymentCardNumber,
PaymentCardBrand now inherits from str
* Have BaseModel inherit from Representation to make mypy happy
when overriding __str__
* Allow None as input to all optional list fields
* Add datetime field to default_factory example
* Allow subclasses of known types to be encoded with superclass
encoder
* Exclude exported fields from all elements of a list/tuple of
submodels/dicts with '__all__', #1286 by @masalim2
* Add pydantic.color.Color objects as available input for Color
fields
* In examples, type nullable fields as Optional, so that these
are valid mypy annotations
* Make pattern_validator() accept pre-compiled Pattern objects.
OBS-URL: https://build.opensuse.org/request/show/795387
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pydantic?expand=0&rev=6
2020-04-19 09:15:51 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Sat Apr 18 19:11:39 UTC 2020 - Martin Hauke <mardnh@gmx.de>
|
|
|
|
|
|
|
|
- Update to version 1.5
|
|
|
|
* Make includes/excludes arguments for .dict(), ._iter(), ...,
|
|
|
|
immutable
|
|
|
|
* Always use a field's real name with includes/excludes in
|
|
|
|
model._iter(), regardless of by_alias, #1397 by @AlexECX
|
|
|
|
* Update constr regex example to include start and end lines,
|
|
|
|
* Confirm that shallow model.copy() does make a shallow copy of
|
|
|
|
attributes
|
|
|
|
* Renaming model_name argument of main.create_model()
|
|
|
|
to __model_name to allow using model_name as a field name
|
|
|
|
* Replace raising of exception to silent passing for non-Var
|
|
|
|
attributes in mypy plugin
|
|
|
|
* Remove typing_extensions dependency for python 3.8
|
|
|
|
* Make SecretStr and SecretBytes initialization idempotent
|
|
|
|
* document making secret types dumpable using the json method
|
|
|
|
* fix card number length check in PaymentCardNumber,
|
|
|
|
PaymentCardBrand now inherits from str
|
|
|
|
* Have BaseModel inherit from Representation to make mypy happy
|
|
|
|
when overriding __str__
|
|
|
|
* Allow None as input to all optional list fields
|
|
|
|
* Add datetime field to default_factory example
|
|
|
|
* Allow subclasses of known types to be encoded with superclass
|
|
|
|
encoder
|
|
|
|
* Exclude exported fields from all elements of a list/tuple of
|
|
|
|
submodels/dicts with '__all__', #1286 by @masalim2
|
|
|
|
* Add pydantic.color.Color objects as available input for Color
|
|
|
|
fields
|
|
|
|
* In examples, type nullable fields as Optional, so that these
|
|
|
|
are valid mypy annotations
|
|
|
|
* Make pattern_validator() accept pre-compiled Pattern objects.
|
|
|
|
Fix str_validator() return type to str
|
|
|
|
* Support instance methods and class methods with
|
|
|
|
@validate_arguments
|
|
|
|
* Add default_factory argument to Field to create a dynamic
|
|
|
|
default value by passing a zero-argument callable
|
|
|
|
* add support for NewType of List, Optional, etc
|
|
|
|
* fix mypy signature for root_validator
|
|
|
|
* Fixed parsing of nested 'custom root type' models
|
|
|
|
* Add validate_arguments function decorator which checks the
|
|
|
|
arguments to a function matches type annotations
|
|
|
|
* Add __signature__ to models
|
|
|
|
* Refactor ._iter() method, 10x speed boost for dict(model)
|
|
|
|
|
2020-03-19 13:37:43 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Thu Mar 19 13:25:26 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>
|
|
|
|
|
|
|
|
- Update to version 1.4
|
|
|
|
* rename Schema to Field, make it a function to placate mypy
|
|
|
|
* Implement root_validator and rename root errors from __obj__ to __root__
|
|
|
|
* Added initvars support to post_init_post_parse
|
|
|
|
* complete rewrite of URL parsing logic
|
|
|
|
* BaseSettings now uses the special env settings to define which
|
|
|
|
environment variables to read, not aliases
|
|
|
|
* add support for assert statements inside validators
|
|
|
|
* Change the precedence of aliases so child model aliases override
|
|
|
|
parent aliases, including using alias_generator
|
|
|
|
* Add a mypy plugin for type checking BaseModel.__init__ and more
|
|
|
|
* Add support for typing.Literal for Python 3.8
|
|
|
|
* Add a ByteSize type for converting byte string (1GB) to plain bytes
|
|
|
|
* Add support for required Optional with name: Optional[AnyType] = Field(...)
|
|
|
|
and refactor ModelField creation to preserve required parameter value
|
|
|
|
* Add __eq__ to SecretStr and SecretBytes to allow "value equals"
|
|
|
|
* Add support for nested generic models
|
|
|
|
* alias precedence logic changed so aliases on a field always take
|
|
|
|
priority over an alias from alias_generator
|
|
|
|
* many more fixes and improvements
|
|
|
|
|
2019-09-20 09:57:08 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Fri Sep 20 09:56:55 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
|
|
|
|
|
|
|
|
- Format with spec-cleaner
|
|
|
|
|
2019-09-20 09:56:46 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
Thu Sep 19 20:25:27 UTC 2019 - Martin Hauke <mardnh@gmx.de>
|
|
|
|
|
|
|
|
- Initial package, version 0.32.2
|