dmontagu
ab2b86fe2c
✨ Add support for Pydantic v1 and above 🎉 ( #646 )
* Make compatible with pydantic v1
* Remove unused import
* Remove unused ignores
* Update pydantic version
* Fix minor formatting issue
* ⏪ Revert removing iterate_in_threadpool
* ✨ Add backwards compatibility with Pydantic 0.32.2
with deprecation warnings
* ✅ Update tests to not break when using Pydantic < 1.0.0
* 📝 Update docs for Pydantic version 1.0.0
* 📌 Update Pydantic range version to support from 0.32.2
* 🎨 Format test imports
* ✨ Add support for Pydantic < 1.2 for populate_validators
* ✨ Add backwards compatibility for Pydantic < 1.2.0 with required fields
* 📌 Relax requirement for Pydantic to < 2.0.0 🎉 🚀
* 💚 Update pragma coverage for older Pydantic versions
5 years ago
Daniel Brotsky
c7902dd23a
✨ Generate correct OpenAPI docs for responses with no content ( #621 )
5 years ago
François Voron
8609beb9ab
🚨 Fix black linting ( #682 )
5 years ago
dmontagu
5fd83c5fa4
✨ Sort schemas alphabetically ( #554 )
Modify openapi spec generation to include schemas in alphabetical order.
6 years ago
Trim21
4cea311e6e
🐛 Fix doctype in docs ( #537 )
6 years ago
tsouvarev
3dbbecdd16
🐛 Fix setting 4XX overriding default 422 validation errors( #517 )
6 years ago
Zamir Amir
8505b716af
✨ Add support for setting Swagger UI initOAuth configs (clientId, appName) ( #499 )
6 years ago
toppk
f803c77515
✨ Add support for specifying a default_response_class ( #467 )
6 years ago
dmontagu
d8fe307d61
✨ Add support for strings and __future__ type annotations ( #451 )
* Add support for strings and __future__ annotations
* Add comments indicating reason for string annotations
* Fix ignores (including removing some unused ignores)
6 years ago
b1-luettje
c90c4fb6c1
✨ Allow disabling Google fonts in ReDoc ( #481 )
6 years ago
Zoltan Papp
19c53b21c1
✨ Allow using custom 422 validation error and use media type from response class in schema ( #437 )
* media_type of additional responses from the response_class
* Use HTTPValidationError only if a custom one is not defined (Fixes : #429 )
6 years ago
Sebastián Ramírez
55c4b5fb0b
🐛 Fix "default" extra response with extra status codes ( #489 )
* 🐛 Fix lowercase "default" extra response
* 🐛 Fix model for responses, to allow "default" plus status codes
* ✅ Add test for "default" extra response
6 years ago
Zoltan Papp
73dbbeab55
✨ Allow additional responses to use status ranges and "default" ( #435 )
6 years ago
dmontagu
483eb73b26
🐛 Use caching logic to determine OpenAPI spec for duplicate dependencies ( #417 )
6 years ago
James Kaplan
46a986cacf
⬆️ Upgrade Pydantic to 0.30 ( #384 )
* bump pydantic to 0.30
* 📌 Pin Pydantic to 0.30 as 0.31 hasn't been released
6 years ago
Sebastián Ramírez
508f9ce954
🐛 Fix regression, Swagger UI with deep linking ( #350 )
6 years ago
Sebastián Ramírez
687065509b
🏗️ Fix same function names in different modules with composite bodies ( #347 )
* 🏗️ Implement unique IDs for dynamic models
like those used for composite bodies and responses. IDs based on path (not only on function name, as it can be duplicated in a different module).
* ✅ Add tests for same function name and composite body
* ✅ Update OpenAPI in tests with new dynamic model ID generation
6 years ago
Sebastián Ramírez
dcc1e1bcf8
♻️ Refine internal type declarations and logic around them ( #338 )
6 years ago
Eric Du
5b3adfe449
✨ Use default response status reasons in additional responses ( #313 )
* default the description of additional response to status reason phrase
* fix 404 description
* fix lint warning
* allow custom response status code
6 years ago
Sebastián Ramírez
bd407cc4ed
✨ Refactor param extraction using Pydantic Field ( #278 )
* ✨ Refactor parameter dependency using Pydantic Field
* ⬆️ Upgrade required Pydantic version with latest Shape values
* ✨ Add tutorials and code for using Enum and Optional
* ✅ Add tests for tutorials with new types and extra cases
* ♻️ Format, clean, and add annotations to dependencies.utils
* 📝 Update tutorial for query parameters with list defaults
* ✅ Add tests for query param with list default
6 years ago
Steinthor Palsson
325edd5f00
✨ Add swagger UI OAuth2 redirect page for implicit/code auth flows in API docs ( #198 )
6 years ago
euri10
f54d8d57a4
✨ Make Swagger UI and ReDoc parameterizable to host offline assets for docs ( #112 )
6 years ago
euri10
adfbd27100
🐛 Fix OpenAPI URL format for Starlette convertors ( #234 )
6 years ago
euri10
f541d2c200
✨ Use a logger instead of the root logging ( #222 )
6 years ago
Sebastián Ramírez
192ebba2a2
♻️ Rename parameter content_type to response_class ( #183 )
6 years ago
Sebastián Ramírez
88ece95a30
🎨 Improve automatic naming of path operations in API docs ( #155 )
* 🎨 Improve operation summary naming
* 📝 Update names in README
* 🚚 Improve names of security tutorial
6 years ago
William Hayes
500f2b2ad4
✨ Add deeplinking to Swagger UI ( #148 )
Update the Swagger UI docs to deep link to path operations to share them more easily.
6 years ago
Sebastián Ramírez
2bd775988f
✨ Add/refactor addditional responses, tests, docs
6 years ago
Sebastián Ramírez
b7d184363f
🐛 Fix JSON Schema of additional properties ( #121 )
#87
6 years ago
Mohammed
65568065e0
Remove extra code.
6 years ago
Mohammed
95679ca5e6
Fix: adding additional_responses on `.include_router()`
6 years ago
Mohammed
84a300ef84
Formatting according to guide
6 years ago
Mohammed
aa0bca7bb2
Additional Responses implementation
6 years ago
Sebastián Ramírez
8e1ecaf221
💄 Add FastAPI favicons to docs ( #53 )
6 years ago
Kabir Khan
0ea0d0e82a
Add Open API prefix route - correct docs behind reverse proxy ( #26 )
Add Open API prefix route - correct docs behind reverse proxy.
6 years ago
Sebastián Ramírez
60599bad99
🐛 Fix Python 3.7 specific list query handling
6 years ago
Sebastián Ramírez
804ec460fc
⬆️ Add tests, fix issues and update Pydantic
6 years ago
Sebastián Ramírez
d5e782074f
🐛 Fix email_validator error, generated by autoflake
6 years ago
Sebastián Ramírez
7da9625505
💚 Revert to flit install and re-format
As it has shown to be more reliable, and closer to final user environments
6 years ago
Sebastián Ramírez
00e2e544c7
♻️ Re-format tutorials, files names and tests
for tutorial files
6 years ago
Sebastián Ramírez
d9fbead646
🎨 Remove un-used imports, add auto-flake
6 years ago
Sebastián Ramírez
8c66b3a492
🐛 Add ValidationError schema even if only bodies
are declared in the defined endpoints
6 years ago
Sebastián Ramírez
26ffa5d9c8
⬆️ Update JS CDN to cdn.jsdelivr.net
as unpkg.com seems to have been down all day
6 years ago
Sebastián Ramírez
9a6fcdd13c
🔊 Log body parsing errors
6 years ago
Sebastián Ramírez
b763a44328
🐛 Fix import of email_validator from Pydantic
6 years ago
Sebastián Ramírez
8cc9ccab92
🎨 Update main imports (and exports)
6 years ago
Sebastián Ramírez
db3c270f8e
✨ Update requests with body, rename params
6 years ago
Sebastián Ramírez
0e19c24014
✨ Update parameter names and order
fix mypy types, refactor, lint
6 years ago
Sebastián Ramírez
addfa89b0f
✨ Refactor, update code, several features
6 years ago
Sebastián Ramírez
b9d912c638
♻️ Refactor, fix and update code
6 years ago