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 <noreply@anthropic.com>
This commit is contained in:
jtricerolph 2026-07-01 20:19:33 +00:00
parent fc6d1baa79
commit b623f806d8

View file

@ -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"
}