Skip to content

Commit 5406423

Browse files
committed
prepare for v1.9.0 release
1 parent 87da9ac commit 5406423

File tree

3 files changed

+21
-18
lines changed

3 files changed

+21
-18
lines changed

HISTORY.md

Lines changed: 20 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,9 @@
1-
## v1.9.0a2 (2021-12-24)
2-
3-
* support generic models with discriminated union, #3551 by @PrettyWood
4-
* keep old behaviour of `json()` by default, #3542 by @PrettyWood
5-
* Removed typing-only `__root__` attribute from `BaseModel`, #3540 by @layday
6-
* Build Python 3.10 wheels, #3539 by @mbachry
7-
* Fix display of `extra` fields with model `__repr__`, #3234 by @cocolman
8-
* models copied via `Config.copy_on_model_validation` always have all fields, #3201 by @PrettyWood
9-
* nested ORM from nested dictionaries, #3182 by @PrettyWood
10-
* fix link to discriminated union section by @PrettyWood
11-
12-
## v1.9.0a1 (2021-12-18)
1+
## v1.9.0 (2021-12-31)
132

143
Thank you to pydantic's sponsors:
15-
@timdrijvers, @toinbis, @koxudaxi, @ginomempin, @primer-io, @and-semakin, @westonsteimel, @reillysiemens, @es3n1n,
16-
@jokull, @JonasKs, @Rehket, @corleyma, @daddycocoaman, @hardbyte, @datarootsio, @jodal, @aminalaee, @rafsaf,
17-
@jqueguiner, @chdsbd, @kevinalh, @Mazyod, @grillazz, @JonasKs
4+
@sthagen, @timdrijvers, @toinbis, @koxudaxi, @ginomempin, @primer-io, @and-semakin, @westonsteimel, @reillysiemens,
5+
@es3n1n, @jokull, @JonasKs, @Rehket, @corleyma, @daddycocoaman, @hardbyte, @datarootsio, @jodal, @aminalaee, @rafsaf,
6+
@jqueguiner, @chdsbd, @kevinalh, @Mazyod, @grillazz, @JonasKs, @simw, @leynier, @xfenix
187
for their kind support.
198

209
### Highlights
@@ -28,7 +17,22 @@ for their kind support.
2817
* Add support for autocomplete in VS Code via `__dataclass_transform__`, #2721 by @tiangolo
2918
* Add "exclude" as a field parameter so that it can be configured using model config, #660 by @daviskirk
3019

31-
### Changes
20+
### v1.9.0 (2021-12-31) Changes
21+
22+
* Apply `update_forward_refs` to `Config.json_encodes` prevent name clashes in types defined via strings, #3583 by @samuelcolvin
23+
24+
### v1.9.0a2 (2021-12-24) Changes
25+
26+
* support generic models with discriminated union, #3551 by @PrettyWood
27+
* keep old behaviour of `json()` by default, #3542 by @PrettyWood
28+
* Removed typing-only `__root__` attribute from `BaseModel`, #3540 by @layday
29+
* Build Python 3.10 wheels, #3539 by @mbachry
30+
* Fix display of `extra` fields with model `__repr__`, #3234 by @cocolman
31+
* models copied via `Config.copy_on_model_validation` always have all fields, #3201 by @PrettyWood
32+
* nested ORM from nested dictionaries, #3182 by @PrettyWood
33+
* fix link to discriminated union section by @PrettyWood
34+
35+
### v1.9.0a1 (2021-12-18) Changes
3236

3337
* Add support for `Decimal`-specific validation configurations in `Field()`, additionally to using `condecimal()`,
3438
to allow better support from editors and tooling, #3507 by @tiangolo

changes/3583-samuelcolvin.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.9.0a2'
3+
VERSION = '1.9.0'
44

55

66
def version_info() -> str:

0 commit comments

Comments
 (0)