mirror of
https://github.com/kennethreitz/pydantic.git
synced 2026-06-05 23:00:18 +00:00
prepare for v1.8.1
This commit is contained in:
+13
@@ -1,3 +1,16 @@
|
||||
## v1.8.1 (2021-03-03)
|
||||
|
||||
Bug fixes for regressions and new features from `v1.8`
|
||||
|
||||
* allow elements of `Config.field` to update elements of a `Field`, #2461 by @samuelcolvin
|
||||
* fix validation with a `BaseModel` field and a custom root type, #2449 by @PrettyWood
|
||||
* expose `Pattern` encoder to `fastapi`, #2444 by @PrettyWood
|
||||
* enable the Hypothesis plugin to generate a constrained float when the `multiple_of` argument is specified, #2442 by @tobi-lipede-oodle
|
||||
* Avoid `RecursionError` when using some types like `Enum` or `Literal` with generic models, #2436 by @PrettyWood
|
||||
* do not overwrite declared `__hash__` in subclasses of a model, #2422 by @PrettyWood
|
||||
* fix `mypy` complaints on `Path` and `UUID` related custom types, #2418 by @PrettyWood
|
||||
* Support properly variable length tuples of compound types, #2416 by @PrettyWood
|
||||
|
||||
## v1.8 (2021-02-26)
|
||||
|
||||
Thank you to pydantic's sponsors:
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
Support properly variable length tuples of compound types
|
||||
@@ -1 +0,0 @@
|
||||
fix `mypy` complaints on `Path` and `UUID` related custom types
|
||||
@@ -1 +0,0 @@
|
||||
do not overwrite declared `__hash__` in subclasses of a model
|
||||
@@ -1 +0,0 @@
|
||||
Avoid `RecursionError` when using some types like `Enum` or `Literal` with generic models
|
||||
@@ -1 +0,0 @@
|
||||
enable the Hypothesis plugin to generate a constrained float when the `multiple_of` argument is specified.
|
||||
@@ -1 +0,0 @@
|
||||
expose `Pattern` encoder to `fastapi`
|
||||
@@ -1 +0,0 @@
|
||||
fix validation with a `BaseModel` field and a custom root type
|
||||
@@ -1 +0,0 @@
|
||||
fix: allow elements of `Config.field` to update elements of a `Field`
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
__all__ = 'VERSION', 'version_info'
|
||||
|
||||
VERSION = '1.8'
|
||||
VERSION = '1.8.1'
|
||||
|
||||
|
||||
def version_info() -> str:
|
||||
|
||||
Reference in New Issue
Block a user