mirror of
https://github.com/fastapi/fastapi.git
synced 2025-12-28 16:49:26 -05:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
43df5d05ed | ||
|
|
eaa49ebd20 | ||
|
|
a6293397bc |
@@ -3,6 +3,12 @@
|
||||
## Latest Changes
|
||||
|
||||
|
||||
## 0.65.1
|
||||
|
||||
### Security fixes
|
||||
|
||||
* 📌 Upgrade pydantic pin, to handle security vulnerability [CVE-2021-29510](https://github.com/samuelcolvin/pydantic/security/advisories/GHSA-5jqp-qgf6-3pvh). PR [#3213](https://github.com/tiangolo/fastapi/pull/3213) by [@tiangolo](https://github.com/tiangolo).
|
||||
|
||||
## 0.65.0
|
||||
|
||||
### Breaking Changes - Upgrade
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
"""FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
|
||||
|
||||
__version__ = "0.65.0"
|
||||
__version__ = "0.65.1"
|
||||
|
||||
from starlette import status as status
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ classifiers = [
|
||||
]
|
||||
requires = [
|
||||
"starlette ==0.14.2",
|
||||
"pydantic >=1.0.0,<2.0.0"
|
||||
"pydantic >=1.6.2,!=1.7,!=1.7.1,!=1.7.2,!=1.7.3,!=1.8,!=1.8.1,<2.0.0"
|
||||
]
|
||||
description-file = "README.md"
|
||||
requires-python = ">=3.6"
|
||||
|
||||
Reference in New Issue
Block a user