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

Update dependency fastapi to v0.103.1 #406

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 11, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
fastapi 0.96.0 -> 0.103.1 age adoption passing confidence

Release Notes

tiangolo/fastapi (fastapi)

v0.103.1

Compare Source

Fixes
  • 📌 Pin AnyIO to < 4.0.0 to handle an incompatibility while upgrading to Starlette 0.31.1. PR #​10194 by @​tiangolo.
Docs
Translations
Refactors
Internal

v0.103.0

Compare Source

Features
Docs
  • 📝 Add note to docs about Separate Input and Output Schemas with FastAPI version. PR #​10150 by @​tiangolo.

v0.102.0

Compare Source

Features
Refactors
Docs
Internal

v0.101.1

Compare Source

Fixes
  • ✨ Add ResponseValidationError printable details, to show up in server error logs. PR #​10078 by @​tiangolo.
Refactors
Docs
Translations
Internal

v0.101.0

Compare Source

Features
  • ✨ Enable Pydantic's serialization mode for responses, add support for Pydantic's computed_field, better OpenAPI for response models, proper required attributes, better generated clients. PR #​10011 by @​tiangolo.
Refactors
Upgrades
Translations
Internal

v0.100.1

Compare Source

Fixes
  • 🐛 Replace MultHostUrl to AnyUrl for compatibility with older versions of Pydantic v1. PR #​9852 by @​Kludex.
Docs
  • 📝 Update links for self-hosted Swagger UI, point to v5, for OpenAPI 31.0. PR #​9834 by @​tiangolo.
Translations
Internal

v0.100.0

Compare Source

✨ Support for Pydantic v2

Pydantic version 2 has the core re-written in Rust and includes a lot of improvements and features, for example:

  • Improved correctness in corner cases.
  • Safer types.
  • Better performance and less energy consumption.
  • Better extensibility.
  • etc.

...all this while keeping the same Python API. In most of the cases, for simple models, you can simply upgrade the Pydantic version and get all the benefits. 🚀

In some cases, for pure data validation and processing, you can get performance improvements of 20x or more. This means 2,000% or more. 🤯

When you use FastAPI, there's a lot more going on, processing the request and response, handling dependencies, executing your own code, and particularly, waiting for the network. But you will probably still get some nice performance improvements just from the upgrade.

The focus of this release is compatibility with Pydantic v1 and v2, to make sure your current apps keep working. Later there will be more focus on refactors, correctness, code improvements, and then performance improvements. Some third-party early beta testers that ran benchmarks on the beta releases of FastAPI reported improvements of 2x - 3x. Which is not bad for just doing pip install --upgrade fastapi pydantic. This was not an official benchmark and I didn't check it myself, but it's a good sign.

Migration

Check out the Pydantic migration guide.

For the things that need changes in your Pydantic models, the Pydantic team built bump-pydantic.

A command line tool that will process your code and update most of the things automatically for you. Make sure you have your code in git first, and review each of the changes to make sure everything is correct before committing the changes.

Pydantic v1

This version of FastAPI still supports Pydantic v1. And although Pydantic v1 will be deprecated at some point, ti will still be supported for a while.

This means that you can install the new Pydantic v2, and if something fails, you can install Pydantic v1 while you fix any problems you might have, but having the latest FastAPI.

There are tests for both Pydantic v1 and v2, and test coverage is kept at 100%.

Changes
  • There are new parameter fields supported by Pydantic Field() for:

    • Path()
    • Query()
    • Header()
    • Cookie()
    • Body()
    • Form()
    • File()
  • The new parameter fields are:

    • default_factory
    • alias_priority
    • validation_alias
    • serialization_alias
    • discriminator
    • strict
    • multiple_of
    • allow_inf_nan
    • max_digits
    • decimal_places
    • json_schema_extra

...you can read about them in the Pydantic docs.

  • The parameter regex has been deprecated and replaced by pattern.

  • New Pydantic models use an improved and simplified attribute model_config that takes a simple dict instead of an internal class Config for their configuration.

  • The attribute schema_extra for the internal class Config has been replaced by the key json_schema_extra in the new model_config dict.

  • When you install "fastapi[all]" it now also includes:

  • Now Pydantic Settings is an additional optional package (included in "fastapi[all]"). To use settings you should now import from pydantic_settings import BaseSettings instead of importing from pydantic directly.

  • PR #​9816 by @​tiangolo, included all the work done (in multiple PRs) on the beta branch (main-pv2).

v0.99.1

