From 7ade228ec0ee684412c5833f6911ff83fc3e4e90 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 26 Aug 2026 20:13:45 +0000 Subject: [PATCH] docs(release): propose user-facing notes for v2.116.0 --- release-notes/v2.116.0.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 release-notes/v2.116.0.md diff --git a/release-notes/v2.116.0.md b/release-notes/v2.116.0.md new file mode 100644 index 0000000000..133d55fbe7 --- /dev/null +++ b/release-notes/v2.116.0.md @@ -0,0 +1,31 @@ +## Supabase CLI v2.116.0 — 2026-08-26 + +This release speeds up your local dev and adds workers support to your config. Major wins: `supabase start`/`stop` are much faster, migration testing is quicker, and edge runtime output streams in real time. + +### Highlights + +- **`supabase start` and `stop` are 10 seconds faster** — Docker shutdown no longer waits; saves time on every restart. (#6203) +- **Migration testing is faster with shadow database baseline caching** — Your baseline is cached as a PGDATA snapshot, speeding up repeated diffs and migrations. (#6184) +- **Edge runtime bootstrap streams output in real time** — See progress instead of waiting for full completion. (#6273) +- **New `[workers]` configuration section** — Configure workers in `supabase/config.toml`. (#6260) + +### Improvements + +- **`auto_expose_new_tables` defaults to `true`** — Matches your Supabase project behavior by default. (#6337) + +### Bug fixes + +- **Piped stdin is no longer buffered endlessly** — Fixed memory overflow when piping data to the CLI. (#6290) +- **Stale database connections are detected and dropped** — Operations no longer hang on dead connections. (#6277) +- **Edge runtime respects system file descriptor limits** — Prevents "too many open files" crashes. (#6284) +- **`DROP INDEX CONCURRENTLY` works outside migrations** — Index drops no longer deadlock your transaction. (#6276) +- **Postgres role management is more stable** — Roles are restored correctly after changes. (#6246) +- **Loopback network proxying is bypassed** — Local requests route directly, improving reliability. (#6283) +- **Kong local DNS cache is optimized** — DNS resolution is more responsive and consistent. (#6324) +- **Service startup is more reliable** — Fixed edge cases during start and stop. (#6245) + +--- + +Plus 14 internal improvements and dependency updates. + +**Full changelog:** https://github.com/supabase/cli/compare/v2.115.0...v2.116.0