Commit Graph

22 Commits

Author SHA256 Message Date
0ad578b6d6 - test against sqlalchemy 1.x
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fastapi?expand=0&rev=37
2023-05-06 15:45:51 +00:00
Steve Kowalik
2cfb93d68a - Update to 0.95.1:
* Fix using Annotated in routers or path operations decorated multiple
    times.
- Add patch remove-classifiers.patch:
  * Remove unknown classifiers.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fastapi?expand=0&rev=35
2023-04-14 04:24:38 +00:00
David Anes
a8a3e16ea7 Accepting request 1073490 from home:david.anes:branches:openSUSE:Factory:Staging:L
- Ignore extra tests to allow building with ringdisabled.

OBS-URL: https://build.opensuse.org/request/show/1073490
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fastapi?expand=0&rev=33
2023-03-21 08:57:10 +00:00
36b764e115 Accepting request 1073258 from home:david.anes:branches:devel:languages:python
- Update to 0.95.0:
  * Highlights
    - This release adds support for dependencies and parameters 
      using Annotated and recommends its usage. 
  * Features
    - Add support for PEP-593 Annotated for specifying dependencies 
      and parameters. PR #4871 by @nzig.
  * Docs
    - Tweak tip recommending Annotated in docs. 
      PR #9270 by @tiangolo.
    - Update order of examples, latest Python version first, and 
      simplify version tab names. PR #9269 by @tiangolo.
    - Update all docs to use Annotated as the main recommendation, 
      with new examples and tests. PR #9268 by @tiangolo.

OBS-URL: https://build.opensuse.org/request/show/1073258
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fastapi?expand=0&rev=32
2023-03-20 14:38:50 +00:00
96d40c3062 Accepting request 1071442 from home:david.anes:branches:devel:languages:python
- Update to 0.94.1:
  * Fixes:
    - Fix types for lifespan, upgrade Starlette to 0.26.1. 
      PR #9245 by @tiangolo.
- Update to 0.94.0: 
  * Upgrades
    - Upgrade python-multipart to support 0.0.6. 
      PR #9212 by @musicinmybrain.
    - Upgrade Starlette version, support new lifespan with state. 
      PR #9239 by @tiangolo.
  * Docs
    - Update Sentry link in docs. PR #9218 by @smeubank.
  * Translations
    - Add Russian translation for docs/ru/docs/history-design-future.md. 
      PR #5986 by @Xewus.
  * Internal
    - Add pydantic to PyPI classifiers. PR #5914 by @yezz123.
    - Bump black from 22.10.0 to 23.1.0. PR #5953 by @dependabot[bot].
    - Bump types-ujson from 5.6.0.0 to 5.7.0.1. 
      PR #6027 by @dependabot[bot].
    - Bump dawidd6/action-download-artifact from 2.24.3 to 2.26.0. 
      PR #6034 by @dependabot[bot].
    - [pre-commit.ci] pre-commit autoupdate. 
      PR #5709 by @pre-commit-ci[bot].

OBS-URL: https://build.opensuse.org/request/show/1071442
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fastapi?expand=0&rev=30
2023-03-15 08:21:33 +00:00
fa7b1ac21f Accepting request 1070705 from home:david.anes:branches:devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1070705
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fastapi?expand=0&rev=29
2023-03-10 12:06:08 +00:00
e7f3758648 Accepting request 1066232 from home:david.anes:branches:devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1066232
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fastapi?expand=0&rev=27
2023-02-16 17:38:11 +00:00
David Anes
dc4c9d2452 Accepting request 1064385 from home:david.anes:branches:devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1064385
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fastapi?expand=0&rev=25
2023-02-11 11:52:31 +00:00
David Anes
363d21ca55 Accepting request 1058066 from home:david.anes:branches:devel:languages:python
- Prune the test suite when run in lettered staging projects:
  * Add a couple more tests that require extra packages.

