Supabase April 2026 Update
Contents
Supabase’s April 2026 update email landed in my inbox.
This month had a fair share of interesting items — Multigres Operator going open source and ssh supabase.sh, among others — so here is a section-by-section rundown of the announcements.
Multigres Operator goes open source
The Kubernetes operator for Multigres (Supabase’s horizontal-scaling foundation for Postgres) has been released as open source.
- Direct pod management
- Zero-downtime rolling upgrades
- PITR (point-in-time recovery) backups using pgBackRest
- OpenTelemetry tracing support
Multigres is being built by Sugu Sougoumarane, formerly of Vitess (YouTube’s MySQL sharding foundation). He is also scheduled to speak at Postgres Conference 2026 in San Jose (April 21–23) on “horizontal scalability and intelligent sharding for Postgres.”
Horizontal scaling on Postgres has been called “hard” for years, so it is nice to finally have something you can touch and verify in the open.
GitHub integration now available on all plans
GitHub integration, previously limited to certain plans, is now available on the free plan as well.
You can deploy migrations via CI/CD directly from the main branch without using branching.
Being able to manage migrations through Git on a personal prototype is a welcome change.
Supabase docs over SSH
Personally, this one caused the most buzz.
ssh supabase.sh setup | claude .
You can browse Supabase’s documentation over SSH and pipe it straight into Claude Code.
Under the hood, it uses Vercel’s just-bash to build a virtual filesystem (VFS) where the Supabase docs are mounted as markdown.
Commands sent over SSH run inside a sandboxed pseudo-shell, so no code is actually executed on the real server.
Another handy one is ssh supabase.sh agents >> AGENTS.md, which appends AI-agent-oriented instruction snippets straight into your project’s AGENTS.md (or CLAUDE.md).
Being able to plant a nudge like “always check the latest docs before implementing anything with Supabase” looks quietly effective as a hallucination countermeasure.
”Fix with Assistant” button in Studio
Supabase Studio now shows a “Fix with Assistant” button in various places, and clicking it opens a dropdown to pick either Claude or ChatGPT.
The design lets you route an error or warning into a fix-prompt and hand it to whichever assistant you prefer.
Supabase is also already an “official Claude connector,” so the relationship runs both ways — Anthropic’s Claude plugin can reach into Supabase as well.
Schema Visualiser improvements
The schema visualiser received the following updates.
- Relation lines are now clickable
- Context actions on tables and columns
- Popovers between connected tables
Schema diagrams get hard to follow on larger databases, so being able to trace relations by clicking is practically useful.
GitHub Push Protection for secret keys
Supabase secret keys are now covered by GitHub’s Push Protection, so an accidental commit gets blocked before it is pushed.
Having GitHub itself stop this even without a tool like Gitleaks in place helps a broad set of users.
Other items
- Browser tab titles now show the accurate navigation path, which makes tabs easier to tell apart
- Supabase is joining Stripe’s upcoming “Stripe Projects” CLI as a co-design partner. It auto-provisions and syncs credentials into
.env - Security newsletter subscriptions are now open (sent only for important updates)
- Event announcements: Multigres at CMU (4/13), Accenture AI ReinventionX (4/20, London), Postgres Conference 2026 (4/21–23, San Jose)
- State of Startups 2026 survey is live (respondents get a T-shirt at publication)
I’ll run ssh supabase.sh against one of my own projects this weekend.