From 3de8fd886ad2dd9240c30e9c14b993fb30e57a57 Mon Sep 17 00:00:00 2001 From: Jonny Green Date: Sat, 12 Oct 2024 13:33:45 +0100 Subject: [PATCH] Narrow supported Fastify version to 5.x --- index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.ts b/index.ts index 975c4ce..5cb289e 100644 --- a/index.ts +++ b/index.ts @@ -43,7 +43,7 @@ const mercuriusGQLUpload: FastifyPluginCallback = ( } export const mercuriusUpload = fp(mercuriusGQLUpload, { - fastify: '>= 4.x', + fastify: '5.x', name: 'mercurius-upload', })