Skip to content
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

fix(deps): update dependency fastapi to ^0.112.0 - autoclosed #106

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 12, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
fastapi ^0.104.0 -> ^0.112.0 age adoption passing confidence

Release Notes

fastapi/fastapi (fastapi)

v0.112.0

Compare Source

Breaking Changes
  • ♻️ Add support for pip install "fastapi[standard]" with standard dependencies and python -m fastapi. PR #​11935 by @​tiangolo.
Summary

Install with:

pip install "fastapi[standard]"
Other Changes
  • This adds support for calling the CLI as:
python -m python
  • And it upgrades fastapi-cli[standard] >=0.0.5.
Technical Details

Before this, fastapi would include the standard dependencies, with Uvicorn and the fastapi-cli, etc.

And fastapi-slim would not include those standard dependencies.

Now fastapi doesn't include those standard dependencies unless you install with pip install "fastapi[standard]".

Before, you would install pip install fastapi, now you should include the standard optional dependencies (unless you want to exclude one of those): pip install "fastapi[standard]".

This change is because having the standard optional dependencies installed by default was being inconvenient to several users, and having to install instead fastapi-slim was not being a feasible solution.

Discussed here: #​11522 and here: #​11525

Docs
Translations
Internal

v0.111.1

Compare Source

Upgrades
  • ➖ Remove orjson and ujson from default dependencies. PR #​11842 by @​tiangolo.
    • These dependencies are still installed when you install with pip install "fastapi[all]". But they not included in pip install fastapi.
  • 📝 Restored Swagger-UI links to use the latest version possible. PR #​11459 by @​UltimateLobster.
Docs
Translations
Internal

v0.111.0

Compare Source

Features

Try it out with:

$ pip install --upgrade fastapi

$ fastapi dev main.py

 ╭────────── FastAPI CLI - Development mode ───────────╮
 │                                                     │
 │  Serving at: http://127.0.0.1:8000                  │
 │                                                     │
 │  API docs: http://127.0.0.1:8000/docs               │
 │                                                     │
 │  Running in development mode, for production use:   │
 │                                                     │
 │  fastapi run                                        │
 │                                                     │
 ╰─────────────────────────────────────────────────────╯

INFO:     Will watch for changes in these directories: ['/home/user/code/awesomeapp']
INFO:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
INFO:     Started reloader process [2248755] using WatchFiles
INFO:     Started server process [2248757]
INFO:     Waiting for application startup.
INFO:     Application startup complete.
Refactors
  • 🔧 Add configs and setup for fastapi-slim including optional extras fastapi-slim[standard], and fastapi including by default the same standard extras. PR #​11503 by @​tiangolo.

v0.110.3

Compare Source

Latest Changes

Docs
Translations
  • 🌐 Add Traditional Chinese translation for docs/zh-hant/benchmarks.md. PR #​11484 by @​KNChiu.
  • 🌐 Update Chinese translation for docs/zh/docs/fastapi-people.md. PR #​11476 by @​billzhong.
  • 🌐 Add Chinese translation for docs/zh/docs/how-to/index.md and docs/zh/docs/how-to/general.md. PR #​11443 by @​billzhong.
  • 🌐 Add Spanish translation for cookie-params docs/es/docs/tutorial/cookie-params.md. PR #​11410 by @​fabianfalon.
Internal

v0.110.2

Compare Source

Fixes
  • 🐛 Fix support for query parameters with list types, handle JSON encoding Pydantic UndefinedType. PR #​9929 by @​arjwilliams.
Refactors
  • ♻️ Simplify Pydantic configs in OpenAPI models in fastapi/openapi/models.py. PR #​10886 by @​JoeTanto2.
  • ✨ Add support for Pydantic's 2.7 new deprecated Field parameter, remove URL from validation errors response. PR #​11461 by @​tiangolo.
Docs
Translations
Internal

v0.110.1

Compare Source

Fixes
Refactors
Upgrades
  • ⬆️ Upgrade Starlette to >=0.37.2,<0.38.0, remove Starlette filterwarning for internal tests. PR #​11266 by @​nothielf.
