BREAKING: Supabase Project Status Change Failures Across Multiple Regions
Supabase experiencing widespread project status management failures. Immediate workarounds and status checks available.
Incident Summary
Subabase is currently experiencing project status change failures affecting multiple regions. Users report inability to pause, resume, or modify project states through the dashboard and API.
What's Affected
Immediate Workarounds
1. Bypass Dashboard (Temporary)
If you need to pause/resume projects:2. API Alternative
If dashboard is unavailable, the Management API may still work: ```bash curl -X PATCH https://api.supabase.com/v1/projects/{project-id} \ -H "Authorization: Bearer $SUPABASE_TOKEN" \ -H "Content-Type: application/json" \ -d '{"status": "paused"}' ``` Note: This may also fail if backend services are affected.3. Application-Level Mitigation
How to Check If You're Affected
1. Dashboard Test: Attempt to pause/resume any non-production project 2. Status Page: Visit [status.supabase.com](https://status.supabase.com) for official incident updates 3. API Test: Try the Management API call above; watch for 5xx responses 4. Check your region: Confirm your project's region in Supabase dashboard settings 5. Monitor logs: Check application error logs for authentication/connection failures
Alternatives & Next Steps
Short-term
Escalation
What We Don't Know (Unconfirmed)
Recommendation: Monitor official Supabase status page and avoid attempting repeated status changes, which may increase queue strain.
Resources
Last Updated: Check status page for latest incident timeline.