Skip to content

Commit 00b93bc

Browse files
authored
Upgrade supabase. Also remove jwt, as it blocks a postgres upgrade. (#221)
1 parent bbdce4b commit 00b93bc

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/database/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
"deploy:functions": "tsx scripts/lint.ts -f"
2323
},
2424
"devDependencies": {
25-
"supabase": "^2.24.3",
26-
"tsx": "^4.20.2"
25+
"supabase": "^2.26.9",
26+
"tsx": "^4.20.3"
2727
},
2828
"dependencies": {}
2929
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
DROP EXTENSION IF EXISTS extensions.pg_jwt;

packages/database/supabase/schemas/extensions.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ CREATE EXTENSION IF NOT EXISTS pg_jsonschema WITH SCHEMA extensions;
99
CREATE EXTENSION IF NOT EXISTS pg_stat_monitor WITH SCHEMA extensions;
1010
CREATE EXTENSION IF NOT EXISTS pg_stat_statements WITH SCHEMA extensions;
1111
CREATE EXTENSION IF NOT EXISTS pgcrypto WITH SCHEMA extensions;
12-
CREATE EXTENSION IF NOT EXISTS pgjwt WITH SCHEMA extensions;
1312
CREATE EXTENSION IF NOT EXISTS supabase_vault WITH SCHEMA vault;
1413
CREATE EXTENSION IF NOT EXISTS "uuid-ossp" WITH SCHEMA extensions;
1514
CREATE EXTENSION IF NOT EXISTS vector WITH SCHEMA extensions;

0 commit comments

Comments
 (0)