]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/log
thirdparty/fastapi/fastapi.git
2 years ago🌐 Add Russian translation for `docs/ru/docs/alternatives.md` (#5994)
Vladislav Kramorenko [Thu, 13 Apr 2023 18:12:48 +0000 (21:12 +0300)] 
🌐 Add Russian translation for `docs/ru/docs/alternatives.md` (#5994)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
2 years ago🌐 Add Portuguese translation for `docs/pt/docs/tutorial/extra-models.md` (#5912)
Lorhan Sohaky [Thu, 13 Apr 2023 18:12:25 +0000 (15:12 -0300)] 
🌐 Add Portuguese translation for `docs/pt/docs/tutorial/extra-models.md` (#5912)

Co-authored-by: Fábio Ueno <fabio.t.ueno@gmail.com>
2 years ago📝 Update release notes
github-actions [Thu, 13 Apr 2023 18:07:18 +0000 (18:07 +0000)] 
📝 Update release notes

2 years ago🌐 Add Portuguese translation for `docs/pt/docs/tutorial/path-operation-configuration...
Lorhan Sohaky [Thu, 13 Apr 2023 18:06:27 +0000 (15:06 -0300)] 
🌐 Add Portuguese translation for `docs/pt/docs/tutorial/path-operation-configuration.md` (#5936)

Co-authored-by: Fábio Ueno <fabio.t.ueno@gmail.com>
2 years ago📝 Update release notes
github-actions [Thu, 13 Apr 2023 18:05:11 +0000 (18:05 +0000)] 
📝 Update release notes

2 years ago🌐 Add Russian translation for `docs/ru/docs/contributing.md` (#6002)
Aleksandr Egorov [Thu, 13 Apr 2023 18:04:30 +0000 (22:04 +0400)] 
🌐 Add Russian translation for `docs/ru/docs/contributing.md` (#6002)

Co-authored-by: stigsanek <alexander.e.egorov@pikta.ru>
Co-authored-by: Marcelo Trylesinski <marcelotryle@gmail.com>
2 years ago📝 Update release notes
github-actions [Thu, 13 Apr 2023 18:03:28 +0000 (18:03 +0000)] 
📝 Update release notes

2 years ago🌐 Add Korean translation for `docs/tutorial/dependencies/classes-as-dependencies...
Sehwan Park [Thu, 13 Apr 2023 18:02:52 +0000 (03:02 +0900)] 
🌐 Add Korean translation for `docs/tutorial/dependencies/classes-as-dependencies.md` (#9176)

Co-authored-by: Nina Hwang <79563565+NinaHwang@users.noreply.github.com>
Co-authored-by: Joona Yoon <joonas-yoon@users.noreply.github.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2 years ago📝 Update release notes
github-actions [Thu, 13 Apr 2023 18:01:31 +0000 (18:01 +0000)] 
📝 Update release notes

2 years ago🌐 Add Russian translation for `docs/ru/docs/project-generation.md` (#9243)
Vladislav Kramorenko [Thu, 13 Apr 2023 18:00:47 +0000 (21:00 +0300)] 
🌐 Add Russian translation for `docs/ru/docs/project-generation.md` (#9243)

2 years ago📝 Update release notes
github-actions [Thu, 13 Apr 2023 18:00:28 +0000 (18:00 +0000)] 
📝 Update release notes

2 years ago🌐 Add French translation for `docs/fr/docs/index.md` (#9265)
Cedric Fraboulet [Thu, 13 Apr 2023 17:59:44 +0000 (19:59 +0200)] 
🌐 Add French translation for `docs/fr/docs/index.md` (#9265)

* docs(index): copy the new index.md from docs/en

* docs(index): add translation for docs/index.md

* Apply rjNemo's suggestions

* Apply Viicos's suggestions

2 years ago📝 Update release notes
github-actions [Thu, 13 Apr 2023 17:58:46 +0000 (17:58 +0000)] 
📝 Update release notes

2 years ago🌐 Add Russian translation for `docs/ru/docs/tutorial/query-params-str-validations...
dedkot [Thu, 13 Apr 2023 17:58:09 +0000 (20:58 +0300)] 
🌐 Add Russian translation for `docs/ru/docs/tutorial/query-params-str-validations.md` (#9267)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2 years ago📝 Update release notes
github-actions [Thu, 13 Apr 2023 17:52:45 +0000 (17:52 +0000)] 
📝 Update release notes

2 years ago🌐 Add Russian translation for `docs/ru/docs/benchmarks.md` (#9271)
Vladislav Kramorenko [Thu, 13 Apr 2023 17:52:11 +0000 (20:52 +0300)] 
🌐 Add Russian translation for `docs/ru/docs/benchmarks.md` (#9271)

* del docs/ru/docs/contributing.md

* ru translate for */docs/ru/docs/project-generation.md

* docs/ru/docs/benchmarks.md

* 🎨 [pre-commit.ci] Auto format from pre-commit.com hooks

* Delete project-generation.md

* Update benchmarks.md

* Update benchmarks.md

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2 years ago📝 Update release notes
github-actions [Thu, 13 Apr 2023 17:49:59 +0000 (17:49 +0000)] 
📝 Update release notes

2 years ago🐛 Fix using `Annotated` in routers or path operations decorated multiple times (...
Sharon Yogev [Thu, 13 Apr 2023 17:49:22 +0000 (20:49 +0300)] 
🐛 Fix using `Annotated` in routers or path operations decorated multiple times (#9315)

* Fix: copy FieldInfo from Annotated arguments

We need to copy the field_info to prevent ourselves from
mutating it.  This allows multiple path or nested routers ,etc.

* 📝 Add comment in fastapi/dependencies/utils.py

Co-authored-by: Nadav Zingerman <7372858+nzig@users.noreply.github.com>
* ✅ Extend and tweak tests for Annotated

* ✅ Tweak coverage, it's probably covered by a different version of Python

---------

Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
Co-authored-by: Nadav Zingerman <7372858+nzig@users.noreply.github.com>
2 years ago📝 Update release notes
github-actions [Mon, 10 Apr 2023 18:28:00 +0000 (18:28 +0000)] 
📝 Update release notes

2 years ago📝 Update release notes
github-actions [Mon, 10 Apr 2023 18:16:44 +0000 (18:16 +0000)] 
📝 Update release notes

2 years ago🔧 Update sponsors, add databento, remove Ines's course and StriveWorks (#9351)
Sebastián Ramírez [Wed, 5 Apr 2023 15:09:04 +0000 (17:09 +0200)] 
🔧 Update sponsors, add databento, remove Ines's course and StriveWorks (#9351)

2 years ago🌐 🔠 📄 🐢 Translate docs to Emoji 🥳 🎉 💥 🤯 🤯 (#5385)
LeeeeT [Sat, 1 Apr 2023 09:26:04 +0000 (12:26 +0300)] 
🌐 🔠 📄 🐢 Translate docs to Emoji 🥳 🎉 💥 🤯 🤯 (#5385)

* 🌐 💬  🩺  🦲

* 🎨 [pre-commit.ci] Auto format from pre-commit.com hooks

* 🛠️😊

* ♻️ Rename emoji lang from emj to em, and main docs name as 😉

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Axd1x8a <26704473+FeeeeK@users.noreply.github.com>
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
2 years ago🔖 Release version 0.95.0 0.95.0
Sebastián Ramírez [Sat, 18 Mar 2023 19:37:42 +0000 (20:37 +0100)] 
🔖 Release version 0.95.0

2 years ago📝 Tweak release notes
Sebastián Ramírez [Sat, 18 Mar 2023 19:37:20 +0000 (20:37 +0100)] 
📝 Tweak release notes

2 years ago📝 Update release notes
Sebastián Ramírez [Sat, 18 Mar 2023 19:24:12 +0000 (20:24 +0100)] 
📝 Update release notes

2 years ago📝 Update release notes
github-actions [Sat, 18 Mar 2023 19:08:30 +0000 (19:08 +0000)] 
📝 Update release notes

2 years ago📝 Tweak tip recommending `Annotated` in docs (#9270)
Sebastián Ramírez [Sat, 18 Mar 2023 19:07:53 +0000 (20:07 +0100)] 
📝 Tweak tip recommending `Annotated` in docs (#9270)

📝 Tweak tip recommending Annotated

2 years ago📝 Update release notes
Sebastián Ramírez [Sat, 18 Mar 2023 18:46:47 +0000 (19:46 +0100)] 
📝 Update release notes

2 years ago📝 Update release notes
github-actions [Sat, 18 Mar 2023 16:16:37 +0000 (16:16 +0000)] 
📝 Update release notes

2 years ago📝 Update order of examples, latest Python version first, and simplify version tab...
Sebastián Ramírez [Sat, 18 Mar 2023 16:16:02 +0000 (17:16 +0100)] 
📝 Update order of examples, latest Python version first, and simplify version tab names (#9269)

* 📝 Simplify names in Python versions in tabs in docs

* 📝 Update docs for Types Intro, explain Python 3.6+, Python 3.9+, Python 3.10+

* 📝 Re-order all Python examples, show latest Python versions first

2 years ago📝 Update release notes
github-actions [Sat, 18 Mar 2023 12:30:38 +0000 (12:30 +0000)] 
📝 Update release notes

2 years ago📝 Update all docs to use `Annotated` as the main recommendation, with new examples...
Sebastián Ramírez [Sat, 18 Mar 2023 12:29:59 +0000 (13:29 +0100)] 
📝 Update all docs to use `Annotated` as the main recommendation, with new examples and tests (#9268)

* 🍱 Add new source examples with Annotated for Query Params and String Validations

* 📝 Add new docs with Annotated for Query Params and String Validations

* 🚚 Rename incorrectly named tests for Query Params and str validations

* ✅ Add new tests with Annotated for Query Params and Sring Validations examples

* 🍱 Add new examples with Annotated for Intro to Python Types

* 📝 Update Python Types Intro, include Annotated

* 🎨 Fix formatting in Query params and string validation, and highlight

* 🍱 Add new Annotated source examples for Path Params and Numeric Validations

* 📝 Update docs for Path Params and Numeric Validations with Annotated

* 🍱 Add new source examples with Annotated for Body - Multiple Params

* 📝 Update docs with Annotated for Body - Multiple Parameters

* ✅ Add test for new Annotated examples in Body - Multiple Parameters

* 🍱 Add new Annotated source examples for Body Fields

* 📝 Update docs for Body Fields with new Annotated examples

* ✅ Add new tests for new Annotated examples for Body Fields

* 🍱 Add new Annotated source examples for Schema Extra (Example Data)

* 📝 Update docs for Schema Extra with Annotated

* ✅ Add tests for new Annotated examples for Schema Extra

* 🍱 Add new Annnotated source examples for Extra Data Types

* 📝 Update docs with Annotated for Extra Data Types

* ✅ Add tests for new Annotated examples for Extra Data Types

* 🍱 Add new Annotated source examples for Cookie Parameters

* 📝 Update docs for Cookie Parameters with Annotated examples

* ✅ Add tests for new Annotated source examples in Cookie Parameters

* 🍱 Add new Annotated examples for Header Params

* 📝 Update docs with Annotated examples for Header Parameters

* ✅ Add tests for new Annotated examples for Header Params

* 🍱 Add new Annotated examples for Form Data

* 📝 Update Annotated docs for Form Data

* ✅ Add tests for new Annotated examples in Form Data

* 🍱 Add new Annotated source examples for Request Files

* 📝 Update Annotated docs for Request Files

* ✅ Test new Annotated examples for Request Files

* 🍱 Add new Annotated source examples for Request Forms and Files

* ✅ Add tests for new Anotated examples for Request Forms and Files

* 🍱 Add new Annotated source examples for Dependencies and Advanced Dependencies

* ✅ Add tests for new Annotated dependencies

* 📝 Add new docs for using Annotated with dependencies including type aliases

* 📝 Update docs for Classes as Dependencies with Annotated

* 📝 Update docs for Sub-dependencies with Annotated

* 📝 Update docs for Dependencies in path operation decorators with Annotated

* 📝 Update docs for Global Dependencies with Annotated

* 📝 Update docs for Dependencies with yield with Annotated

* 🎨 Update format in example for dependencies with Annotated

* 🍱 Add source examples with Annotated for Security

* ✅ Add tests for new Annotated examples for security

* 📝 Update docs for Security - First Steps with Annotated

* 📝 Update docs for Security: Get Current User with Annotated

* 📝 Update docs for Simple OAuth2 with Password and Bearer with Annotated

* 📝 Update docs for OAuth2 with Password (and hashing), Bearer with JWT tokens with Annotated

* 📝 Update docs for Request Forms and Files with Annotated

* 🍱 Add new source examples for Bigger Applications with Annotated

* ✅ Add new tests for Bigger Applications with Annotated

* 📝 Update docs for Bigger Applications - Multiple Files with Annotated

* 🍱 Add source examples for background tasks with Annotated

* 📝 Update docs for Background Tasks with Annotated

* ✅ Add test for Background Tasks with Anotated

* 🍱 Add new source examples for docs for Testing with Annotated

* 📝 Update docs for Testing with Annotated

* ✅ Add tests for Annotated examples for Testing

* 🍱 Add new source examples for Additional Status Codes with Annotated

* ✅ Add tests for new Annotated examples for Additional Status Codes

* 📝 Update docs for Additional Status Codes with Annotated

* 📝 Update docs for Advanced Dependencies with Annotated

* 📝 Update docs for OAuth2 scopes with Annotated

* 📝 Update docs for HTTP Basic Auth with Annotated

* 🍱 Add source examples with Annotated for WebSockets

* ✅ Add tests for new Annotated examples for WebSockets

* 📝 Update docs for WebSockets with new Annotated examples

* 🍱 Add source examples with Annotated for Settings and Environment Variables

* 📝 Update docs for Settings and Environment Variables with Annotated

* 🍱 Add new source examples for testing dependencies with Annotated

* ✅ Add tests for new examples for testing dependencies

* 📝 Update docs for testing dependencies with new Annotated examples

* ✅ Update and fix marker for Python 3.9 test

* 🔧 Update Ruff ignores for source examples in docs

* ✅ Fix some tests in the grid for Python 3.9 (incorrectly testing 3.10)

* 🔥 Remove source examples and tests for (non existent) docs section about Annotated, as it's covered in all the rest of the docs

2 years ago📝 Update release notes
github-actions [Fri, 17 Mar 2023 20:36:26 +0000 (20:36 +0000)] 
📝 Update release notes

2 years ago✨Add support for PEP-593 `Annotated` for specifying dependencies and parameters ...
Nadav Zingerman [Fri, 17 Mar 2023 20:35:45 +0000 (22:35 +0200)] 
✨Add support for PEP-593 `Annotated` for specifying dependencies and parameters (#4871)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
2 years ago🔖 Release version 0.94.1 0.94.1
Sebastián Ramírez [Tue, 14 Mar 2023 02:27:11 +0000 (03:27 +0100)] 
🔖 Release version 0.94.1

2 years ago📝 Update release notes
github-actions [Tue, 14 Mar 2023 02:19:50 +0000 (02:19 +0000)] 
📝 Update release notes

2 years ago🎨 Fix types for lifespan, upgrade Starlette to 0.26.1 (#9245)
Sebastián Ramírez [Tue, 14 Mar 2023 02:19:04 +0000 (03:19 +0100)] 
🎨 Fix types for lifespan, upgrade Starlette to 0.26.1 (#9245)

2 years ago🔖 Release version 0.94.0 0.94.0
Sebastián Ramírez [Fri, 10 Mar 2023 19:00:49 +0000 (20:00 +0100)] 
🔖 Release version 0.94.0

2 years ago📝 Update release notes
Sebastián Ramírez [Fri, 10 Mar 2023 19:00:09 +0000 (20:00 +0100)] 
📝 Update release notes

2 years ago📝 Update release notes
github-actions [Fri, 10 Mar 2023 18:57:58 +0000 (18:57 +0000)] 
📝 Update release notes

2 years ago📝 Update release notes
github-actions [Fri, 10 Mar 2023 18:57:42 +0000 (18:57 +0000)] 
📝 Update release notes

2 years ago⬆ Bump black from 22.10.0 to 23.1.0 (#5953)
dependabot[bot] [Fri, 10 Mar 2023 18:57:21 +0000 (19:57 +0100)] 
⬆ Bump black from 22.10.0 to 23.1.0 (#5953)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
2 years ago⬆ Bump types-ujson from 5.6.0.0 to 5.7.0.1 (#6027)
dependabot[bot] [Fri, 10 Mar 2023 18:57:07 +0000 (19:57 +0100)] 
⬆ Bump types-ujson from 5.6.0.0 to 5.7.0.1 (#6027)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
2 years ago📝 Update release notes
github-actions [Fri, 10 Mar 2023 18:51:19 +0000 (18:51 +0000)] 
📝 Update release notes

2 years ago⬆ Bump dawidd6/action-download-artifact from 2.24.3 to 2.26.0 (#6034)
dependabot[bot] [Fri, 10 Mar 2023 18:50:08 +0000 (19:50 +0100)] 
⬆ Bump dawidd6/action-download-artifact from 2.24.3 to 2.26.0 (#6034)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
2 years ago📝 Update release notes
github-actions [Fri, 10 Mar 2023 18:49:54 +0000 (18:49 +0000)] 
📝 Update release notes

2 years ago⬆ [pre-commit.ci] pre-commit autoupdate (#5709)
pre-commit-ci[bot] [Fri, 10 Mar 2023 18:49:18 +0000 (19:49 +0100)] 
⬆ [pre-commit.ci] pre-commit autoupdate (#5709)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
2 years ago📝 Update release notes
github-actions [Fri, 10 Mar 2023 18:48:20 +0000 (18:48 +0000)] 
📝 Update release notes

2 years ago➕ Add `pydantic` to PyPI classifiers (#5914)
Yasser Tahiri [Fri, 10 Mar 2023 18:47:38 +0000 (22:47 +0400)] 
➕ Add `pydantic` to PyPI classifiers (#5914)

2 years ago📝 Update release notes
github-actions [Fri, 10 Mar 2023 18:43:10 +0000 (18:43 +0000)] 
📝 Update release notes

2 years ago🌐 Add Russian translation for `docs/ru/docs/history-design-future.md` (#5986)
Vladislav Kramorenko [Fri, 10 Mar 2023 18:42:25 +0000 (21:42 +0300)] 
🌐 Add Russian translation for `docs/ru/docs/history-design-future.md` (#5986)

2 years ago📝 Update release notes
github-actions [Fri, 10 Mar 2023 18:32:12 +0000 (18:32 +0000)] 
📝 Update release notes

2 years ago⬆ Upgrade python-multipart to support 0.0.6 (#9212)
Ben Beasley [Fri, 10 Mar 2023 18:31:36 +0000 (13:31 -0500)] 
⬆ Upgrade python-multipart to support 0.0.6 (#9212)

2 years ago📝 Update release notes
github-actions [Fri, 10 Mar 2023 18:27:50 +0000 (18:27 +0000)] 
📝 Update release notes

2 years ago📝 Update Sentry link in docs (#9218)
Steven Eubank [Fri, 10 Mar 2023 18:27:10 +0000 (19:27 +0100)] 
📝 Update Sentry link in docs (#9218)

2 years ago📝 Update release notes
github-actions [Fri, 10 Mar 2023 18:24:42 +0000 (18:24 +0000)] 
📝 Update release notes

2 years ago⬆️ Upgrade Starlette version, support new `lifespan` with state (#9239)
Sebastián Ramírez [Fri, 10 Mar 2023 18:24:04 +0000 (19:24 +0100)] 
⬆️ Upgrade Starlette version, support new `lifespan` with state (#9239)

2 years ago🔖 Release version 0.93.0 0.93.0
Sebastián Ramírez [Tue, 7 Mar 2023 16:06:47 +0000 (17:06 +0100)] 
🔖 Release version 0.93.0

2 years ago📝 Update release notes
Sebastián Ramírez [Tue, 7 Mar 2023 16:04:40 +0000 (17:04 +0100)] 
📝 Update release notes

2 years ago📝 Update release notes
github-actions [Tue, 7 Mar 2023 15:46:37 +0000 (15:46 +0000)] 
📝 Update release notes

2 years ago✨ Add support for `lifespan` async context managers (superseding `startup` and `shutd...
Jordan Speicher [Tue, 7 Mar 2023 15:46:00 +0000 (09:46 -0600)] 
✨ Add support for `lifespan` async context managers (superseding `startup` and `shutdown` events) (#2944)

Co-authored-by: Mike Shantz <mshantz@coldstorage.com>
Co-authored-by: Jonathan Plasse <13716151+JonathanPlasse@users.noreply.github.com>
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
2 years ago📝 Update release notes
github-actions [Mon, 6 Mar 2023 19:32:19 +0000 (19:32 +0000)] 
📝 Update release notes

2 years ago🌐 Tamil translations - initial setup (#5564)
gusty1g [Mon, 6 Mar 2023 19:31:37 +0000 (01:01 +0530)] 
🌐 Tamil translations - initial setup (#5564)

Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
2 years ago📝 Update release notes
github-actions [Mon, 6 Mar 2023 16:29:17 +0000 (16:29 +0000)] 
📝 Update release notes

2 years ago🌐 Add French translation for `docs/fr/docs/advanced/path-operation-advanced-configura...
Axel [Mon, 6 Mar 2023 16:28:40 +0000 (17:28 +0100)] 
🌐 Add French translation for `docs/fr/docs/advanced/path-operation-advanced-configuration.md` (#9221)

Co-authored-by: Julian Maurin <julian.maurin.perso@pm.me>
Co-authored-by: Cedric Fraboulet <62244267+frabc@users.noreply.github.com>
2 years ago📝 Update release notes
github-actions [Mon, 6 Mar 2023 16:27:29 +0000 (16:27 +0000)] 
📝 Update release notes

2 years ago🌐 Add French translation for `docs/tutorial/debugging.md` (#9175)
Cedric Fraboulet [Mon, 6 Mar 2023 16:26:49 +0000 (17:26 +0100)] 
🌐 Add French translation for `docs/tutorial/debugging.md` (#9175)

2 years ago📝 Update release notes
github-actions [Sat, 4 Mar 2023 12:52:10 +0000 (12:52 +0000)] 
📝 Update release notes

2 years ago🌐 Initiate Armenian translation setup (#5844)
har8 [Sat, 4 Mar 2023 12:51:37 +0000 (16:51 +0400)] 
🌐 Initiate Armenian translation setup (#5844)

Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
2 years ago📝 Update release notes
github-actions [Sat, 4 Mar 2023 12:43:32 +0000 (12:43 +0000)] 
📝 Update release notes

2 years ago✏ Fix formatting in `docs/en/docs/tutorial/metadata.md` for `ReDoc` (#6005)
eykamp [Sat, 4 Mar 2023 12:42:55 +0000 (04:42 -0800)] 
✏ Fix formatting in `docs/en/docs/tutorial/metadata.md` for `ReDoc` (#6005)

2 years ago✏ Fix typo in `docs/en/docs/tutorial/bigger-applications.md`, "codes" to "code" ...
Aayush Chhabra [Sat, 4 Mar 2023 12:17:21 +0000 (17:47 +0530)] 
✏ Fix typo in `docs/en/docs/tutorial/bigger-applications.md`, "codes" to "code" (#5990)

Typo in docs: it should be code instead of codes

2 years ago📝 Update release notes
github-actions [Sat, 4 Mar 2023 12:02:42 +0000 (12:02 +0000)] 
📝 Update release notes

2 years ago🌐 Add French translation for `deployment/manually.md` (#3693)
Ruidy [Sat, 4 Mar 2023 12:02:09 +0000 (13:02 +0100)] 
🌐 Add French translation for `deployment/manually.md` (#3693)

Co-authored-by: Sam Courtemanche <smlep.pro@gmail.com>
Co-authored-by: Ruidy <r.nemausat@empfohlen.de>
Co-authored-by: Ruidy <rnemausat@newstore.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
2 years ago📝 Update release notes
github-actions [Sat, 4 Mar 2023 11:45:13 +0000 (11:45 +0000)] 
📝 Update release notes

2 years ago👷 Update translation bot messages (#9206)
Sebastián Ramírez [Sat, 4 Mar 2023 11:44:30 +0000 (12:44 +0100)] 
👷 Update translation bot messages (#9206)

2 years ago📝 Update release notes
github-actions [Sat, 4 Mar 2023 10:40:08 +0000 (10:40 +0000)] 
📝 Update release notes

2 years ago👷 Update translations bot to use Discussions, and notify when a PR is done (#9183)
Sebastián Ramírez [Sat, 4 Mar 2023 10:39:28 +0000 (11:39 +0100)] 
👷 Update translations bot to use Discussions, and notify when a PR is done (#9183)

2 years ago📝 Update release notes
github-actions [Sat, 4 Mar 2023 07:35:11 +0000 (07:35 +0000)] 
📝 Update release notes

2 years ago🔧 Update sponsors-badges (#9182)
Sebastián Ramírez [Sat, 4 Mar 2023 07:34:39 +0000 (08:34 +0100)] 
🔧 Update sponsors-badges (#9182)

2 years ago📝 Update release notes
github-actions [Sat, 4 Mar 2023 07:30:07 +0000 (07:30 +0000)] 
📝 Update release notes

2 years ago👥 Update FastAPI People (#9181)
github-actions[bot] [Sat, 4 Mar 2023 07:29:30 +0000 (08:29 +0100)] 
👥 Update FastAPI People (#9181)

Co-authored-by: github-actions <github-actions@github.com>
2 years ago📝 Update release notes
github-actions [Thu, 2 Mar 2023 15:11:54 +0000 (15:11 +0000)] 
📝 Update release notes

2 years ago🔊 Log GraphQL errors in FastAPI People, because it returns 200, with a payload with...
Sebastián Ramírez [Thu, 2 Mar 2023 15:11:17 +0000 (16:11 +0100)] 
🔊 Log GraphQL errors in FastAPI People, because it returns 200, with a payload with an error (#9171)

2 years ago📝 Update release notes
github-actions [Thu, 2 Mar 2023 13:07:40 +0000 (13:07 +0000)] 
📝 Update release notes

2 years ago💚 Fix/workaround GitHub Actions in Docker with git for FastAPI People (#9169)
Sebastián Ramírez [Thu, 2 Mar 2023 13:06:57 +0000 (14:06 +0100)] 
💚 Fix/workaround GitHub Actions in Docker with git for FastAPI People (#9169)

2 years ago📝 Update release notes
github-actions [Wed, 1 Mar 2023 13:22:41 +0000 (13:22 +0000)] 
📝 Update release notes

2 years ago♻️ Refactor FastAPI Experts to use only discussions now that questions are migrated...
Sebastián Ramírez [Wed, 1 Mar 2023 13:22:00 +0000 (14:22 +0100)] 
♻️ Refactor FastAPI Experts to use only discussions now that questions are migrated (#9165)

2 years ago📝 Update release notes
github-actions [Tue, 21 Feb 2023 10:24:13 +0000 (10:24 +0000)] 
📝 Update release notes

2 years ago⬆️ Upgrade analytics (#6025)
Sebastián Ramírez [Tue, 21 Feb 2023 10:23:37 +0000 (11:23 +0100)] 
⬆️ Upgrade analytics (#6025)

2 years ago📝 Update release notes
github-actions [Thu, 16 Feb 2023 18:51:02 +0000 (18:51 +0000)] 
📝 Update release notes

2 years ago⬆️ Upgrade and re-enable installing Typer-CLI (#6008)
Sebastián Ramírez [Thu, 16 Feb 2023 18:50:21 +0000 (19:50 +0100)] 
⬆️ Upgrade and re-enable installing Typer-CLI (#6008)

2 years ago🔖 Release version 0.92.0 0.92.0
Sebastián Ramírez [Tue, 14 Feb 2023 09:17:53 +0000 (10:17 +0100)] 
🔖 Release version 0.92.0

2 years ago📝 Update release notes
Sebastián Ramírez [Tue, 14 Feb 2023 09:17:08 +0000 (10:17 +0100)] 
📝 Update release notes

2 years ago📝 Update release notes
github-actions [Tue, 14 Feb 2023 09:13:56 +0000 (09:13 +0000)] 
📝 Update release notes

2 years ago⬆️ Upgrade Starlette to 0.25.0 (#5996)
Sebastián Ramírez [Tue, 14 Feb 2023 09:13:22 +0000 (10:13 +0100)] 
⬆️ Upgrade Starlette to 0.25.0 (#5996)

2 years ago🔖 Release version 0.91.0 0.91.0
Sebastián Ramírez [Fri, 10 Feb 2023 14:33:25 +0000 (15:33 +0100)] 
🔖 Release version 0.91.0

2 years ago📝 Update release notes
Sebastián Ramírez [Fri, 10 Feb 2023 14:32:23 +0000 (15:32 +0100)] 
📝 Update release notes

2 years ago📝 Update release notes
github-actions [Fri, 10 Feb 2023 14:13:57 +0000 (14:13 +0000)] 
📝 Update release notes

2 years ago⬆️ Upgrade Starlette version to `0.24.0` and refactor internals for compatibility...
Sebastián Ramírez [Fri, 10 Feb 2023 14:13:04 +0000 (15:13 +0100)] 
⬆️ Upgrade Starlette version to `0.24.0` and refactor internals for compatibility (#5985)