-
-
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
2022-10-25のJS: Node.js 19、npm 9、Safari 16.1(Web Push) #1015
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 19.0.0がリリースされました。
Node.js 19は奇数バージョンなので、開発バージョン扱いとなりLTSとしてはリリースされません。
Node.js 19.0.0では、
node --watch
の追加、HTTP/1.1でkeepAlive
がデフォルト化、WebCryptoがStableへと変更されています。依存関係がV8 10.7、llhttp 8.1.0、npm 8.19.2へアップデートされています。
また、
--require
フラグのESM版である--import
フラグの追加なども行われています。npm 9.0.0がリリースされました。
まだ
@latest
のdist-tagが付けられていないため、npm i -g npm@9
でインストールができます。2022年11月9日に
@latest
のdist-tagが貼られてGAとなりnpm i -g npm
でインストールできるようになります。その後、Node.js 19と18にも同梱される予定となっているようです。
npm 9では、Node.js 12のサポート終了、認証方法を扱う
--auth-type
のデフォルトを"web"
に変更しています。また、
package.json
にfiles
フィールドが定義されている場合はルートにある.gitignore
や.npmignore
を無視するように変更。エラーとクラッシュのログを区別し、
--json
をつけた場合でもクラッシュのログはJSONとして出力しないように変更。npm access
、npm birthday
、npm set-script
、npm bin
コマンドの削除なども含まれます。Safari 16.1がリリースされました。
Safari 16.1ではSafari Push Notificationsという独自のプッシュ通知でなく、Service Workerに対応したWeb Pushのサポートしています。
その他にはAVIF形式のサポート、PassKeysのサポート、Scroll to Text Fragmentのサポートが追加されています。