prepare for v1.10.2

This commit is contained in:
Samuel Colvin
2022-09-05 17:35:13 +01:00
parent f1e9883157
commit bc74342b39
8 changed files with 12 additions and 9 deletions
+11
View File
@@ -1,3 +1,14 @@
## 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](https://github.com/python/cpython/issues/95778) and
[CVE-2020-10735](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-10735), #1477 by @samuelcolvin
* fix: dataclass wrapper was not always called, #4477 by @PrettyWood
* Use `tomllib` on Python 3.11 when parsing `mypy` configuration, #4476 by @hauntsaninja
* Basic fix of `GenericModel` cache to detect order of arguments in `Union` models, #4474 by @sveinugu
* Fix mypy plugin when using bare types like `list` and `dict` as `default_factory`, #4457 by @samuelcolvin
## v1.10.1 (2022-08-31)
* Add `__hash__` method to `pydancic.color.Color` class, #4454 by @czaki
-3
View File
@@ -1,3 +0,0 @@
Prevent long (length > `4_300`) strings/bytes as input to int fields, see
[python/cpython#95778](https://github.com/python/cpython/issues/95778) and
[CVE-2020-10735](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-10735)
-1
View File
@@ -1 +0,0 @@
Fix mypy plugin when using bare types like `list` and `dict` as `default_factory`.
-1
View File
@@ -1 +0,0 @@
**Revert Change:** Revert percent encoding of URL parts which was originally added in #4224.
-1
View File
@@ -1 +0,0 @@
Basic fix of GenericModel cache to detect order of arguments in Union models
-1
View File
@@ -1 +0,0 @@
Use `tomllib` on Python 3.11 when parsing `mypy` configuration.
-1
View File
@@ -1 +0,0 @@
fix: dataclass wrapper was not always called
+1 -1
View File
@@ -1,6 +1,6 @@
__all__ = 'compiled', 'VERSION', 'version_info'
VERSION = '1.10.1'
VERSION = '1.10.2'
try:
import cython # type: ignore