]>
git.ipfire.org Git - thirdparty/fastapi/fastapi.git/log
github-actions [Sat, 19 Dec 2020 18:06:59 +0000 (18:06 +0000)]
📝 Update release notes
Sebastián Ramírez [Sat, 19 Dec 2020 18:06:19 +0000 (19:06 +0100)]
➖ Remove Typer as a docs building dependency (covered by typer-cli) to fix pip resolver conflicts (#2539)
github-actions [Sat, 19 Dec 2020 14:06:30 +0000 (14:06 +0000)]
📝 Update release notes
vjanz [Sat, 19 Dec 2020 14:05:49 +0000 (15:05 +0100)]
🌐 Start translation of the documentation for the Albanian language (#2516)
github-actions [Sun, 13 Dec 2020 15:34:30 +0000 (15:34 +0000)]
📝 Update release notes
Sebastián Ramírez [Sun, 13 Dec 2020 15:33:46 +0000 (16:33 +0100)]
✨ Add newsletter: FastAPI and friends (#2509)
* ✨ Add newsletter: FastAPI and friends
* 🔧 Update MkDocs config for announcement
* 🔧 Update generation script to include overrides for announcements
github-actions [Sat, 12 Dec 2020 21:28:29 +0000 (21:28 +0000)]
📝 Update release notes
Sebastián Ramírez [Sat, 12 Dec 2020 21:27:46 +0000 (22:27 +0100)]
✨ Add new Gold Sponsor: InvestSuite 🎉 (#2508)
github-actions [Sun, 6 Dec 2020 08:36:00 +0000 (08:36 +0000)]
📝 Update release notes
Sebastián Ramírez [Sun, 6 Dec 2020 08:35:21 +0000 (09:35 +0100)]
🔧 Add issue template configs (#2476)
🔧 Add issue template configs
github-actions [Thu, 3 Dec 2020 17:38:21 +0000 (17:38 +0000)]
📝 Update release notes
Xie Wei [Thu, 3 Dec 2020 17:36:46 +0000 (01:36 +0800)]
🌐 Add Chinese translation for Tutorial - Extra Models (#2416)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
github-actions [Thu, 3 Dec 2020 17:28:44 +0000 (17:28 +0000)]
📝 Update release notes
Xie Wei [Thu, 3 Dec 2020 17:27:58 +0000 (01:27 +0800)]
🌐 Add Chinese translation for Tutorial - Response Model (#2414)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
github-actions [Thu, 3 Dec 2020 17:08:59 +0000 (17:08 +0000)]
📝 Update release notes
maoyibo [Thu, 3 Dec 2020 17:08:11 +0000 (01:08 +0800)]
🌐 Add Chinese translation for Tutorial - Schema Extra Example (#2411)
github-actions [Thu, 3 Dec 2020 17:06:04 +0000 (17:06 +0000)]
📝 Update release notes
hard_coder [Thu, 3 Dec 2020 17:05:19 +0000 (02:05 +0900)]
🌐 Add Korean translation for Index (#2192)
github-actions [Thu, 3 Dec 2020 17:01:38 +0000 (17:01 +0000)]
📝 Update release notes
atsumi [Thu, 3 Dec 2020 17:00:54 +0000 (02:00 +0900)]
🌐 Add Japanese translation for Advanced User Guide - Additional Status Codes (#2145)
Co-authored-by: Taki Komiyama <39375566+komtaki@users.noreply.github.com>
Co-authored-by: T. Tokusumi <41147016+tokusumi@users.noreply.github.com>
github-actions [Thu, 3 Dec 2020 16:58:32 +0000 (16:58 +0000)]
📝 Update release notes
Sebastián Ramírez [Thu, 3 Dec 2020 16:57:50 +0000 (17:57 +0100)]
📝 Update title for Deta tutorial (#2466)
github-actions [Wed, 2 Dec 2020 07:00:39 +0000 (07:00 +0000)]
📝 Update release notes
github-actions[bot] [Tue, 1 Dec 2020 18:12:45 +0000 (19:12 +0100)]
👥 Update FastAPI People (#2454)
Co-authored-by: github-actions <github-actions@github.com>
Sebastián Ramírez [Sun, 29 Nov 2020 18:36:38 +0000 (19:36 +0100)]
🔖 Release version 0.62.0
Sebastián Ramírez [Sun, 29 Nov 2020 18:35:10 +0000 (19:35 +0100)]
📝 Update release notes, add breaking changes details
Sebastián Ramírez [Sun, 29 Nov 2020 18:17:35 +0000 (19:17 +0100)]
📝 Update release notes
github-actions [Sun, 29 Nov 2020 18:04:51 +0000 (18:04 +0000)]
📝 Update release notes
Sebastián Ramírez [Sun, 29 Nov 2020 18:04:27 +0000 (19:04 +0100)]
🔧 Update TestDriven link to course in sponsors (#2435)
Sebastián Ramírez [Sun, 29 Nov 2020 17:55:48 +0000 (18:55 +0100)]
📝 Update release notes
github-actions [Sun, 29 Nov 2020 17:32:46 +0000 (17:32 +0000)]
📝 Update release notes
Sebastián Ramírez [Sun, 29 Nov 2020 17:32:18 +0000 (18:32 +0100)]
✨ Add support for shared/top-level parameters (dependencies, tags, etc) (#2434)
* ✨ Add Default and DefaultPlaceholder data structures
to handle defaults and overrides
* ✨ Add utils to get values by priority handling DefaultPlaceholders
* ✨ Add support for top-level parameters in FastAPI, APIRouter, include_router
including: prefix, tags, dependencies, deprecated, include_in_schema, responses, default_response_class, callbacks
* ♻️ Update openapi utils to handle DefaultPlaceholder for response_class
* 📝 Update bigger-application example code to use top-level params
and showcase them in APIRouter, FastAPI, include_router
* 📝 Update docs for Bigger Applications, include diagrams, top-level params
* 🔥 Simplify code and docs for callbacks as default_response_class is no longer required
* 📝 Add docs for top-level dependencies, in FastAPI()
* 📝 Add docs reference to top-level dependencies in docs for decorator
* ✅ Update/increase tests for Bigger Applications including shared parameters
* ✅ Add tests for top-level dependencies in FastAPI()
* ✅ Add tests for internal DefaultPlaceholder
* ✅ Update/increase tests for callbacks with top-level parameters
* ✅ Add LOTS of tests covering branches and cases for shared parameters
in top-level FastAPI, path operations, include_router, APIRouter, its path operations, nested include_router, nested APIRouter, and its path operations
* 🎨 Format/reorder parameters for consistency in FastAPI, APIRouter, include_router
github-actions [Wed, 25 Nov 2020 17:48:13 +0000 (17:48 +0000)]
📝 Update release notes
atsumi [Wed, 25 Nov 2020 17:47:45 +0000 (02:47 +0900)]
🌐 Add Japanese translation for Advanced - Custom Response (#2193)
Co-authored-by: T. Tokusumi <41147016+tokusumi@users.noreply.github.com>
Co-authored-by: Taki Komiyama <39375566+komtaki@users.noreply.github.com>
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
github-actions [Wed, 25 Nov 2020 17:46:45 +0000 (17:46 +0000)]
📝 Update release notes
Spaceack [Wed, 25 Nov 2020 17:35:39 +0000 (01:35 +0800)]
🌐 Add Chinese translation for Benchmarks (#2119)
github-actions [Wed, 25 Nov 2020 17:35:19 +0000 (17:35 +0000)]
📝 Update release notes
Xie Wei [Wed, 25 Nov 2020 17:34:50 +0000 (01:34 +0800)]
🌐 Add Chinese translation for Tutorial - Body - Nested Models (#1609)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
github-actions [Wed, 25 Nov 2020 17:28:00 +0000 (17:28 +0000)]
📝 Update release notes
Ikkyu [Wed, 25 Nov 2020 17:27:34 +0000 (01:27 +0800)]
🌐 Add Chinese translation for Advanced - Custom Response (#1459)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
github-actions [Wed, 25 Nov 2020 17:23:01 +0000 (17:23 +0000)]
📝 Update release notes
Ikkyu [Wed, 25 Nov 2020 17:22:34 +0000 (01:22 +0800)]
🌐 Add Chinese translation for Advanced - Return a Response Directly (#1452)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
github-actions [Wed, 25 Nov 2020 17:16:53 +0000 (17:16 +0000)]
📝 Update release notes
Ikkyu [Wed, 25 Nov 2020 17:16:20 +0000 (01:16 +0800)]
🌐 Add Chinese translation for Advanced - Additional Status Codes (#1451)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
github-actions [Wed, 25 Nov 2020 17:12:26 +0000 (17:12 +0000)]
📝 Update release notes
Ikkyu [Wed, 25 Nov 2020 17:11:59 +0000 (01:11 +0800)]
🌐 Add Chinese translation for Advanced - Path Operation Advanced Configuration (#1447)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
github-actions [Wed, 25 Nov 2020 17:07:41 +0000 (17:07 +0000)]
📝 Update release notes
Ikkyu [Wed, 25 Nov 2020 17:07:17 +0000 (01:07 +0800)]
🌐 Add Chinese translation for Advanced User Guide - Intro (#1445)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
github-actions [Wed, 25 Nov 2020 16:40:33 +0000 (16:40 +0000)]
📝 Update release notes
Sebastián Ramírez [Wed, 25 Nov 2020 16:40:07 +0000 (17:40 +0100)]
🍱 Update sponsor logos (#2418)
github-actions [Tue, 10 Nov 2020 19:52:19 +0000 (19:52 +0000)]
📝 Update release notes
Sebastián Ramírez [Tue, 10 Nov 2020 19:51:56 +0000 (20:51 +0100)]
💚 Fix disabling install of Material for MkDocs Insiders in forks, strike 1 ⚾ (#2340)
github-actions [Tue, 10 Nov 2020 19:38:22 +0000 (19:38 +0000)]
📝 Update release notes
Sebastián Ramírez [Tue, 10 Nov 2020 19:37:55 +0000 (20:37 +0100)]
🐛 Fix disabling Material for MkDocs Insiders install in forks (#2339)
github-actions [Tue, 10 Nov 2020 19:25:07 +0000 (19:25 +0000)]
📝 Update release notes
Sebastián Ramírez [Tue, 10 Nov 2020 19:24:42 +0000 (20:24 +0100)]
✨ Add silver sponsor WeTransfer (#2338)
github-actions [Sun, 8 Nov 2020 17:27:00 +0000 (17:27 +0000)]
📝 Update release notes
Louis Guitton [Sun, 8 Nov 2020 17:26:34 +0000 (18:26 +0100)]
📝 Add FastAPI monitoring blog post to External Links (#2324)
https://github.com/tiangolo/fastapi/issues/1828#issuecomment-
723541832
github-actions [Sun, 8 Nov 2020 11:43:23 +0000 (11:43 +0000)]
📝 Update release notes
Sebastián Ramírez [Sun, 8 Nov 2020 11:42:55 +0000 (12:42 +0100)]
✨ Set up and enable Material for MkDocs Insiders for the docs (#2325)
* ⬆️ Upgrade Material for MkDocs
* ⬆️ Install Material for MkDocs Insiders on CI
* 🔧 Update MkDocs configs to use Material for MkDocs Insiders
* ✨ Use the lightbulb because it looks nice 💡
* 💚 Fix GitHub Action workflow syntax for building docs
* 🐛 Fix GitHub Actions workflow syntax, strike one ⚾
github-actions [Sat, 7 Nov 2020 20:48:48 +0000 (20:48 +0000)]
📝 Update release notes
Sebastián Ramírez [Sat, 7 Nov 2020 20:48:25 +0000 (21:48 +0100)]
✨ Add Discord chat (#2322)
Co-authored-by: Marcelo Trylesinski <marcelotryle@gmail.com>
github-actions [Sat, 7 Nov 2020 18:55:35 +0000 (18:55 +0000)]
📝 Update release notes
Sebastián Ramírez [Sat, 7 Nov 2020 18:55:12 +0000 (19:55 +0100)]
✏️ Fix typo in Deta tutorial (#2320)
Sebastián Ramírez [Thu, 5 Nov 2020 23:14:52 +0000 (00:14 +0100)]
📝 Update release notes
github-actions [Thu, 5 Nov 2020 23:13:28 +0000 (23:13 +0000)]
📝 Update release notes
Sebastián Ramírez [Thu, 5 Nov 2020 23:13:04 +0000 (00:13 +0100)]
📝 Fix image links for sponsors (#2304)
Sebastián Ramírez [Thu, 5 Nov 2020 23:04:32 +0000 (00:04 +0100)]
🔖 Release version 0.61.2
Sebastián Ramírez [Thu, 5 Nov 2020 23:03:52 +0000 (00:03 +0100)]
📝 Update release notes
github-actions [Thu, 5 Nov 2020 22:53:41 +0000 (22:53 +0000)]
📝 Update release notes
Camila Gutierrez [Thu, 5 Nov 2020 22:53:10 +0000 (23:53 +0100)]
✏️ Fix typo in Tutorial - Path Parameters (#2231)
github-actions [Thu, 5 Nov 2020 22:52:49 +0000 (22:52 +0000)]
📝 Update release notes
David Dobrinskiy [Thu, 5 Nov 2020 22:52:17 +0000 (01:52 +0300)]
✏ Fix a stylistic error in docs (#2206)
github-actions [Thu, 5 Nov 2020 22:51:01 +0000 (22:51 +0000)]
📝 Update release notes
atsumi [Thu, 5 Nov 2020 22:50:38 +0000 (07:50 +0900)]
🌐 Add Japanese translation for Advanced Tutorial - Response Directly (#2191)
* Add Japanese translation for Advanced - response-directly
* Apply suggestions from code review
Co-authored-by: T. Tokusumi <41147016+tokusumi@users.noreply.github.com>
* Apply suggestions from code review
Co-authored-by: Taki Komiyama <39375566+komtaki@users.noreply.github.com>
Co-authored-by: T. Tokusumi <41147016+tokusumi@users.noreply.github.com>
Co-authored-by: Taki Komiyama <39375566+komtaki@users.noreply.github.com>
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
github-actions [Thu, 5 Nov 2020 22:45:29 +0000 (22:45 +0000)]
📝 Update release notes
谭九鼎 [Thu, 5 Nov 2020 22:44:56 +0000 (06:44 +0800)]
✏ Fix capitalizaiton typo in docs (#2204)
github-actions [Thu, 5 Nov 2020 22:42:49 +0000 (22:42 +0000)]
📝 Update release notes
Ammar Asmro [Thu, 5 Nov 2020 22:42:07 +0000 (17:42 -0500)]
✏ Fix typo in docs (#2179)
github-actions [Thu, 5 Nov 2020 22:39:33 +0000 (22:39 +0000)]
📝 Update release notes
谭九鼎 [Thu, 5 Nov 2020 22:39:09 +0000 (06:39 +0800)]
📝 Update/fix links in docs to use HTTPS (#2165)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
github-actions [Thu, 5 Nov 2020 22:34:08 +0000 (22:34 +0000)]
📝 Update release notes
nukopy [Thu, 5 Nov 2020 22:33:06 +0000 (07:33 +0900)]
✏ Fix typos and add rewording in docs (#2159)
* docs: fix typo in chapter "Request Body" in "Tutorial - User Guide"
* docs: modify a sentence in chapter "Query Parameters and String Validations" in "Tutorial - User Guide"
* docs: fix two grammatical mistakes in chapter "Path Parameters and Numeric Validations" in "Tutorial - User Guide"
github-actions [Thu, 5 Nov 2020 22:31:20 +0000 (22:31 +0000)]
📝 Update release notes
nukopy [Thu, 5 Nov 2020 22:30:09 +0000 (07:30 +0900)]
📝 Fix code consistency in examples for Tutorial - User Guide - Path Parameters (#2158)
github-actions [Thu, 5 Nov 2020 22:29:07 +0000 (22:29 +0000)]
📝 Update release notes
Teofilo Zosa [Thu, 5 Nov 2020 22:26:28 +0000 (14:26 -0800)]
📝 Fix renamed parameter `content_type` typo (#2135)
github-actions [Thu, 5 Nov 2020 22:24:33 +0000 (22:24 +0000)]
📝 Update release notes
Taki Komiyama [Thu, 5 Nov 2020 22:24:05 +0000 (07:24 +0900)]
📝 Add Japanese translation for Tutorial - Security - First Steps (#2153)
Co-authored-by: atsumi <atsumi.tatsuya@gmail.com>
Co-authored-by: T. Tokusumi <41147016+tokusumi@users.noreply.github.com>
github-actions [Thu, 5 Nov 2020 22:21:54 +0000 (22:21 +0000)]
📝 Update release notes
Teofilo Zosa [Thu, 5 Nov 2020 22:20:55 +0000 (14:20 -0800)]
✏ Fix minor typos in docs (#2122)
github-actions [Thu, 5 Nov 2020 22:14:40 +0000 (22:14 +0000)]
📝 Update release notes
Adrian [Thu, 5 Nov 2020 22:14:17 +0000 (16:14 -0600)]
✏ Fix typos in docs and source examples (#2102)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
github-actions [Thu, 5 Nov 2020 22:03:04 +0000 (22:03 +0000)]
📝 Update release notes
Nutchanon Ninyawee [Thu, 5 Nov 2020 22:02:07 +0000 (05:02 +0700)]
✏ Fix incorrect Celery URLs in docs (#2100)
github-actions [Thu, 5 Nov 2020 21:58:33 +0000 (21:58 +0000)]
📝 Update release notes
John Riebold [Thu, 5 Nov 2020 21:57:16 +0000 (13:57 -0800)]
📌 Relax Swagger UI version pin (#2089)
github-actions [Thu, 5 Nov 2020 21:56:17 +0000 (21:56 +0000)]
📝 Update release notes
Aaron Christianson [Thu, 5 Nov 2020 21:53:44 +0000 (22:53 +0100)]
📝 Simplify intro to Python Types, all currently supported Python versions include type hints 🎉 (#2085)
github-actions [Thu, 5 Nov 2020 21:44:18 +0000 (21:44 +0000)]
📝 Update release notes