OBS-URL: https://build.opensuse.org/request/show/1058066
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fastapi?expand=0&rev=23
2023-01-12 18:56:33 +00:00
David Anes
2f01ae3f62 Accepting request 1057952 from home:david.anes:branches:devel:languages:python
- Update to 0.89.1:
  * Fixes
    - Ignore Response classes on return annotation.
  * Docs
    - Update docs and examples for Response Model with Return Type 
      Annotations, and update runtime error. 
    - New docs at Response Model - Return Type: Other Return Type 
      Annotations.
    - Add External Link: FastAPI lambda container: serverless 
      simplified.
  * Translations
    - Add Turkish translation for docs/tr/docs/tutorial/first_steps.md.
- Update to 0.89.0: 
  * Features
    - Add support for function return type annotations to declare the response_model.
  * Docs
    - Add External Link: Authorization on FastAPI with Casbin.
    - Fix typo in docs/en/docs/async.md.
    - Fix typo in docs/en/docs/deployment/concepts.md.
  * Translations
    - Add Russian translation for docs/ru/docs/fastapi-people.md.
    - Fix typo in Chinese translation for docs/zh/docs/benchmarks.md.
    - Add Korean translation for docs/tutorial/cors.md.
* Internal
    - Update coverage[toml] requirement from <7.0,>=6.5.0 to >=6.5.0,<8.0.
    - Update uvicorn[standard] requirement from <0.19.0,>=0.12.0 to >=0.12.0,<0.21.0 for development.
    - Bump dawidd6/action-download-artifact from 2.24.2 to 2.24.3.
    - Update FastAPI People.
    - Bump types-ujson from 5.5.0 to 5.6.0.0.
    - Bump pypa/gh-action-pypi-publish from 1.5.2 to 1.6.4.

OBS-URL: https://build.opensuse.org/request/show/1057952
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fastapi?expand=0&rev=22
2023-01-12 10:23:53 +00:00
OBS User buildservice-autocommit
ae7792c2b8 Updating link to change in openSUSE:Factory/python-fastapi revision 10
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fastapi?expand=0&rev=a91dbb8656ed41e525162f2ba9c988a0
2023-01-05 16:11:42 +00:00
OBS User buildservice-autocommit
3752782d32 Accepting request 1056201 from devel:languages:python
baserev update by copy to link target

OBS-URL: https://build.opensuse.org/request/show/1056201
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fastapi?expand=0&rev=21
2023-01-05 16:11:42 +00:00
58ff790b34 Accepting request 1055981 from home:bnavigator:branches:devel:languages:python
- Remove flit from build requirements: The real used backend
  is hatchling
- Clean up specfile
  * remove duplicate copyright header
  * remove catchall in files section
- Drop python-fastapi-disable-broken-tests.patch
- Prune the test suite when run in lettered staging projects:
  python-mocket pulls this into Ring1. Let's make it as painless as
  possible.

OBS-URL: https://build.opensuse.org/request/show/1055981
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fastapi?expand=0&rev=20
2023-01-05 13:57:54 +00:00
3a83cbf6e8 Accepting request 1038740 from home:david.anes:branches:devel:languages:python
- Starlette newest version is already supported:
  * Remove fastapi-support-startlette-0.21.0.patch
- Add patch to disable a broken test:
  * Add python-fastapi-disable-broken-tests.patch
- Update to 0.88.0
  * Upgrades
    - arrow_up Bump Starlette to version 0.22.0 to fix bad encoding
      for query parameters in new TestClient.
  * Docs
    - pencil2 Fix typo in docs for docs/en/docs/advanced/middleware.md.
  * Translations
    - globe_with_meridians Add Portuguese translation for 
      docs/pt/docs/deployment/docker.md.
- Update to 0.87.0
  * Highlights of this release:
    - Upgraded Starlette
      + Now the TestClient is based on HTTPX instead of Requests.
      + There are some possible breaking changes in the TestClient 
        usage, but @Kludex built bump-testclient to help you 
        automatize migrating your tests. Make sure you are using Git
        and that you can undo any unnecessary changes (false 
        positive changes, etc) before using bump-testclient.
    - New WebSocketException (and docs), re-exported from Starlette.
    - Upgraded and relaxed dependencies for package extras all 
      (including new Uvicorn version), when you install 
      "fastapi[all]".
    - New docs about how to Help Maintain FastAPI.
  * Features:
    - arrow_up Upgrade and relax dependencies for extras "all".
    - sparkles Re-export Starlette's WebSocketException and add it

