- `check_model` now warns on non-hashable type hints (can be configured) - `check_model` now explicitly forbids the `arbitrary_types_allowed` pydantic setting.
0.3.2
- Fix for Python 3.10 - Add `example` folder - License documentation and examples under 0BSD
0.3.1
- `initialize` accepts nested dictionaries for `default`/`constant` arguments.
0.3
0.3.0
- `field` now checks that values are hashable by default. This can be disabled by setting `check=False`. - Added `as_hashable` utility to easily compare different configs and pydantic Models. - Added `check_unique` utility to check whether models are unique.
0.2.1
- `BaseModel` gained a custom model_validator that guards against ambiguous model selection from union types in nested models. - Relaxed version requirements of `pydantic` and `more-itertools`