- Next.js 15 is officially stable and ready for production! ๐
- Caching behavior for requests has changed, now giving you more control over your strategy. ๐
- Request-specific APIs are now asynchronous, requiring some code updates. ๐
- Upgrading is easier than ever with the new
npx create-next-app@canary upgrade latest
command. ๐ - Next.js 15 supports React 19, but you can still use React 18 with the pages router if needed. ๐ค
- A new static route indicator makes it easier to see which routes are static or dynamic during development. ๐ก
- TypeScript support has been added for the Next.js config file. โก๏ธ
- A new
next/form
component simplifies form handling with automatic prefetching, client-side navigation, and progressive enhancement. โ๏ธ