You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What:
- add a dedicated ProviderProxyHandler for /provider/{id}/... requests while keeping the existing scoped project handler intact
- wire provider-scoped requests through separate server/static dispatch paths instead of routing them through the project handler entrypoint
- keep the provider-scope safety fixes for path validation, invalid provider header rejection, and router matching
- add regression coverage for provider handler dispatch, provider-scoped router behavior, and the Playwright provider route flow
Why:
- make provider scope an independent proxy surface without rewriting the existing project-scoped implementation more than necessary
- reduce project-related churn in this PR while still fixing the provider-scoped control-flow problems caught in review
- leave the codepath easier to review by isolating the new behavior to provider-specific wiring plus the minimal shared safeguards
Tests:
- go test ./internal/handler ./internal/router ./tests/e2e/... (pass)
0 commit comments