Skip to content

Latest commit

 

History

History
40 lines (23 loc) · 1.51 KB

CHANGELOG.md

File metadata and controls

40 lines (23 loc) · 1.51 KB

Change log

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.

2.0.1 (2024-05-07)

Bug fixes

  • Remove the unwanted query parameter from the GET /fastapi-bootcamp/en-greeting endpoint.

2.0.0 (2024-05-07)

Backwards-incompatible changes

  • The GET /fastapi-bootcamp/astroplan/observers endpoint now uses pagination.

New features

  • Demonstrate SlackException in the POST /fastapi-bootcamp/error-demo endpoint.
  • Demonstrate custom FastAPI dependencies in the GET /fastapi-bootcamp/dependency-demo endpoint.

Other changes

Minor improvements to handler docs.

1.0.0 (2024-04-30)

New features

  • 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.