Skip to content

Commit 1bbe0d9

Browse files
authored
fix(nextjs): Include patch version 0 for min supported 15.3.0 (#16026)
closes #16025
1 parent 4c5f2fb commit 1bbe0d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/nextjs/src/config/withSentryConfig.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ function getFinalConfigObject(
178178
patch !== undefined &&
179179
(major > 15 ||
180180
(major === 15 && minor > 3) ||
181-
(major === 15 && minor === 3 && patch > 0 && prerelease === undefined));
181+
(major === 15 && minor === 3 && patch >= 0 && prerelease === undefined));
182182
const isSupportedCanary =
183183
major !== undefined &&
184184
minor !== undefined &&

0 commit comments

Comments
 (0)