Change8

Migrating to Next.js v16.2.0-canary.103

Version v16.2.0-canary.103 introduces 1 breaking change. This guide details how to update your code.

Released: 3/18/2026

1
Breaking Changes
2
Migration Steps
3
Affected Symbols

⚠️ Check Your Code

If you use any of these symbols, you need to read this guide:

generateStaticParamsdevCacheControlNoCacheallowedDevOrigins

Breaking Changes

Issue #1

The experimental option `devCacheControlNoCache` has been removed and replaced with hard-coded no-caching behavior.

Migration Steps

  1. 1
    Remove usage of the experimental `devCacheControlNoCache` option; caching behavior is now hard-coded to no-cache.
  2. 2
    If you were using `adapterPath` in experimental configuration, move it to the stable top-level configuration.

Release Summary

This release introduces stability improvements by moving adapter path configuration to stable, fixing several caching and prefetching bugs, and removing the experimental devCacheControlNoCache option.

Need More Details?

View the full release notes and all changes for Next.js v16.2.0-canary.103.

View Full Changelog