-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
⬆️ 🛠️(deps): update dependency fastapi to v0.115.8 #2086
Conversation
Reviewer's Guide by SourceryThis pull request updates the fastapi dependency from version 0.115.7 to 0.115.8. This is a minor version update that includes bug fixes, refactors, documentation updates, and internal changes. Class diagram showing OAuth2 form changesclassDiagram
class OAuth2PasswordRequestForm {
+grant_type: str
}
class OAuth2PasswordRequestFormStrict {
+grant_type: str
}
class APIKeyBase {
+static validate_key()
}
OAuth2PasswordRequestForm --|> APIKeyBase
OAuth2PasswordRequestFormStrict --|> APIKeyBase
note for OAuth2PasswordRequestForm "Fixed grant_type 'password' RegEx"
note for OAuth2PasswordRequestFormStrict "Fixed grant_type 'password' RegEx"
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have skipped reviewing this pull request. Here's why:
- It seems to have been created by a bot (hey, renovate[bot]!). We assume it knows what it's doing!
- We don't review packaging changes - Let us know if you'd like us to change this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Auto Pull Request Review from LlamaPReview
Review Status: Automated Review Skipped
Dear contributor,
Thank you for your Pull Request. LlamaPReview has analyzed your changes and determined that this PR does not require an automated code review.
Analysis Result:
PR contains only dependency version updates, requiring no automated code review
We're continuously improving our PR analysis capabilities. Have thoughts on when and how LlamaPReview should perform automated reviews? Share your insights in our GitHub Discussions.
Best regards,
LlamaPReview Team
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## dev #2086 +/- ##
=======================================
Coverage 83.19% 83.19%
=======================================
Files 12 12
Lines 488 488
=======================================
Hits 406 406
Misses 82 82 ☔ View full report in Codecov by Sentry. |
This PR contains the following updates:
0.115.7
->0.115.8
Release Notes
fastapi/fastapi (fastapi)
v0.115.8
Fixes
OAuth2PasswordRequestForm
andOAuth2PasswordRequestFormStrict
fixedgrant_type
"password" RegEx. PR #9783 by @skarfie123.Refactors
APIKeyBase
super class. PR #3142 by @ShahriyarR.Docs
docs/en/docs/tutorial/extra-models.md
. PR #13061 by @timothy-jeong.tutorial002
to deal withtax=0
case. PR #13230 by @togogh.Translations
docs/ja/docs/environment-variables.md
. PR #13226 by @k94-ishi.docs/ru/docs/advanced/async-tests.md
. PR #13227 by @Rishat-F.docs/ru/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md
. PR #13252 by @Rishat-F.docs/ru/docs/tutorial/bigger-applications.md
. PR #13154 by @alv2017.Internal
>=3.2.1,<5.0.0
. PR #13273 by @tiangolo.notify_translations.py
empty env var handling for PR label events vs workflow_dispatch. PR #13272 by @tiangolo.scripts/notify_translations.py
, no need for a custom GitHub Action. PR #13270 by @tiangolo.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.
Summary by Sourcery
Update FastAPI to v0.115.8.
Bug Fixes:
Enhancements: