From d406238957416ccfff4bd79527b09dbdb922a7e6 Mon Sep 17 00:00:00 2001 From: s1gr1d Date: Thu, 10 Apr 2025 14:57:56 +0200 Subject: [PATCH] fix(nextjs): Include patch version 0 for min supported --- packages/nextjs/src/config/withSentryConfig.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nextjs/src/config/withSentryConfig.ts b/packages/nextjs/src/config/withSentryConfig.ts index 0ecb2caee9b9..e3092af747c6 100644 --- a/packages/nextjs/src/config/withSentryConfig.ts +++ b/packages/nextjs/src/config/withSentryConfig.ts @@ -178,7 +178,7 @@ function getFinalConfigObject( patch !== undefined && (major > 15 || (major === 15 && minor > 3) || - (major === 15 && minor === 3 && patch > 0 && prerelease === undefined)); + (major === 15 && minor === 3 && patch >= 0 && prerelease === undefined)); const isSupportedCanary = major !== undefined && minor !== undefined &&