Docs
Translations

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 becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

github-actions bot commented Dec 12, 2023

🦙 MegaLinter status: ✅ SUCCESS

Descriptor Linter Files Fixed Errors Elapsed time
✅ ACTION actionlint 2 0 0.03s
✅ JSON eslint-plugin-jsonc 2 0 0 1.03s
✅ JSON jsonlint 2 0 0.19s
✅ JSON prettier 2 1 0 0.43s
✅ JSON v8r 2 0 2.87s
✅ MAKEFILE checkmake 1 0 0.01s
✅ MARKDOWN markdownlint 3 0 0 0.5s
✅ MARKDOWN markdown-link-check 3 0 1.01s
✅ MARKDOWN markdown-table-formatter 3 0 0 0.29s
✅ PYTHON black 22 1 0 0.83s
✅ PYTHON flake8 22 0 0.53s
✅ PYTHON isort 22 1 0 0.32s
✅ PYTHON mypy 22 0 5.37s
✅ PYTHON ruff 22 1 0 0.03s
✅ REPOSITORY checkov yes no 8.4s
✅ REPOSITORY gitleaks yes no 0.44s
✅ REPOSITORY git_diff yes no 0.01s
✅ REPOSITORY trivy-sbom yes no 1.17s
✅ YAML prettier 2 2 0 0.45s
✅ YAML v8r 2 0 3.26s
✅ YAML yamllint 2 0 0.24s

See detailed report in MegaLinter reports

MegaLinter is graciously provided by OX Security

@renovate renovate bot changed the title fix(deps): update dependency fastapi to ^0.105.0 fix(deps): update dependency fastapi to ^0.106.0 Dec 25, 2023
@renovate renovate bot force-pushed the renovate/fastapi-0.x branch 2 times, most recently from 48cabdb to 3e259ec Compare December 26, 2023 19:18
@renovate renovate bot changed the title fix(deps): update dependency fastapi to ^0.106.0 fix(deps): update dependency fastapi to ^0.107.0 Dec 26, 2023
@renovate renovate bot force-pushed the renovate/fastapi-0.x branch from 3e259ec to b634993 Compare December 26, 2023 22:12
@renovate renovate bot changed the title fix(deps): update dependency fastapi to ^0.107.0 fix(deps): update dependency fastapi to ^0.108.0 Dec 26, 2023
@renovate renovate bot changed the title fix(deps): update dependency fastapi to ^0.108.0 fix(deps): update dependency fastapi to ^0.109.0 Jan 11, 2024
@renovate renovate bot force-pushed the renovate/fastapi-0.x branch from b634993 to c6624b0 Compare January 11, 2024 16:45
@renovate renovate bot force-pushed the renovate/fastapi-0.x branch from c6624b0 to 4002a4e Compare February 25, 2024 01:13
@renovate renovate bot changed the title fix(deps): update dependency fastapi to ^0.109.0 fix(deps): update dependency fastapi to ^0.110.0 Feb 25, 2024
@renovate renovate bot force-pushed the renovate/fastapi-0.x branch from 4002a4e to ad108c1 Compare May 3, 2024 01:16
@renovate renovate bot changed the title fix(deps): update dependency fastapi to ^0.110.0 fix(deps): update dependency fastapi to ^0.111.0 May 3, 2024
@renovate renovate bot force-pushed the renovate/fastapi-0.x branch from ad108c1 to ddd56b2 Compare August 2, 2024 11:14
@renovate renovate bot changed the title fix(deps): update dependency fastapi to ^0.111.0 fix(deps): update dependency fastapi to ^0.112.0 Aug 2, 2024
@renovate renovate bot changed the title fix(deps): update dependency fastapi to ^0.112.0 fix(deps): update dependency fastapi to ^0.112.0 - autoclosed Aug 6, 2024
@renovate renovate bot closed this Aug 6, 2024
@renovate renovate bot deleted the renovate/fastapi-0.x branch August 6, 2024 07:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants