Skip to content

Commit 1c74559

Browse files
committed
feat: upgrade to fastify 5
- Update to latest version of fastify 5.6.1 - Update all fastify plugins to latest versions - Switch fastify/multipart back to mainline latest version (includes upstream fix for uncaught exception) - Update pino to latest version for fastify 5 compat - Update supavisor to latest version to support orb stack - Add debugging npm script and vscode config
1 parent fbc937c commit 1c74559

File tree

16 files changed

+1229
-670
lines changed

16 files changed

+1229
-670
lines changed

.docker/docker-compose-infra.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ services:
4848
PGBOUNCER_STATS_USERS: postgres
4949

5050
supavisor:
51-
image: supabase/supavisor:1.1.23
51+
image: supabase/supavisor:2.7.4
5252
depends_on:
5353
multitenant_db:
5454
condition: service_healthy

.vscode/launch.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"type": "node",
6+
"request": "attach",
7+
"name": "Attach to npm run dev:debug",
8+
"port": 9229,
9+
"skipFiles": ["<node_internals>/**"],
10+
"restart": true,
11+
"sourceMaps": true
12+
}
13+
]
14+
}

0 commit comments

Comments
 (0)