Skip to main content

API versioning, dispatch, docs, and actuator for FastAPI

Project description

csrd-versioning

API versioning, dispatch, docs, and actuator for FastAPI.

Package: csrd.versioning · Import: from csrd.versioning import compose_versioned_apps, configure_versioned_api

What's included

  • Version dispatch — raw ASGI middleware for version-aware routing (streaming/SSE safe)
  • Swagger UI — custom docs with version picker, dark mode, SRI hashes, plugin system
  • Actuator — Spring Boot-style management endpoints (health, info, env)
  • Exception handlers — structured APIErrorResponse JSON for HTTP and validation errors
  • Dependency wiring — auto path-param injection, bearer guard opt-out

Installation

uv pip install "csrd-versioning @ git+ssh://git@github.com/csrd-api/fastapi-common.git#subdirectory=packages/versioning"

Quick start

from enum import Enum
from fastapi import FastAPI
from csrd.versioning import compose_versioned_apps, VersionedApiConfig, VersionedAppComposeConfig

class Versions(Enum):
    Unversioned = "Unversioned"
    V1 = "2025-06-20"

unv = FastAPI()
v1 = FastAPI()

app = compose_versioned_apps(
    {Versions.Unversioned: unv, Versions.V1: v1},
    config=VersionedAppComposeConfig(
        api=VersionedApiConfig(prefix="api"),
    ),
)

Security notes

  • /actuator/env: The ShowValues.ALWAYS setting exposes environment variable values. Use ShowValues.NEVER (default) in production to redact sensitive data.
  • CORS: Add CORSMiddleware before calling configure_versioned_api. The version dispatch middleware must be the outermost middleware. Example:
app = FastAPI()
app.add_middleware(CORSMiddleware, allow_origins=["*"], ...)
configure_versioned_api(app, version_mapping, ...)

Dependencies

  • csrd-models, csrd-context (Tier 3 — depends on Tier 1 packages)
  • For JWT auth, use csrd-auth alongside this package

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

csrd_versioning-0.3.13.tar.gz (71.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

csrd_versioning-0.3.13-py3-none-any.whl (79.4 kB view details)

Uploaded Python 3

File details

Details for the file csrd_versioning-0.3.13.tar.gz.

File metadata

  • Download URL: csrd_versioning-0.3.13.tar.gz
  • Upload date:
  • Size: 71.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for csrd_versioning-0.3.13.tar.gz
Algorithm Hash digest
SHA256 c230fe4fffd54d89112ed62c066c5690a63cdaa2ce3f7ae93eb296e8efb4d658
MD5 069a177869196bb8f4ec7cb83a8a3be7
BLAKE2b-256 07d568c52f4d3973f57451095827077c458fe2dee278388a432dfffe932074fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for csrd_versioning-0.3.13.tar.gz:

Publisher: release.yml on csrd-api/fastapi-common

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file csrd_versioning-0.3.13-py3-none-any.whl.

File metadata

File hashes

Hashes for csrd_versioning-0.3.13-py3-none-any.whl
Algorithm Hash digest
SHA256 5d595066e026e5b382eb8b797e28ff0322202eb447ad4e9b64450569f38ff283
MD5 4961a711e4bf71d6128801bee1f0ac78
BLAKE2b-256 5a241f3fe83c7cdf2f7918c78348abfe69bd4a95f5ac83bd1e3690afe1a9933d

See more details on using hashes here.

Provenance

The following attestation bundles were made for csrd_versioning-0.3.13-py3-none-any.whl:

Publisher: release.yml on csrd-api/fastapi-common

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page