fastapi-bootcamp is versioned with semver. Dependencies are updated to the latest available version during each release, and aren't noted here.
Find changes for the upcoming release in the project's changelog.d directory.
- Remove the unwanted query parameter from the
GET /fastapi-bootcamp/en-greeting
endpoint.
- The
GET /fastapi-bootcamp/astroplan/observers
endpoint now uses pagination.
- Demonstrate
SlackException
in thePOST /fastapi-bootcamp/error-demo
endpoint. - Demonstrate custom FastAPI dependencies in the
GET /fastapi-bootcamp/dependency-demo
endpoint.
Minor improvements to handler docs.
-
Add examples of FastAPI path operation functions to the external router.
-
Add
/fastapi-bootcamp/astroplan
router with a basic API for observational sites and computing the observability of targets from those sites. This API is build around astroplan. We're including it in this app to demonstrate the service architecture that we prefer in SQuaRE, where the application's domain is isolated from concerns of the web API and even storage and other types of external adapters.