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
4 changes: 2 additions & 2 deletions internal/db/diff/templates/pgdelta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import {
createPlan,
deserializeCatalog,
formatSqlStatements,
} from "npm:@supabase/pg-delta@1.0.0-alpha.9";
import { supabase } from "npm:@supabase/pg-delta@1.0.0-alpha.9/integrations/supabase";
} from "npm:@supabase/pg-delta@1.0.0-alpha.11";
import { supabase } from "npm:@supabase/pg-delta@1.0.0-alpha.11/integrations/supabase";

async function resolveInput(ref: string | undefined) {
if (!ref) {
Expand Down
2 changes: 1 addition & 1 deletion internal/db/diff/templates/pgdelta_catalog_export.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
extractCatalog,
serializeCatalog,
stringifyCatalogSnapshot,
} from "npm:@supabase/pg-delta@1.0.0-alpha.9";
} from "npm:@supabase/pg-delta@1.0.0-alpha.11";

const target = Deno.env.get("TARGET");
const role = Deno.env.get("ROLE") ?? undefined;
Expand Down
4 changes: 2 additions & 2 deletions internal/db/diff/templates/pgdelta_declarative_export.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import {
createPlan,
deserializeCatalog,
exportDeclarativeSchema,
} from "npm:@supabase/pg-delta@1.0.0-alpha.9";
import { supabase } from "npm:@supabase/pg-delta@1.0.0-alpha.9/integrations/supabase";
} from "npm:@supabase/pg-delta@1.0.0-alpha.11";
import { supabase } from "npm:@supabase/pg-delta@1.0.0-alpha.11/integrations/supabase";

async function resolveInput(ref: string | undefined) {
if (!ref) {
Expand Down
2 changes: 1 addition & 1 deletion internal/db/pgcache/cache.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import {
extractCatalog,
serializeCatalog,
stringifyCatalogSnapshot,
} from "npm:@supabase/pg-delta@1.0.0-alpha.9";
} from "npm:@supabase/pg-delta@1.0.0-alpha.11";
const target = Deno.env.get("TARGET");
const role = Deno.env.get("ROLE") ?? undefined;
if (!target) {
Expand Down
2 changes: 1 addition & 1 deletion internal/pgdelta/templates/pgdelta_declarative_apply.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import {
applyDeclarativeSchema,
loadDeclarativeSchema,
} from "npm:@supabase/pg-delta@1.0.0-alpha.9/declarative";
} from "npm:@supabase/pg-delta@1.0.0-alpha.11/declarative";

const schemaPath = Deno.env.get("SCHEMA_PATH");
const target = Deno.env.get("TARGET");
Expand Down
Loading