We're currently using FastAPI 0.136.x and should upgrade to 0.137.x.
This currently breaks our path_parameter_for function due to routes now being stored as a tree rather than a flattened list. We use subrouters in order to apply different authentication to the API endpoints and the docs, so we need to support this structure when finding a matching route.
We're currently using FastAPI 0.136.x and should upgrade to 0.137.x.
This currently breaks our
path_parameter_forfunction due to routes now being stored as a tree rather than a flattened list. We use subrouters in order to apply different authentication to the API endpoints and the docs, so we need to support this structure when finding a matching route.