Browse Source

Merge branch 'fastapi:master' into master

pull/14258/head
Javier Sánchez Castro 5 months ago
committed by GitHub
parent
commit
c23ce529e6
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      .github/workflows/test.yml
  2. 10
      docs/en/docs/release-notes.md
  3. 2
      fastapi/__init__.py

1
.github/workflows/test.yml

@ -14,6 +14,7 @@ on:
env: env:
UV_NO_SYNC: true UV_NO_SYNC: true
INLINE_SNAPSHOT_DEFAULT_FLAGS: review
jobs: jobs:
changes: changes:

10
docs/en/docs/release-notes.md

@ -7,6 +7,16 @@ hide:
## Latest Changes ## Latest Changes
### Internal
* 🔧 Configure `test` workflow to run tests with `inline-snapshot=review`. PR [#14876](https://github.com/fastapi/fastapi/pull/14876) by [@YuriiMotov](https://github.com/YuriiMotov).
## 0.128.6
### Fixes
* 🐛 Fix `on_startup` and `on_shutdown` parameters of `APIRouter`. PR [#14873](https://github.com/fastapi/fastapi/pull/14873) by [@YuriiMotov](https://github.com/YuriiMotov).
### Translations ### Translations
* 🌐 Update translations for zh (update-outdated). PR [#14843](https://github.com/fastapi/fastapi/pull/14843) by [@tiangolo](https://github.com/tiangolo). * 🌐 Update translations for zh (update-outdated). PR [#14843](https://github.com/fastapi/fastapi/pull/14843) by [@tiangolo](https://github.com/tiangolo).

2
fastapi/__init__.py

@ -1,6 +1,6 @@
"""FastAPI framework, high performance, easy to learn, fast to code, ready for production""" """FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
__version__ = "0.128.5" __version__ = "0.128.6"
from starlette import status as status from starlette import status as status

Loading…
Cancel
Save