@opennextjs/cloudflare 1.13.0 → 1.13.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -77,4 +77,7 @@ function ensureNextjsVersionSupported(options) {
77
77
  logger.error("Next.js version unsupported, please upgrade to version 14.2 or greater.");
78
78
  process.exit(1);
79
79
  }
80
+ if (buildHelper.compareSemver(options.nextVersion, ">=", "16")) {
81
+ logger.warn("Next.js 16 is not fully supported yet! Some features may not work as expected.");
82
+ }
80
83
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@opennextjs/cloudflare",
3
3
  "description": "Cloudflare builder for next apps",
4
- "version": "1.13.0",
4
+ "version": "1.13.1",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "opennextjs-cloudflare": "dist/cli/index.js"
@@ -75,7 +75,7 @@
75
75
  "vitest": "^2.1.1"
76
76
  },
77
77
  "peerDependencies": {
78
- "wrangler": "^4.49.0"
78
+ "wrangler": "^4.49.1"
79
79
  },
80
80
  "scripts": {
81
81
  "clean": "rimraf dist",