1
0

2 Commits

Author SHA256 Message Date
0f00a3afd3 Accepting request 1320604 from devel:languages:python
Forwarded request #1320446 from mgrossu

- Update to version 0.122.0:
    * Use 401 status code in security classes when credentials are missing
    * Configure labeler to exclude files that start from underscore for lang-all label. 
    * Add pre-commit config with local script for permalinks.
    * Use font Fira Code to fix display of Rich panels in docs in Windows
    * Add custom pre-commit CI
    * Bump actions/checkout from 5 to 6
    * Upgrade latest-changes GitHub Action and pin actions/checkout@v5
    * Add add-permalinks and add-permalinks-page to scripts/docs.py
    * Upgrade Material for MkDocs and remove insiders
    * Make the result of Depends() and Security() hashable, as a workaround for other tools interacting with these internal parts
    * Bump Starlette to <0.51.0
    * Add missing hash parts
    * Fix typos in code comments
    * Add docs for using FastAPI Cloud
    * Fix handling of JSON Schema attributes named "$ref"
    * Fix links and add missing permalink in docs
    * Fix Depends(func, scope='function') for top level (parameterless) dependencies
    * Upate docs for advanced dependencies with yield, noting the changes in 0.121.0, adding scope
    * Bump ruff from 0.13.2 to 0.14.3
    * [pre-commit.ci] pre-commit autoupdate
  - Update to version 0.121.0:
    * Add support for dependencies with scopes, support scope="request" for dependencies with yield that exit before the response is sent
    * Update FastAPI People - Contributors and Translators
    * Update FastAPI People - Sponsors
    * Update FastAPI GitHub topic repositories
    * Bump mkdocs-macros-plugin from 1.4.0 to 1.4.1
    * Bump mkdocstrings[python] from 0.26.1 to 0.30.1
    * Fix security schemes in OpenAPI when added at the top level app
    * Reduce internal cyclic recursion in dependencies, from 2 functions calling each other to 1 calling itself
    * Refactor internals of dependencies, simplify code and remove get_param_sub_dependant
    * Refactor internals of dependencies, simplify using dataclasses

OBS-URL: https://build.opensuse.org/request/show/1320604
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-fastapi?expand=0&rev=46
2025-12-02 12:18:59 +00:00
942d191f7f - Update to version 0.122.0:
* Use 401 status code in security classes when credentials are missing
  * Configure labeler to exclude files that start from underscore for lang-all label. 
  * Add pre-commit config with local script for permalinks.
  * Use font Fira Code to fix display of Rich panels in docs in Windows
  * Add custom pre-commit CI
  * Bump actions/checkout from 5 to 6
  * Upgrade latest-changes GitHub Action and pin actions/checkout@v5
  * Add add-permalinks and add-permalinks-page to scripts/docs.py
  * Upgrade Material for MkDocs and remove insiders
  * Make the result of Depends() and Security() hashable, as a workaround for other tools interacting with these internal parts
  * Bump Starlette to <0.51.0
  * Add missing hash parts
  * Fix typos in code comments
  * Add docs for using FastAPI Cloud
  * Fix handling of JSON Schema attributes named "$ref"
  * Fix links and add missing permalink in docs
  * Fix Depends(func, scope='function') for top level (parameterless) dependencies
  * Upate docs for advanced dependencies with yield, noting the changes in 0.121.0, adding scope
  * Bump ruff from 0.13.2 to 0.14.3
  * [pre-commit.ci] pre-commit autoupdate
- Update to version 0.121.0:
  * Add support for dependencies with scopes, support scope="request" for dependencies with yield that exit before the response is sent
  * Update FastAPI People - Contributors and Translators
  * Update FastAPI People - Sponsors
  * Update FastAPI GitHub topic repositories
  * Bump mkdocs-macros-plugin from 1.4.0 to 1.4.1
  * Bump mkdocstrings[python] from 0.26.1 to 0.30.1
  * Fix security schemes in OpenAPI when added at the top level app
  * Reduce internal cyclic recursion in dependencies, from 2 functions calling each other to 1 calling itself
  * Refactor internals of dependencies, simplify code and remove get_param_sub_dependant
  * Refactor internals of dependencies, simplify using dataclasses

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fastapi?expand=0&rev=104
2025-11-29 22:20:19 +00:00
4 changed files with 40 additions and 4 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4c5ab43e2a90335bbd8326d1b659eac0f3dbcc015e2af573c4f5de406232c4ac
size 338684

3
fastapi-0.122.0.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cd9b5352031f93773228af8b4c443eedc2ac2aa74b27780387b853c3726fb94b
size 346436

View File

@@ -1,3 +1,39 @@
-------------------------------------------------------------------
Fri Nov 28 11:00:24 UTC 2025 - Marius Grossu <marius.grossu@suse.com>
- Update to version 0.122.0:
* Use 401 status code in security classes when credentials are missing
* Configure labeler to exclude files that start from underscore for lang-all label.
* Add pre-commit config with local script for permalinks.
* Use font Fira Code to fix display of Rich panels in docs in Windows
* Add custom pre-commit CI
* Bump actions/checkout from 5 to 6
* Upgrade latest-changes GitHub Action and pin actions/checkout@v5
* Add add-permalinks and add-permalinks-page to scripts/docs.py
* Upgrade Material for MkDocs and remove insiders
* Make the result of Depends() and Security() hashable, as a workaround for other tools interacting with these internal parts
* Bump Starlette to <0.51.0
* Add missing hash parts
* Fix typos in code comments
* Add docs for using FastAPI Cloud
* Fix handling of JSON Schema attributes named "$ref"
* Fix links and add missing permalink in docs
* Fix Depends(func, scope='function') for top level (parameterless) dependencies
* Upate docs for advanced dependencies with yield, noting the changes in 0.121.0, adding scope
* Bump ruff from 0.13.2 to 0.14.3
* [pre-commit.ci] pre-commit autoupdate
- Update to version 0.121.0:
* Add support for dependencies with scopes, support scope="request" for dependencies with yield that exit before the response is sent
* Update FastAPI People - Contributors and Translators
* Update FastAPI People - Sponsors
* Update FastAPI GitHub topic repositories
* Bump mkdocs-macros-plugin from 1.4.0 to 1.4.1
* Bump mkdocstrings[python] from 0.26.1 to 0.30.1
* Fix security schemes in OpenAPI when added at the top level app
* Reduce internal cyclic recursion in dependencies, from 2 functions calling each other to 1 calling itself
* Refactor internals of dependencies, simplify code and remove get_param_sub_dependant
* Refactor internals of dependencies, simplify using dataclasses
-------------------------------------------------------------------
Fri Oct 31 03:36:17 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>

View File

@@ -31,7 +31,7 @@
%endif
%{?sle15_python_module_pythons}
Name: python-fastapi%{psuffix}
Version: 0.120.2
Version: 0.122.0
Release: 0
Summary: FastAPI framework
License: MIT