Skip to content

Commit 6aa9ec9

Browse files
authored
Merge pull request #210 from es3n1n/patch-1
bump pydantic version to 1.8.2
2 parents 40f1076 + 45838ce commit 6aa9ec9

3 files changed

Lines changed: 15 additions & 2 deletions

File tree

docs/releases.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# 0.10.9
2+
3+
## Important security fix
4+
5+
* Update pin for pydantic to fix security vulnerability [CVE-2021-29510](https://github.com/samuelcolvin/pydantic/security/advisories/GHSA-5jqp-qgf6-3pvh)
6+
7+
You are advised to update to version of pydantic that was patched.
8+
In 0.10.9 ormar excludes versions with vulnerability in pinned dependencies.
9+
10+
## 🐛 Fixes
11+
12+
* Fix OpenAPi schema for LargeBinary [#204](https://github.com/collerek/ormar/issues/204)
13+
114
# 0.10.8
215

316
## 🐛 Fixes

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
databases[sqlite]>=0.3.2,<=0.4.1
22
databases[postgresql]>=0.3.2,<=0.4.1
33
databases[mysql]>=0.3.2,<=0.4.1
4-
pydantic>=1.6.1,<=1.8
4+
pydantic >=1.6.1,!=1.7,!=1.7.1,!=1.7.2,!=1.7.3,!=1.8,!=1.8.1,<=1.8.2
55
sqlalchemy>=1.3.18,<=1.3.23
66
typing_extensions>=3.7,<=3.7.4.3
77
orjson

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def get_packages(package):
5555
zip_safe=False,
5656
python_requires=">=3.6",
5757
data_files=[("", ["LICENSE.md"])],
58-
install_requires=["databases>=0.3.2,<=0.4.1", "pydantic>=1.6.1,<=1.8",
58+
install_requires=["databases>=0.3.2,<=0.4.1", "pydantic>=1.6.1,!=1.7,!=1.7.1,!=1.7.2,!=1.7.3,!=1.8,!=1.8.1,<=1.8.2",
5959
"sqlalchemy>=1.3.18,<=1.3.23",
6060
"typing_extensions>=3.7,<=3.7.4.3"],
6161
extras_require={

0 commit comments

Comments
 (0)