Skip to content

Commit

Permalink
Merge pull request #210 from es3n1n/patch-1
Browse files Browse the repository at this point in the history
bump pydantic version to 1.8.2
  • Loading branch information
collerek authored May 30, 2021
2 parents 40f1076 + 45838ce commit 6aa9ec9
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions docs/releases.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# 0.10.9

## Important security fix

* Update pin for pydantic to fix security vulnerability [CVE-2021-29510](https://github.com/samuelcolvin/pydantic/security/advisories/GHSA-5jqp-qgf6-3pvh)

You are advised to update to version of pydantic that was patched.
In 0.10.9 ormar excludes versions with vulnerability in pinned dependencies.

## 🐛 Fixes

* Fix OpenAPi schema for LargeBinary [#204](https://github.com/collerek/ormar/issues/204)

# 0.10.8

## 🐛 Fixes
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
databases[sqlite]>=0.3.2,<=0.4.1
databases[postgresql]>=0.3.2,<=0.4.1
databases[mysql]>=0.3.2,<=0.4.1
pydantic>=1.6.1,<=1.8
pydantic >=1.6.1,!=1.7,!=1.7.1,!=1.7.2,!=1.7.3,!=1.8,!=1.8.1,<=1.8.2
sqlalchemy>=1.3.18,<=1.3.23
typing_extensions>=3.7,<=3.7.4.3
orjson
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def get_packages(package):
zip_safe=False,
python_requires=">=3.6",
data_files=[("", ["LICENSE.md"])],
install_requires=["databases>=0.3.2,<=0.4.1", "pydantic>=1.6.1,<=1.8",
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",
"sqlalchemy>=1.3.18,<=1.3.23",
"typing_extensions>=3.7,<=3.7.4.3"],
extras_require={
Expand Down

0 comments on commit 6aa9ec9

Please sign in to comment.