OBS-URL: https://build.opensuse.org/request/show/1038740
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fastapi?expand=0&rev=18
2022-11-29 08:47:24 +00:00
David Anes
c398675c37 Accepting request 1033506 from home:stroeder:python
Update to 0.86.0

OBS-URL: https://build.opensuse.org/request/show/1033506
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fastapi?expand=0&rev=16
2022-11-04 12:08:35 +00:00
David Anes
dce59800ba Accepting request 1032841 from home:david.anes:branches:devel:languages:python
- Update to 0.85.2
  * Docs:
    - Fix grammar and add helpful links to dependencies in docs/en/docs/async.md.
    - Fix broken link in alternatives.md. 
    - Fix typo in docs about contributing, for compatibility with pip in Zsh. 
    - Fix typo in docs with examples for Python 3.10 instead of 3.9.
  
  *Translations:
    - Add Portuguese translation for docs/pt/docs/tutorial/request-forms.md.
    - Add Chinese translation for docs/zh/docs/tutorial/dependencies/classes-as-dependencies.md.
    - Add French translation for deployment/deta.md.
    - Update Chinese translation for docs/zh/docs/tutorial/query-params-str-validations.md.
    - Add Chinese translation for docs/zh/docs/tutorial/sql-databases.md.
    - Add Chinese translation for docs/zh/docs/advanced/wsgi.md.
    - Add Portuguese translation for docs/pt/docs/tutorial/body-multiple-params.md.
    - Add Portuguese translation for docs/pt/docs/tutorial/path-params-numeric-validations.md.
    - Add French translation for deployment/versions.md.
    - Add French translation for docs/fr/docs/help-fastapi.md.
    - Fix typo in Chinese translation for docs/zh/docs/tutorial/security/first-steps.md.
    - Add Portuguese translation for docs/pt/docs/tutorial/response-status-code.md.
    - Add config for Tamil translations.

OBS-URL: https://build.opensuse.org/request/show/1032841
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fastapi?expand=0&rev=14
2022-11-02 10:42:35 +00:00
e1e43a5737 Accepting request 1032399 from home:david.anes:branches:devel:languages:python
- Update to 0.85.1
  * Fix support for strings in OpenAPI status codes: default, 1XX, 
    2XX, 3XX, 4XX, 5XX.
  * Docs: Add WayScript x FastAPI Tutorial to External Links section
- Add support for Starlette 0.21.0:
  * Add patch fastapi-support-startlette-0.21.0.patch

OBS-URL: https://build.opensuse.org/request/show/1032399
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fastapi?expand=0&rev=12
2022-10-31 09:48:03 +00:00
John Vandenberg
7c85712d36 Accepting request 1004693 from home:stroeder:python
Update to 0.85.0

OBS-URL: https://build.opensuse.org/request/show/1004693
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fastapi?expand=0&rev=10
2022-09-20 08:24:03 +00:00
Steve Kowalik
f7759127c7 - Use email-validator package instead of email_validator.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fastapi?expand=0&rev=8
2022-09-08 07:30:59 +00:00
John Vandenberg
8155e8af4d Accepting request 999486 from home:stroeder:python
Update to 0.81.0

OBS-URL: https://build.opensuse.org/request/show/999486
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fastapi?expand=0&rev=6
2022-08-30 12:27:49 +00:00
John Vandenberg
6a048dabd7 Accepting request 998045 from home:stroeder:python
- Update to 0.79.1

OBS-URL: https://build.opensuse.org/request/show/998045
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fastapi?expand=0&rev=3
2022-08-19 01:29:32 +00:00
aa72c33115 Accepting request 993406 from home:jayvdb:py-submit
https://github.com/tiangolo/fastapi - 48k stars

OBS-URL: https://build.opensuse.org/request/show/993406
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fastapi?expand=0&rev=1
2022-08-06 14:08:09 +00:00