From 80e0ba1383645c6eecf4e17cd770cf596ff66460 Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Fri, 7 Apr 2023 09:29:27 +0000 Subject: automatic import of python-pydantic --- .gitignore | 1 + python-pydantic.spec | 35 +++++++++++++++++++++++++++++++---- sources | 2 +- 3 files changed, 33 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 30c94c6..2d57698 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /pydantic-1.10.6.tar.gz +/pydantic-1.10.7.tar.gz diff --git a/python-pydantic.spec b/python-pydantic.spec index 2aa549d..14c472e 100644 --- a/python-pydantic.spec +++ b/python-pydantic.spec @@ -1,11 +1,11 @@ %global _empty_manifest_terminate_build 0 Name: python-pydantic -Version: 1.10.6 +Version: 1.10.7 Release: 1 Summary: Data validation and settings management using python type hints License: MIT URL: https://github.com/pydantic/pydantic -Source0: https://mirrors.nju.edu.cn/pypi/web/packages/8b/87/200171b36005368bc4c114f01cb9e8ae2a3f3325a47da8c710cc58cfd00c/pydantic-1.10.6.tar.gz +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/43/5f/e53a850fd32dddefc998b6bfcbda843d4ff5b0dcac02a92e414ba6c97d46/pydantic-1.10.7.tar.gz Requires: python3-typing-extensions Requires: python3-dotenv @@ -74,6 +74,15 @@ contribution to *pydantic*, see See our [security policy](https://github.com/pydantic/pydantic/security/policy). +## v1.10.7 (2023-03-22) + +* Fix creating schema from model using `ConstrainedStr` with `regex` as dict key, [#5223](https://github.com/pydantic/pydantic/issues/5223) by [@matejetz](https://github.com/matejetz) +* Address bug in mypy plugin caused by explicit_package_bases=True, [#5191](https://github.com/pydantic/pydantic/issues/5191) by [@dmontagu](https://github.com/dmontagu) +* Add implicit defaults in the mypy plugin for Field with no default argument, [#5190](https://github.com/pydantic/pydantic/issues/5190) by [@dmontagu](https://github.com/dmontagu) +* Fix schema generated for Enum values used as Literals in discriminated unions, [#5188](https://github.com/pydantic/pydantic/issues/5188) by [@javibookline](https://github.com/javibookline) +* Fix mypy failures caused by the pydantic mypy plugin when users define `from_orm` in their own classes, [#5187](https://github.com/pydantic/pydantic/issues/5187) by [@dmontagu](https://github.com/dmontagu) +* Fix `InitVar` usage with pydantic dataclasses, mypy version `1.1.1` and the custom mypy plugin, [#5162](https://github.com/pydantic/pydantic/issues/5162) by [@cdce8p](https://github.com/cdce8p) + ## v1.10.6 (2023-03-08) * Implement logic to support creating validators from non standard callables by using defaults to identify them and unwrapping `functools.partial` and `functools.partialmethod` when checking the signature, [#5126](https://github.com/pydantic/pydantic/issues/5126) by [@JensHeinrich](https://github.com/JensHeinrich) @@ -1322,6 +1331,15 @@ contribution to *pydantic*, see See our [security policy](https://github.com/pydantic/pydantic/security/policy). +## v1.10.7 (2023-03-22) + +* Fix creating schema from model using `ConstrainedStr` with `regex` as dict key, [#5223](https://github.com/pydantic/pydantic/issues/5223) by [@matejetz](https://github.com/matejetz) +* Address bug in mypy plugin caused by explicit_package_bases=True, [#5191](https://github.com/pydantic/pydantic/issues/5191) by [@dmontagu](https://github.com/dmontagu) +* Add implicit defaults in the mypy plugin for Field with no default argument, [#5190](https://github.com/pydantic/pydantic/issues/5190) by [@dmontagu](https://github.com/dmontagu) +* Fix schema generated for Enum values used as Literals in discriminated unions, [#5188](https://github.com/pydantic/pydantic/issues/5188) by [@javibookline](https://github.com/javibookline) +* Fix mypy failures caused by the pydantic mypy plugin when users define `from_orm` in their own classes, [#5187](https://github.com/pydantic/pydantic/issues/5187) by [@dmontagu](https://github.com/dmontagu) +* Fix `InitVar` usage with pydantic dataclasses, mypy version `1.1.1` and the custom mypy plugin, [#5162](https://github.com/pydantic/pydantic/issues/5162) by [@cdce8p](https://github.com/cdce8p) + ## v1.10.6 (2023-03-08) * Implement logic to support creating validators from non standard callables by using defaults to identify them and unwrapping `functools.partial` and `functools.partialmethod` when checking the signature, [#5126](https://github.com/pydantic/pydantic/issues/5126) by [@JensHeinrich](https://github.com/JensHeinrich) @@ -2564,6 +2582,15 @@ contribution to *pydantic*, see See our [security policy](https://github.com/pydantic/pydantic/security/policy). +## v1.10.7 (2023-03-22) + +* Fix creating schema from model using `ConstrainedStr` with `regex` as dict key, [#5223](https://github.com/pydantic/pydantic/issues/5223) by [@matejetz](https://github.com/matejetz) +* Address bug in mypy plugin caused by explicit_package_bases=True, [#5191](https://github.com/pydantic/pydantic/issues/5191) by [@dmontagu](https://github.com/dmontagu) +* Add implicit defaults in the mypy plugin for Field with no default argument, [#5190](https://github.com/pydantic/pydantic/issues/5190) by [@dmontagu](https://github.com/dmontagu) +* Fix schema generated for Enum values used as Literals in discriminated unions, [#5188](https://github.com/pydantic/pydantic/issues/5188) by [@javibookline](https://github.com/javibookline) +* Fix mypy failures caused by the pydantic mypy plugin when users define `from_orm` in their own classes, [#5187](https://github.com/pydantic/pydantic/issues/5187) by [@dmontagu](https://github.com/dmontagu) +* Fix `InitVar` usage with pydantic dataclasses, mypy version `1.1.1` and the custom mypy plugin, [#5162](https://github.com/pydantic/pydantic/issues/5162) by [@cdce8p](https://github.com/cdce8p) + ## v1.10.6 (2023-03-08) * Implement logic to support creating validators from non standard callables by using defaults to identify them and unwrapping `functools.partial` and `functools.partialmethod` when checking the signature, [#5126](https://github.com/pydantic/pydantic/issues/5126) by [@JensHeinrich](https://github.com/JensHeinrich) @@ -3741,7 +3768,7 @@ Thank you to pydantic's sponsors: [@matin](https://github.com/matin), [@tiangolo %prep -%autosetup -n pydantic-1.10.6 +%autosetup -n pydantic-1.10.7 %build %py3_build @@ -3781,5 +3808,5 @@ mv %{buildroot}/doclist.lst . %{_docdir}/* %changelog -* Thu Mar 09 2023 Python_Bot - 1.10.6-1 +* Fri Apr 07 2023 Python_Bot - 1.10.7-1 - Package Spec generated diff --git a/sources b/sources index dc0f76b..1683597 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -a5dffe4ff368c79837e8d22cb66cfd73 pydantic-1.10.6.tar.gz +4279a3a76b4c287b444d7ce37fed02c2 pydantic-1.10.7.tar.gz -- cgit v1.2.3