releases.shpreview
Home/Collections/Serverless Postgres/Week of June 1, 2026

Multigres arrives as Neon shifts defaults to Postgres 18

June 1–7, 2026

Supabase open-sourced Multigres v0.1 alpha, its scalable operating system for Postgres, and Neon made Postgres 18 the default for new projects while previewing three backend services for apps and agents.

The big story: Multigres goes open source

The week's defining moment belongs to Supabase, which released Multigres v0.1 alpha — an open-source, self-hostable operating system for Postgres that packages high availability, connection pooling, automatic failover, and a Kubernetes operator into a single deployable unit. The release treats HA as a consensus problem, supports user-defined durability policies, and includes pgBackRest-based backup orchestration. While v0.1 runs as a single-shard cluster (horizontal sharding is the planned flagship feature for future releases), it already delivers production-grade pooling and failover for teams who want to run Postgres at scale without reaching for a Vitess or Citus migration. The alpha is self-host only; Supabase-managed Multigres is coming soon.

The funding context makes this move clearer: Supabase closed a $500M Series F at a $10B pre-money valuation, led by GIC with Stripe, Georgian, and Salesforce Ventures joining. The company explicitly named accelerated open-source Postgres tooling development as one of three uses for the capital. Multigres is the first major output of that directive — a bet that the next wave of Postgres adoption will be governed by software that behaves less like a database and more like a cloud platform.

Neon flips defaults and previews new services

Across town, Neon shipped what amounts to a platform expansion. Postgres 18 is now the default for all new projects, and the free-tier public network transfer allowance jumped from 100 GB to 500 GB per month — a meaningful relaxation for anyone building data-intensive prototypes or AI pipelines. More significantly, Neon opened early access signup for three new backend services: S3-compatible object storage that branches with your database, serverless compute functions, and an AI gateway for LLM routing. The branching object store in particular addresses a persistent pain point for teams who want isolated storage per environment without managing separate buckets.

The Neon CLI also received a major refresh with neonctl v2.22.2, adding psql, data-api, and checkout commands. The psql command gives direct database access without manually looking up connection strings, data-api exposes Neon Data API CRUD operations from the terminal, and checkout pins a branch in .neon for project linking. Combined with a new link command modeled after Vercel-style project linking, the CLI is moving toward being a full development companion rather than just a provisioning tool.

Supabase CLI and SDK churn sharpens the local experience

The Supabase CLI saw its v2.105.0 stable release enable vector storage by default for new local projects and inject S3 and Supabase key environment variables into the local Studio container — small changes that reduce friction when testing AI workflows locally. More structurally, the CLI team continued its migration to native TypeScript: the stable release ships init, link, unlink, login, and logout in the TypeScript shell with behavior parity to the Go CLI, and the subsequent v2.106.0-beta.2 adds a port services command for mapping services to local ports. The TypeScript migration, spread across multiple beta releases, v2.105.0-beta.5, v2.105.0-beta.9, and v2.105.0-beta.2, is consolidating the CLI's codebase and making contributions easier.

On the client side, the Supabase Client SDK v2.107.0 removed the navigator.locks-based mutex in favor of a commit guard with dispose(), fixed getClaims to return AuthInvalidJwtError for expired JWTs, and updated X-Client-Info to structured metadata. A subsequent canary improved auth error logging (no more double-logging AuthApiError) and passed PostgREST request headers as plain objects for React Native compatibility. Prisma also bridged the gap between query debugging and data browsing: Query Insights now lives inside Prisma Studio, letting you inspect slow queries alongside the data you're working with.

PlanetScale refines process management and SSO

PlanetScale's CLI v0.287.0 added processlist show and processlist kill commands for Vitess process management, plus the ability to name backups at creation time. The accompanying Go SDK v0.167.0 added types for the Vitess process list API. On the operational side, SSO domain verification through WorkOS now automatically adds members to an organization when they sign in with a verified-domain email — a quality-of-life improvement for teams that manage access through identity providers. The Postgres roles page gained search and filter capabilities in both the dashboard and API.

Turso fuzz-testing deep dive

Finally, the Turso team published an engineering deep-dive on how fuzz testing uncovered bugs in the database — a worthwhile read for anyone thinking about testing strategies for distributed systems, even if no production changes shipped this week.

Releases covered