Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
ef4abe5
docs: add micro Supabase stacks design spec
jgoux Jul 7, 2026
cc6a848
docs: Windows supports supabase start via Docker path
jgoux Jul 7, 2026
c15afd4
docs: phase 1 implementation plan (stack changes + fleet daemon)
jgoux Jul 7, 2026
267ca87
feat(fleet): scaffold @supabase/fleet package
jgoux Jul 7, 2026
37537aa
feat(stack): add micro postgres profile and preload-required registry
jgoux Jul 7, 2026
a799f85
feat(stack): PGDATA conf layering (micro.conf + pod.conf includes)
jgoux Jul 7, 2026
ad76b32
fix(stack): harden pgconf include detection, GUC parsing, and pod.con…
jgoux Jul 7, 2026
6f2edb5
feat(stack): provisioned data dirs, micro profile wiring, postgres 17…
jgoux Jul 7, 2026
46f5d43
feat(stack): enableExtension with preload-on-enable restart
jgoux Jul 7, 2026
99816b7
fix(stack): serialize enableExtension to prevent pod.conf write races
jgoux Jul 7, 2026
20d89da
feat(stack): lazy per-service start behind the API proxy
jgoux Jul 7, 2026
7296801
fix(stack): scope waitAllReady() to started services under lazyServices
jgoux Jul 7, 2026
6eb4621
feat(fleet): pod manifest types and template cache keys
jgoux Jul 7, 2026
69ae47e
feat(fleet): copy-on-write directory clone (clonefile/reflink/copy)
jgoux Jul 7, 2026
b22587b
fix(fleet): clean up partial dest before CoW fallback, preserve symlinks
jgoux Jul 7, 2026
ec88d29
feat(fleet): add persistent port registry
jgoux Jul 7, 2026
84e64ff
fix(fleet): harden PortRegistry against corrupt state, add restore()
jgoux Jul 7, 2026
494f0bc
feat(fleet): template store with base and warm templates
jgoux Jul 7, 2026
db0e27d
feat(fleet): pod registry and provisioner (create/reset/fork/destroy)
jgoux Jul 7, 2026
4a0cf4d
fix(fleet): release ports on failed create/fork before manifest write
jgoux Jul 7, 2026
b7fdb5d
feat(fleet): TCP wake-proxy edge with activity events
jgoux Jul 7, 2026
62bcf18
fix(fleet): cap pre-wake buffer and catch throws from wake() resolution
jgoux Jul 7, 2026
9f27406
feat(fleet): idle monitor with connection-aware countdown
jgoux Jul 7, 2026
c22c57c
feat(fleet): fleet facade with wake-on-connect and suspend-on-idle
jgoux Jul 7, 2026
2d5e012
fix(fleet): serialize per-pod lifecycle ops and reap by postmaster.pid
jgoux Jul 7, 2026
51b242b
test(fleet): density e2e and package README
jgoux Jul 7, 2026
f561ded
fix(stack,fleet,cli): address final-review findings for stacks spec
jgoux Jul 7, 2026
cb0078a
Merge branch 'develop' into claude/micro-supabase-stacks-spec
jgoux Jul 7, 2026
5382e0f
fix: regenerate pnpm-lock.yaml to repair broken fleet importer entries
jgoux Jul 7, 2026
fbf039b
Merge remote branch state (develop update) into lockfile fix
jgoux Jul 7, 2026
f1c8854
fix(process-compose): model long-running daemons in mock spawner to f…
jgoux Jul 7, 2026
9fc3f47
chore(cli): address micro stack review feedback
jgoux Jul 7, 2026
69b4bc8
chore(cli): address stack review follow-ups
jgoux Jul 7, 2026
6137e34
chore(cli): address micro stack review follow-ups
jgoux Jul 8, 2026
e31c93f
chore(cli): address additional stack review feedback
jgoux Jul 8, 2026
c17517d
chore(cli): sync lockfile with current base
jgoux Jul 8, 2026
7af4e06
Merge remote-tracking branch 'refs/remotes/origin/develop' into fix/m…
jgoux Jul 8, 2026
6f5953c
test(cli): relax core test timeout for ci
jgoux Jul 8, 2026
f69ab95
fix(fleet): harden micro stack lifecycle
jgoux Jul 8, 2026
327e836
fix(stack): stabilize password rotation
jgoux Jul 8, 2026
04dd218
fix(stack): harden lazy services and fleet ports
jgoux Jul 8, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/cli/tests/helpers/mocks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -677,6 +677,7 @@ export function mockStack(
startService: () => Effect.void,
stopService: () => Effect.void,
restartService: () => Effect.void,
enableExtension: () => Effect.void,
reloadFunctions: () => Effect.void,
reloadEdgeRuntime: () => Effect.void,
getState: () =>
Expand Down
4 changes: 4 additions & 0 deletions apps/cli/tests/helpers/running-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,10 @@ function makeStackLayer(opts: {
opts.states.some((state) => state.name === name)
? Effect.void
: Effect.fail(new ServiceNotFoundError({ name })),
enableExtension: (name: string) =>
opts.states.some((state) => state.name === name)
? Effect.void
: Effect.fail(new ServiceNotFoundError({ name })),
reloadFunctions: () =>
opts.states.some((state) => state.name === "edge-runtime")
? Effect.void
Expand Down
2 changes: 2 additions & 0 deletions apps/cli/vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,15 @@ export default defineConfig({
test: {
name: "unit",
include: ["**/*.unit.test.ts"],
testTimeout: 30_000,
},
},
{
plugins: [dockerfileTextPlugin()],
test: {
name: "integration",
include: ["**/*.integration.test.ts"],
testTimeout: 30_000,
},
},
{
Expand Down
211 changes: 211 additions & 0 deletions docs/specs/2026-07-07-micro-supabase-stacks-design.md

Large diffs are not rendered by default.

Loading
Loading