Skip to content

Commit 08922c3

Browse files
committed
uprev and add history
1 parent b1bb6e0 commit 08922c3

8 files changed

+14
-7
lines changed

HISTORY.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## v1.7.3 (2020-11-30)
2+
3+
Thank you to pydantic's sponsors:
4+
@timdrijvers, @BCarley, @chdsbd, @tiangolo, @matin, @linusg, @kevinalh, @jorgecarleitao, @koxudaxi, @primer-api,
5+
@mkeen, @meadsteve for their kind support.
6+
7+
* fix: set right default value for required (optional) fields, #2142 by @PrettyWood
8+
* fix: support `underscore_attrs_are_private` with generic models, #2138 by @PrettyWood
9+
* fix: update all modified field values in `root_validator` when `validate_assignment` is on, #2116 by @PrettyWood
10+
* Allow pickling of `pydantic.dataclasses.dataclass` dynamically created from a built-in `dataclasses.dataclass`, #2111 by @aimestereo
11+
* Fix a regression where Enum fields would not propagate keyword arguments to the schema, #2109 by @bm424
12+
* Ignore `__doc__` as private attribute when `Config.underscore_attrs_are_private` is set, #2090 by @PrettyWood
13+
114
## v1.7.2 (2020-11-01)
215

316
* fix slow `GenericModel` concrete model creation, allow `GenericModel` concrete name reusing in module, #2078 by @MrMrRobat

changes/2090-PrettyWood.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/2109-bm424.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/2111-aimestereo.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/2116-PrettyWood.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/2138-PrettyWood.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/2142-PrettyWood.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

pydantic/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__all__ = 'VERSION', 'version_info'
22

3-
VERSION = '1.7.2'
3+
VERSION = '1.7.3'
44

55

66
def version_info() -> str:

0 commit comments

Comments
 (0)