From b623f806d8a20d14809de5f1470f1b578ae90ff9 Mon Sep 17 00:00:00 2001 From: jtricerolph Date: Wed, 1 Jul 2026 20:19:33 +0000 Subject: [PATCH] Pin all fastify plugins to 4.x-compatible versions cookie v9 + cors v9 = Fastify 4.x multipart v8 = Fastify 4.x (downgrade from v9 which targets 5.x) static v7 = Fastify 4.x (downgrade from v8 which targets 5.x) fastify reverted to 4.x Co-Authored-By: Claude Sonnet 4.6 --- backend/package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/package.json b/backend/package.json index e3fe4e2..d1d5eeb 100644 --- a/backend/package.json +++ b/backend/package.json @@ -9,9 +9,9 @@ "dependencies": { "@fastify/cookie": "^9.4.0", "@fastify/cors": "^9.0.1", - "@fastify/multipart": "^9.0.1", - "@fastify/static": "^8.0.1", - "fastify": "^5.0.0", + "@fastify/multipart": "^8.3.0", + "@fastify/static": "^7.0.0", + "fastify": "^4.28.1", "jose": "^5.9.6", "pg": "^8.13.1" }