Path to this page:
Subject: CVS commit: pkgsrc/devel/py-pydantic
From: Adam Ciarcinski
Date: 2022-08-23 13:20:40
Message id: 20220823112040.F2560FB1A@cvs.NetBSD.org
Log Message:
py-pydantic: updated to 1.9.2
v1.9.2 (2022-08-11)
**Revert Breaking Change**: _v1.9.1_ introduced a breaking change where model \
fields were
deep copied by default, this release reverts the default behaviour to match \
_v1.9.0_ and before,
while also allow deep-copy behaviour via `copy_on_model_validation = 'deep'`.
* Allow for shallow copies of model fields, `Config.copy_on_model_validation` is \
now a str which must be
`'none'`, `'deep'`, or `'shallow'` corresponding to not copying, deep copy \
& shallow copy; default `'shallow'`
Files: