Bump pydantic from 1.9.0 to 1.10.5 by dependabot[bot] · Pull Request #149 · cuenca-mx/clabe-python
Bumps pydantic from 1.9.0 to 1.10.5.
Release notes
Sourced from pydantic's releases.
v1.10.5 (2023-02-15)
- Fix broken parametrized bases handling with
GenericModels with complex sets of models, #5052 by@MarkusSintonen- Invalidate mypy cache if plugin config changes, #5007 by
@cdce8p- Fix
RecursionErrorwhen deep-copying dataclass types wrapped by pydantic, #4949 by@mbillingr- Fix
X | Yunion syntax breakingGenericModel, #4146 by@thenx- Switch coverage badge to show coverage for this branch/release, #5060 by
@samuelcolvinNew Contributors
@thenxmade their first contribution in pydantic/pydantic#4977@mbillingrmade their first contribution in pydantic/pydantic#4963@MarkusSintonenmade their first contribution in pydantic/pydantic#5052Full Changelog: pydantic/pydantic@v1.10.4...v1.10.5
v1.10.4 (2022-12-30)
- Change dependency to
typing-extensions>=4.2.0, #4885 by@samuelcolvinFull Changelog: pydantic/pydantic@v1.10.3...v1.10.4
v1.10.3 (2022-12-29)
- fix parsing of custom root models, #4883 by
@gou177- fix: use dataclass proxy for frozen or empty dataclasses, #4878 by
@PrettyWood- Fix
schemaandschema_jsonon models where a model instance is a one of default values, #4781 by@Bobronium- Add Jina AI to sponsors on docs index page, #4767 by
@samuelcolvin- fix: support assignment on
DataclassProxy, #4695 by@PrettyWood- Add
postgresql+psycopgas allowed scheme forPostgreDsnto make it usable with SQLAlchemy 2, #4689 by@morian- Allow dict schemas to have both
patternPropertiesandadditionalProperties, #4641 by@jparise- Fixes error passing None for optional lists with
unique_items, #4568 by@mfulgo- Fix
GenericModelwithCallableparam raising aTypeError, #4551 by@mfulgo- Fix field regex with
StrictStrtype annotation, #4538 by@sisp- Correct
dataclass_transformkeyword argument name fromfield_descriptorstofield_specifiers, #4500 by@samuelcolvin- fix: avoid multiple calls of
__post_init__when dataclasses are inherited, #4487 by@PrettyWood- Reduce the size of binary wheels, #2276 by
@samuelcolvinFull Changelog: pydantic/pydantic@v1.10.2...v1.10.3
v1.10.2 (2022-09-05)
- Revert Change: Revert percent encoding of URL parts which was originally added in #4224, #4470 by
@samuelcolvin- Prevent long (length >
4_300) strings/bytes as input to int fields, see python/cpython#95778 and CVE-2020-10735, #1477 by@samuelcolvin- fix: dataclass wrapper was not always called, #4477 by
@PrettyWood- Use
tomllibon Python 3.11 when parsingmypyconfiguration, #4476 by@hauntsaninja- Basic fix of
GenericModelcache to detect order of arguments inUnionmodels, #4474 by@sveinugu- Fix mypy plugin when using bare types like
listanddictasdefault_factory, #4457 by@samuelcolvinFull Changelog: pydantic/pydantic@v1.10.1...v1.10.2
v1.10.1 (2022-08-31)
... (truncated)
Changelog
Sourced from pydantic's changelog.
v1.10.5 (2023-02-15)
- Fix broken parametrized bases handling with
GenericModels with complex sets of models, #5052 by@MarkusSintonen- Invalidate mypy cache if plugin config changes, #5007 by
@cdce8p- Fix
RecursionErrorwhen deep-copying dataclass types wrapped by pydantic, #4949 by@mbillingr- Fix
X | Yunion syntax breakingGenericModel, #4146 by@thenx- Switch coverage badge to show coverage for this branch/release, #5060 by
@samuelcolvinv1.10.4 (2022-12-30)
- Change dependency to
typing-extensions>=4.2.0, #4885 by@samuelcolvinv1.10.3 (2022-12-29)
NOTE: v1.10.3 was "yanked" from PyPI due to #4885 which is fixed in v1.10.4
- fix parsing of custom root models, #4883 by
@gou177- fix: use dataclass proxy for frozen or empty dataclasses, #4878 by
@PrettyWood- Fix
schemaandschema_jsonon models where a model instance is a one of default values, #4781 by@Bobronium- Add Jina AI to sponsors on docs index page, #4767 by
@samuelcolvin- fix: support assignment on
DataclassProxy, #4695 by@PrettyWood- Add
postgresql+psycopgas allowed scheme forPostgreDsnto make it usable with SQLAlchemy 2, #4689 by@morian- Allow dict schemas to have both
patternPropertiesandadditionalProperties, #4641 by@jparise- Fixes error passing None for optional lists with
unique_items, #4568 by@mfulgo- Fix
GenericModelwithCallableparam raising aTypeError, #4551 by@mfulgo- Fix field regex with
StrictStrtype annotation, #4538 by@sisp- Correct
dataclass_transformkeyword argument name fromfield_descriptorstofield_specifiers, #4500 by@samuelcolvin- fix: avoid multiple calls of
__post_init__when dataclasses are inherited, #4487 by@PrettyWood- Reduce the size of binary wheels, #2276 by
@samuelcolvinv1.10.2 (2022-09-05)
- Revert Change: Revert percent encoding of URL parts which was originally added in #4224, #4470 by
@samuelcolvin- Prevent long (length >
4_300) strings/bytes as input to int fields, see python/cpython#95778 and CVE-2020-10735, #1477 by@samuelcolvin- fix: dataclass wrapper was not always called, #4477 by
@PrettyWood- Use
tomllibon Python 3.11 when parsingmypyconfiguration, #4476 by@hauntsaninja- Basic fix of
GenericModelcache to detect order of arguments inUnionmodels, #4474 by@sveinugu- Fix mypy plugin when using bare types like
listanddictasdefault_factory, #4457 by@samuelcolvinv1.10.1 (2022-08-31)
v1.10.0 (2022-08-30)
- Refactor the whole pydantic
dataclassdecorator to really act like its standard lib equivalent. It hence keeps__eq__,__hash__, ... and makes comparison with its non-validated version possible. It also fixes usage offrozendataclasses in fields and usage ofdefault_factoryin nested dataclasses.
... (truncated)
Commits
b0215d1prepare for v1.10.596dc2e0fix coverage badge to use correct branch (#5060)ce35972Disable Google analytics (#5059)aea3449fix: Fix broken parametrized bases with GenericModels (#5052)ce45f6eInvalidate mypy cache if config changes (#5007) (#5023)0558af4Dataclass deepcopy 1.10 (#4963)a699707Handle X | Y union in GenericModel (#4977)0bc7cd3uprev mkdocs-material, fix maxcdn errors (#4954)5bb8922simplify analytics more (#4930)5121777Fix typo in Field function docstring (#4931) (#4932)- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)