Compare Source

Fixes
  • 🐛 Fix JSON Schema accepting bools as valid JSON Schemas, e.g. additionalProperties: false. PR #​9781 by @​tiangolo.
Docs

v0.99.0

Compare Source

Note: this is the last release before supporting Pydantic v2. You can try out the beta with support for Pydantic v2 now, a new beta supporting Pydantic v2 with these same changes from this release will be available in the next hours/days. And the final version (0.100.0) with support for Pydantic v2 will be released in the next days (next week).

Now, back to this release (this one doesn't include the beta support for Pydantic v2).

This release has ✨ OpenAPI 3.1.0 ✨ 🎉

Features
  • ✨ Add support for OpenAPI 3.1.0. PR #​9770 by @​tiangolo.

    • New support for documenting webhooks, read the new docs here: Advanced User Guide: OpenAPI Webhooks.
    • Upgrade OpenAPI 3.1.0, this uses JSON Schema 2020-12.
    • Upgrade Swagger UI to version 5.x.x, that supports OpenAPI 3.1.0.
    • Updated examples field in Query(), Cookie(), Body(), etc. based on the latest JSON Schema and OpenAPI. Now it takes a list of examples and they are included directly in the JSON Schema, not outside. Read more about it (including the historical technical details) in the updated docs: Tutorial: Declare Request Example Data.
  • ✨ Add support for deque objects and children in jsonable_encoder. PR #​9433 by @​cranium.

Docs
Translations
Internal

v0.98.0

Compare Source

Note: please also help me try out the beta with support for Pydantic v2: https://github.com/tiangolo/fastapi/releases/tag/0.100.0-beta1

Now, back to this release (this one doesn't include the beta support for Pydantic v2).

Features
Docs
Translations
Internal

v0.97.0

Compare Source

Features
Refactors
  • ⬆️ Upgrade and fully migrate to Ruff, remove isort, includes a couple of tweaks suggested by the new version of Ruff. PR #​9660 by @​tiangolo.
  • ♻️ Update internal type annotations and upgrade mypy. PR #​9658 by @​tiangolo.
  • ♻️ Simplify AsyncExitStackMiddleware as without Python 3.6 AsyncExitStack is always available. PR #​9657 by @​tiangolo.
Upgrades
Internal
  • 💚 Update CI cache to fix installs when dependencies change. PR #​9659 by @​tiangolo.
  • ⬇️ Separate requirements for development into their own requirements.txt files, they shouldn't be extras. PR #​9655 by @​tiangolo.

v0.96.1

Compare Source

Fixes
Upgrades
  • 📌 Update minimum version of Pydantic to >=1.7.4. This fixes an issue when trying to use an old version of Pydantic. PR #​9567 by @​Kludex.
Refactors
  • ♻ Remove media_type from ORJSONResponse as it's inherited from the parent class. PR #​5805 by @​Kludex.
  • ♻ Instantiate HTTPException only when needed, optimization refactor. PR #​5356 by @​pawamoy.
Docs
  • 🔥 Remove link to Pydantic's benchmark, as it was removed there. PR #​5811 by @​Kludex.
Translations
  • 🌐 Fix spelling in Indonesian translation of docs/id/docs/tutorial/index.md. PR #​5635 by @​purwowd.
  • 🌐 Add Russian translation for docs/ru/docs/tutorial/index.md. PR #​5896 by @​Wilidon.
  • 🌐 Add Chinese translations for docs/zh/docs/advanced/response-change-status-code.md and docs/zh/docs/advanced/response-headers.md. PR #​9544 by @​ChoyeonChern.
  • 🌐 Add Russian translation for docs/ru/docs/tutorial/schema-extra-example.md. PR #​9621 by @​Alexandrhub.
Internal

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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from arthurio June 11, 2023 00:02
@netlify
Copy link

netlify bot commented Jun 11, 2023

Deploy Preview for fastapi-filter ready!

Name Link
🔨 Latest commit 85fdc23
🔍 Latest deploy log https://app.netlify.com/sites/fastapi-filter/deploys/6500bebcaa503600082c3cd7
😎 Deploy Preview https://deploy-preview-406--fastapi-filter.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@codecov
Copy link

codecov bot commented Jun 11, 2023

Codecov Report

Merging #406 (c0bfab0) into main (0795911) will not change coverage.
The diff coverage is n/a.

❗ Current head c0bfab0 differs from pull request most recent head 85fdc23. Consider uploading reports for the commit 85fdc23 to get more accurate results

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff            @@
##              main      #406   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files            6         6           
  Lines          180       180           
=========================================
  Hits           180       180           

@renovate renovate bot changed the title Update dependency fastapi to v0.96.1 Update dependency fastapi to v0.97.0 Jun 12, 2023
@renovate renovate bot force-pushed the renovate/fastapi-0.x-lockfile branch from 8913c23 to 54ef056 Compare June 12, 2023 00:42
@renovate renovate bot changed the title Update dependency fastapi to v0.97.0 Update dependency fastapi to v0.98.0 Jun 22, 2023
@renovate renovate bot force-pushed the renovate/fastapi-0.x-lockfile branch 2 times, most recently from 8a72e26 to c924081 Compare June 26, 2023 10:02
@renovate renovate bot changed the title Update dependency fastapi to v0.98.0 Update dependency fastapi to v0.99.0 Jun 30, 2023
@renovate renovate bot force-pushed the renovate/fastapi-0.x-lockfile branch from c924081 to 0997f58 Compare June 30, 2023 22:59
@renovate renovate bot changed the title Update dependency fastapi to v0.99.0 Update dependency fastapi to v0.99.1 Jul 2, 2023
@renovate renovate bot force-pushed the renovate/fastapi-0.x-lockfile branch 2 times, most recently from 3950d3b to c0bfab0 Compare July 7, 2023 16:26
@renovate renovate bot changed the title Update dependency fastapi to v0.99.1 Update dependency fastapi to v0.100.0 Jul 7, 2023
@renovate renovate bot force-pushed the renovate/fastapi-0.x-lockfile branch 12 times, most recently from 169c692 to b8662e4 Compare July 13, 2023 12:23
@renovate renovate bot force-pushed the renovate/fastapi-0.x-lockfile branch 3 times, most recently from 7977f85 to d54b335 Compare July 18, 2023 14:43
@renovate renovate bot force-pushed the renovate/fastapi-0.x-lockfile branch from d54b335 to 46c7bda Compare July 27, 2023 09:31
@renovate renovate bot force-pushed the renovate/fastapi-0.x-lockfile branch from e1d8d02 to 37632f9 Compare August 9, 2023 15:43
@renovate renovate bot changed the title Update dependency fastapi to v0.101.0 Update dependency fastapi to v0.101.1 Aug 14, 2023
@renovate renovate bot force-pushed the renovate/fastapi-0.x-lockfile branch 3 times, most recently from d375e9c to 4374e6f Compare August 20, 2023 18:40
@renovate renovate bot force-pushed the renovate/fastapi-0.x-lockfile branch 2 times, most recently from 8fd3fc9 to 054fc75 Compare August 21, 2023 15:31
@renovate renovate bot changed the title Update dependency fastapi to v0.101.1 Update dependency fastapi to v0.102.0 Aug 25, 2023
@renovate renovate bot force-pushed the renovate/fastapi-0.x-lockfile branch from 054fc75 to e9b0608 Compare August 25, 2023 20:16
@renovate renovate bot changed the title Update dependency fastapi to v0.102.0 Update dependency fastapi to v0.103.0 Aug 26, 2023
@renovate renovate bot force-pushed the renovate/fastapi-0.x-lockfile branch 2 times, most recently from a1a316d to 1cef9f0 Compare August 31, 2023 02:40
@renovate renovate bot changed the title Update dependency fastapi to v0.103.0 Update dependency fastapi to v0.103.1 Sep 2, 2023
@renovate renovate bot force-pushed the renovate/fastapi-0.x-lockfile branch 9 times, most recently from 6018616 to 65e1521 Compare September 6, 2023 22:09
@renovate renovate bot force-pushed the renovate/fastapi-0.x-lockfile branch 2 times, most recently from 327b170 to 0987643 Compare September 12, 2023 19:27
@renovate renovate bot force-pushed the renovate/fastapi-0.x-lockfile branch from 0987643 to 85fdc23 Compare September 12, 2023 19:40
@arthurio
Copy link
Owner

Closing in favor of #447

@arthurio arthurio closed this Sep 12, 2023
@arthurio arthurio deleted the renovate/fastapi-0.x-lockfile branch September 12, 2023 21:41
@renovate
Copy link
Contributor Author

renovate bot commented Sep 12, 2023

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update (>=0.78,<1.0). You will get a PR once a newer version is released. To ignore this dependency forever, add it to the ignoreDeps array of your Renovate config.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

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.

1 participant