Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 0 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,6 @@ updates:
- dependency-name: "axllent/mailpit"
- dependency-name: "darthsim/imgproxy"
- dependency-name: "timberio/vector"
# Held back: v2.109.0+ adds a setup_supabase_realtime_admin migration
# that fails against the CLI's local Postgres and breaks `supabase start`.
# Remove once the CLI's local stack is compatible with the new migration.
- dependency-name: "supabase/realtime"
versions:
- ">= 2.109.0"
cooldown:
default-days: 7
exclude:
Expand Down
2 changes: 1 addition & 1 deletion apps/cli-go/pkg/config/templates/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ FROM supabase/edge-runtime:v1.74.2 AS edgeruntime
FROM timberio/vector:0.53.0-alpine AS vector
FROM supabase/supavisor:2.9.7 AS supavisor
FROM supabase/gotrue:v2.191.0 AS gotrue
FROM supabase/realtime:v2.108.0 AS realtime
FROM supabase/realtime:v2.111.8 AS realtime
FROM supabase/storage-api:v1.61.4 AS storage
FROM supabase/logflare:1.45.4 AS logflare
# Append to JobImages when adding new dependencies below
Expand Down
2 changes: 1 addition & 1 deletion apps/cli/src/next/commands/list/list.integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function writeStackMetadata(stackDir: string, apiPort: number, dbPort: number) {
postgrest: "14.5",
auth: "2.188.0-rc.15",
"edge-runtime": DEFAULT_VERSIONS["edge-runtime"],
realtime: "2.78.10",
realtime: "2.111.8",
storage: "1.41.8",
imgproxy: "v3.8.0",
mailpit: "v1.30.2",
Expand Down
12 changes: 6 additions & 6 deletions apps/cli/src/next/commands/start/start.integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ function mockStartVersionState(
postgrest: "14.5",
auth: "2.188.0-rc.15",
"edge-runtime": DEFAULT_VERSIONS["edge-runtime"],
realtime: "2.78.10",
realtime: "2.111.8",
storage: "1.41.8",
imgproxy: "v3.8.0",
mailpit: "v1.30.2",
Expand All @@ -86,7 +86,7 @@ function mockStartVersionState(
postgrest: "14.5",
auth: "2.188.0-rc.15",
"edge-runtime": DEFAULT_VERSIONS["edge-runtime"],
realtime: "2.78.10",
realtime: "2.111.8",
storage: "1.41.8",
imgproxy: "v3.8.0",
mailpit: "v1.30.2",
Expand All @@ -101,7 +101,7 @@ function mockStartVersionState(
postgrest: "14.5",
auth: "2.188.0-rc.15",
"edge-runtime": DEFAULT_VERSIONS["edge-runtime"],
realtime: "2.78.10",
realtime: "2.111.8",
storage: "1.41.8",
imgproxy: "v3.8.0",
mailpit: "v1.30.2",
Expand All @@ -116,7 +116,7 @@ function mockStartVersionState(
postgrest: "14.5",
auth: "2.188.0-rc.15",
"edge-runtime": DEFAULT_VERSIONS["edge-runtime"],
realtime: "2.78.10",
realtime: "2.111.8",
storage: "1.41.8",
imgproxy: "v3.8.0",
mailpit: "v1.30.2",
Expand Down Expand Up @@ -370,7 +370,7 @@ describe("start", () => {
postgrest: "14.5",
auth: "2.187.0",
"edge-runtime": DEFAULT_VERSIONS["edge-runtime"],
realtime: "2.78.10",
realtime: "2.111.8",
storage: "1.41.8",
imgproxy: "v3.8.0",
mailpit: "v1.30.2",
Expand Down Expand Up @@ -423,7 +423,7 @@ describe("start", () => {
postgrest: "14.5",
auth: "2.187.0",
"edge-runtime": DEFAULT_VERSIONS["edge-runtime"],
realtime: "2.78.10",
realtime: "2.111.8",
storage: "1.41.8",
imgproxy: "v3.8.0",
mailpit: "v1.30.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ describe("update handler", () => {
postgrest: "14.4",
auth: "2.180.0",
"edge-runtime": DEFAULT_VERSIONS["edge-runtime"],
realtime: "2.78.10",
realtime: "2.111.8",
storage: "1.39.1",
imgproxy: "v3.8.0",
mailpit: "v1.30.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/stack/src/StackBuilder.unit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -456,8 +456,8 @@ describe("StackBuilder", () => {
});

const realtimeDef = graph.startOrder.find((service) => service.name === "realtime");
expect(realtimeDef?.args).toContain("supabase/realtime:v2.78.10");
expect(realtimeDef?.args).not.toContain("public.ecr.aws/supabase/realtime:v2.78.10");
expect(realtimeDef?.args).toContain("supabase/realtime:v2.111.8");
expect(realtimeDef?.args).not.toContain("public.ecr.aws/supabase/realtime:v2.111.8");
}).pipe(Effect.provide(layer));
});
});
2 changes: 1 addition & 1 deletion packages/stack/src/versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const DEFAULT_VERSIONS: VersionManifest = {
postgrest: "14.5",
auth: "2.188.0-rc.15",
"edge-runtime": "1.73.13",
realtime: "2.78.10",
realtime: "2.111.8",
storage: "1.41.8",
imgproxy: "v3.8.0",
mailpit: "v1.30.2",
Expand Down
Loading