From 2fbe03815ac3cd29b92cf4fd889aa739e6a3e422 Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Tue, 24 May 2022 09:08:56 +0100 Subject: [PATCH] fix: update plugin semver to allow for rc versions --- plugin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.js b/plugin.js index f8fe11e..bd7f61c 100644 --- a/plugin.js +++ b/plugin.js @@ -93,7 +93,7 @@ function fastifyCachingPlugin (instance, options, next) { } module.exports = fp(fastifyCachingPlugin, { - fastify: '^4.0.0', + fastify: '4.x', name: '@fastify/caching' })