14
0

- update to 2.20.0:

* Tidy up `tagged_union_schema`
  * Improvements in `Union` matching logic during validation
  * Fix `Union` validation logic when `extra='allow'`
  * Add list `fail_fast` config option
  * Update to PyO3 0.22, add Python 3.13 support
- update to 2.19.0:
  * Lower MSRV to 1.75
  * Bump `libc` from 0.2.147 to 0.2.155
  * Make `ValidatorFunctionWrapHandler` positional only
  * Reuse `re.Pattern` object in regex patterns
  * Add ser_json_inf_nan='strings' mode to produce valid JSON

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pydantic-core?expand=0&rev=10
This commit is contained in:
2024-07-01 17:06:13 +00:00
committed by Git OBS Bridge
parent 1220fe1d3f
commit 3886019aa5
6 changed files with 27 additions and 9 deletions

View File

@@ -1,8 +1,9 @@
<services>
<service name="download_files" mode="manual"/>
<service name="cargo_vendor" mode="manual">
<param name="srctar">pydantic_core-2.18.4.tar.gz</param>
<param name="srctar">pydantic_core-2.20.0.tar.gz</param>
<param name="compression">xz</param>
<param name="update">true</param>
<param name="update">false</param>
</service>
<service name="cargo_audit" mode="manual"></service>
</services>

BIN
pydantic_core-2.18.4.tar.gz (Stored with Git LFS)

Binary file not shown.

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:366be8e64e0cb63d87cf79b4e1765c0703dd6313c729b22e7b9e378db6b96877
size 388463

View File

@@ -1,3 +1,19 @@
-------------------------------------------------------------------
Mon Jul 1 17:05:35 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 2.20.0:
* Tidy up `tagged_union_schema`
* Improvements in `Union` matching logic during validation
* Fix `Union` validation logic when `extra='allow'`
* Add list `fail_fast` config option
* Update to PyO3 0.22, add Python 3.13 support
- update to 2.19.0:
* Lower MSRV to 1.75
* Bump `libc` from 0.2.147 to 0.2.155
* Make `ValidatorFunctionWrapHandler` positional only
* Reuse `re.Pattern` object in regex patterns
* Add ser_json_inf_nan='strings' mode to produce valid JSON
-------------------------------------------------------------------
Thu Jun 6 14:46:29 UTC 2024 - Dirk Müller <dmueller@suse.com>

View File

@@ -26,7 +26,7 @@
%endif
%{?sle15_python_module_pythons}
Name: python-pydantic-core%{psuffix}
Version: 2.18.4
Version: 2.20.0
Release: 0
Summary: Core functionality for pydantic validation and serialization
License: MIT
@@ -54,7 +54,8 @@ Requires: python-typing-extensions >= 4.6.0
%python_subpackages
%description
This package provides the core functionality for [pydantic](https://docs.pydantic.dev) validation and serialization.
This package provides the core functionality for
[pydantic](https://docs.pydantic.dev) validation and serialization.
Pydantic-core is currently around 17x faster than pydantic V1.

BIN
vendor.tar.xz (Stored with Git LFS)

Binary file not shown.