Bump the minor-and-patch group across 1 directory with 6 updates
Type: Pull Request
State: Merged
Association: Contributor
Comments: 1
(5 months ago)
(5 months ago)
(5 months ago)
by randroid88
dependencies
randroid88
Bumps the minor-and-patch group with 6 updates in the /backend directory:
| Package | From | To |
|---|---|---|
| fastapi | 0.115.12 |
0.115.14 |
| uvicorn[standard] | 0.34.3 |
0.35.0 |
| python-dotenv | 1.1.0 |
1.1.1 |
| pydantic | 2.11.5 |
2.11.7 |
| pydantic-settings | 2.9.1 |
2.10.1 |
| alembic | 1.16.1 |
1.16.2 |
Updates fastapi from 0.115.12 to 0.115.14
Release notes
Sourced from fastapi's releases.
0.115.14
Fixes
- 🐛 Fix support for unions when using
Form. PR #13827 by@patrick91.Docs
- ✏️ Fix grammar mistake in
docs/en/docs/advanced/response-directly.md. PR #13800 by@NavesSapnis.- 📝 Update Speakeasy URL to Speakeasy Sandbox. PR #13697 by
@ndimares.Translations
- 🌐 Add Ukrainian translation for
docs/uk/docs/tutorial/response-model.md. PR #13792 by@valentinDruzhinin.- 🌐 Add Ukrainian translation for
docs/uk/docs/tutorial/security/index.md. PR #13805 by@valentinDruzhinin.- ✏️ Fix typo in
docs/ja/docs/tutorial/encoder.md. PR #13815 by@ruzia.- ✏️ Fix typo in
docs/ja/docs/tutorial/handling-errors.md. PR #13814 by@ruzia.- ✏️ Fix typo in
docs/ja/docs/tutorial/body-fields.md. PR #13802 by@ruzia.- 🌐 Add Russian translation for
docs/ru/docs/advanced/index.md. PR #13797 by@NavesSapnis.Internal
- ⬆ [pre-commit.ci] pre-commit autoupdate. PR #13823 by
@pre-commit-ci[bot].0.115.13
Fixes
- 🐛 Fix truncating the model's description with form feed (
\f) character for Pydantic V2. PR #13698 by@YuriiMotov.Refactors
- ✨ Add
refreshUrlparameter inOAuth2PasswordBearer. PR #11460 by@snosratiershad.- 🚸 Set format to password for fields
passwordandclient_secretinOAuth2PasswordRequestForm, make docs show password fields for passwords. PR #11032 by@Thodoris1999.- ✅ Simplify tests for
settings. PR #13505 by@valentinDruzhinin.- ✅ Simplify tests for
validate_response_recursive. PR #13507 by@valentinDruzhinin.Upgrades
- ⬆️ Update ReDoc to version 2.x. PR #9700 by
@joakimnordling.Docs
- 📝 Add annotations to HTTP middleware example. PR #11530 by
@Kilo59.- 📝 Clarify in CORS docs that wildcards and credentials are mutually exclusive. PR #9829 by
@dfioravanti.- ✏️ Fix typo in docstring. PR #13532 by
@comp64.- 📝 Clarify guidance on using
async defwithoutawait. PR #13642 by@swastikpradhan1999.- 📝 Update exclude-parameters-from-openapi documentation links. PR #13600 by
@timonrieger.- 📝 Clarify the middleware execution order in docs. PR #13699 by
@YuriiMotov.- 🍱 Update Drawio diagrams SVGs, single file per diagram, sans-serif font. PR #13706 by
@tiangolo.- 📝 Update docs for "Help FastAPI", simplify and reduce "sponsor" section. PR #13670 by
@tiangolo.- 📝 Remove unnecessary bullet from docs. PR #13641 by
@Adamowoc.
... (truncated)
Commits
ebdeda2🔖 Release version 0.115.148fa19a6📝 Update release notes3ecb4c5📝 Update release notes9d0d882🐛 Fix support for unions when usingForm(#13827)df35896📝 Update release notes8f64d09⬆ [pre-commit.ci] pre-commit autoupdate (#13823)3b09dd8📝 Update release notesc30821f🌐 Add Ukrainian translation fordocs/uk/docs/tutorial/response-model.md(#1...666890a📝 Update release notes937af92🌐 Add Ukrainian translation fordocs/uk/docs/tutorial/security/index.md(#1...- Additional commits viewable in compare view
Updates uvicorn[standard] from 0.34.3 to 0.35.0
Release notes
Sourced from uvicorn[standard]'s releases.
Version 0.35.0
Added
- Add
WebSocketsSansIOProtocolby@Kludexin encode/uvicorn#2540Changed
- Refine help message for option
--proxy-headersby@zhangyoufuin encode/uvicorn#2653New Contributors
@zhangyoufumade their first contribution in encode/uvicorn#2653Full Changelog: https://github.com/encode/uvicorn/compare/0.34.3...0.35.0
Changelog
Sourced from uvicorn[standard]'s changelog.
0.35.0 (June 28, 2025)
Added
- Add
WebSocketsSansIOProtocol(#2540)Changed
- Refine help message for option
--proxy-headers(#2653)
Commits
Updates python-dotenv from 1.1.0 to 1.1.1
Release notes
Sourced from python-dotenv's releases.
v1.1.1
What's Changed
- fix: ensure find_dotenv work reliably on python 3.13 by
@theskumarin theskumar/python-dotenv#563- fix(cli): issue with execvpe on Windows by
@wrongontheinternetin theskumar/python-dotenv#566New Contributors
@wrongontheinternetmade their first contribution in theskumar/python-dotenv#566Full Changelog: https://github.com/theskumar/python-dotenv/compare/v1.1.0...v1.1.1
Changelog
Sourced from python-dotenv's changelog.
[1.1.1] - 2025-06-24
Fixed
- CLI: Ensure
find_dotenvwork reliably on python 3.13 by [@theskumar] in #563- CLI: revert the use of execvpe on Windows by [
@wrongontheinternet] in #566
Commits
Updates pydantic from 2.11.5 to 2.11.7
Release notes
Sourced from pydantic's releases.
v2.11.7 2025-06-14
What's Changed
Fixes
- Copy
FieldInfoinstance if necessary duringFieldInfobuild by@Viicosin pydantic/pydantic#11980Full Changelog: https://github.com/pydantic/pydantic/compare/v2.11.6...v2.11.7
v2.11.6 2025-06-13
v2.11.6 (2025-06-13)
What's Changed
Fixes
- Rebuild dataclass fields before schema generation by
@Viicosin #11949- Always store the original field assignment on
FieldInfoby@Viicosin #11946Full Changelog: https://github.com/pydantic/pydantic/compare/v2.11.5...v2.11.6
Changelog
Sourced from pydantic's changelog.
v2.11.7 (2025-06-14)
What's Changed
Fixes
v2.11.6 (2025-06-13)
What's Changed
Fixes
Commits
Updates pydantic-settings from 2.9.1 to 2.10.1
Release notes
Sourced from pydantic-settings's releases.
v2.10.1
What's Changed
- Fix UnboundLocalError error in _replace_field_names_case_insensitively by
@hramezaniin pydantic/pydantic-settings#639- Remove unknown file reference in documentation by
@Viicosin pydantic/pydantic-settings#640- Prepare release 2.10.1 by
@hramezaniin pydantic/pydantic-settings#642Full Changelog: https://github.com/pydantic/pydantic-settings/compare/2.10.0...2.10.1
v2.10.0
What's Changed
- Fix running tests when azure-keyvault-secrets is not installed by
@CyberTailorin pydantic/pydantic-settings#601- Fix running tests when google-cloud-secret-manager is not installed by
@CyberTailorin pydantic/pydantic-settings#602- Support loading a specific nested key from YAML in YamlConfigSettingsSource by
@Seunghan-Jungin pydantic/pydantic-settings#603- Fix CLI suppression for model group help by
@kschwabin pydantic/pydantic-settings#604- Fix missing DEFAULT_PATH import by
@hramezaniin pydantic/pydantic-settings#606- Fix case-insensitive handling of nested aliases in EnvironmentSettingsSource by
@d15kyin pydantic/pydantic-settings#608- Azure Key Vault case insensitive support and dash-underscore translation by
@d15kyin pydantic/pydantic-settings#607- fix: Respect 'cli_parse_args' from model_config with settings_customise_sources by
@karta9821in pydantic/pydantic-settings#611- Bump astral-sh/setup-uv by
@hramezaniin pydantic/pydantic-settings#612- Update packages by
@hramezaniin pydantic/pydantic-settings#613- Update README.md by
@hramezaniin pydantic/pydantic-settings#616- Fix CI badge by
@hramezaniin pydantic/pydantic-settings#617- Update dependencies by
@hramezaniin pydantic/pydantic-settings#618- Fix coverage report by
@hramezaniin pydantic/pydantic-settings#619- Fix _consume_object_or_array on unbalanced brackets in JSON strings by
@andryakin pydantic/pydantic-settings#621- add region as a parameter to aws secret manager by
@barakor-vsin pydantic/pydantic-settings#622- Expose GCP Secret Manager case sensitive option by
@bellmatthewfin pydantic/pydantic-settings#626- Update deps by
@hramezaniin pydantic/pydantic-settings#633- feat: Add
cli_shortcutsto CLI settings by@karta9821in pydantic/pydantic-settings#624- Expose AWS Secrets Manager case sensitive option by
@femiadebayoin pydantic/pydantic-settings#629- Prepare release 2.10.0 by
@hramezaniin pydantic/pydantic-settings#635New Contributors
@Seunghan-Jungmade their first contribution in pydantic/pydantic-settings#603@d15kymade their first contribution in pydantic/pydantic-settings#608@karta9821made their first contribution in pydantic/pydantic-settings#611@andryakmade their first contribution in pydantic/pydantic-settings#621@barakor-vsmade their first contribution in pydantic/pydantic-settings#622@bellmatthewfmade their first contribution in pydantic/pydantic-settings#626@femiadebayomade their first contribution in pydantic/pydantic-settings#629Full Changelog: https://github.com/pydantic/pydantic-settings/compare/v2.9.1...2.10.0
Commits
6bae3abPrepare release 2.10.1 (#642)36b8bfeRemove unknown file reference in documentation (#640)697aaa6Fix UnboundLocalError error in _replace_field_names_case_insensitively (#639)910b1b1Prepare release 2.10.0 (#635)1ee6624Expose AWS Secrets Manager case sensitive option (#629)180e74efeat: Addcli_shortcutsto CLI settings (#624)e162908Update deps (#633)159ef14Expose GCP Secret Manager case sensitive option (#626)e9f7994add region as a parameter to aws secret manager (#622)ca4ff9fFix _consume_object_or_array on unbalanced brackets in JSON strings (#621)- Additional commits viewable in compare view
Updates alembic from 1.16.1 to 1.16.2
Release notes
Sourced from alembic's releases.
1.16.2
Released: June 16, 2025
bug
[bug] [autogenerate] Fixed issue where dialect-specific keyword arguments in
dialect_kwargswere not rendered when rendering theOperations.create_foreign_key()operation. This prevented dialect-specific keywords from being rendered using customRewriterrecipes that modifyops.CreateForeignKeyOp, similar to other issues such as #1635. Pull request courtesy Justin Malin.References: #1671
[bug] [command] Fixed rendering of
pyproject.tomlto include two newlines when appending content to an existing file. Pull request courtesy Jonathan Vanasco.References: #1679
Commits
- See full diff in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions
Pull Request Statistics
1
1
+6
-6
Package Dependencies
Technical Details
| ID: | 2463004 |
| UUID: | 2627833145 |
| Node ID: | PR_kwDOOctpPM6coY05 |
| Host: | GitHub |
| Repository: | Randroids-Dojo/typescript-and-python-bootstrap |
| Merge State: | Unknown |