-
-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2024-10-22のJS: Node.js v23.0.0、Next.js 15、Express v5(pre) #1234
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Node.js v23.0.0 (Current)がリリースされました。
require(esm)
をデフォルトで有効化、32 bit Windowsのサポートを削除、node --run
をStableに変更されています。また、非推奨な
--huge-max-old-generation-size
を削除、node:util
パッケージから非推奨な_extend()
やisBoolean()
などを削除なども行われています。Next.js v15がリリースされました。
破壊的な変更として、
fetch
はデフォルトでno-store
に変更、GET
ルートハンドラーはデフォルトでキャッシュしないように、クライアントルーターキャッシュもデフォルトではキャッシュしないように変更されています。また、
header
/cookies
/params
/searchParams
へのアクセスが非同期APIへと変更、Server Actionで使用してないActionは公開されないように変更されています。React 19 RCへ対応、実験的なReactコンパイラのサポート、Hydration Errorの改善、Static Route Indicatorの追加されています。
また実験的なAPIとして
unstable_after
の追加、Turbopackとinstrumentation.js
がStableに、<Form>
コンポーネントの追加、next.config.ts
のサポート、ESLint 9のサポートなども行われています。マイグレーションガイドやcodemodでのアップグレード方法も提供されています。
Express v5がpre-releaseされました。
また、npm上ではstable(
latest
のタグ)にはなっていませんが、npm install express@next
でインストール可能です。Node.js 18未満のサポート終了、パスマッチングの挙動の変更、Promiseのサポート、body parserの挙動変更、非推奨のメソッドを削除などが行われています。