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.
v18.8.0 release proposal #44246
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
Uh oh!
There was an error while loading. Please reload this page.
v18.8.0 release proposal #44246
Changes from 1 commit
3af44c6c0d2098091d01551db352f6a70199856fc762a0a4cc939e19ad1a8233348dde373523bc900bc11a31e38ad537e6e2a3bf3cd8704d2c44730bf9bceff7a6235a0a7bc13853665d1e6989ca24eac24baa876bf688d1196023b4677f7cbc11890b909a440ef04cc4e8f956343e1d9fd4262dd34dd9d8a03ccb935c4fc7fdc5365887b6f882318f27e003a6c6e8845f580fcd64813273c5326a4e99bdf91dc11a9ae9162fd899b45ad00befe01c5cb5c6531589b554c8339c5e04c502e10a5975931d43e8be0ddf9c1634a92d18a79636c7373b70de278c0e671285adf03929bbabde6a47e808f6f1ca36befa68c4e451f333196cfb1ac2178f17c2ea22ff461d79bd27b8be057480ebff06b3f325263dbbaa0d6ebc75646417c9fc9534ed36b0d9dc33f16256bd58082c246c4b2e063b5c4951b4a1b1598894eded43c2b89d11c75c47841ecf717007a9ffcd5f7a601b03d2a388967d89e1b5e1ab723adecad14b34e5c975427bcb94aaba1915dfad06301c51d8370bb6a3c51d85ef5fcd4998fa488273014b7104210eac875ec5c3c5e03321cb9fedf3560de6632a75bcefb5884aa127c48c9602fa83a7ffe3359c2cb0e3e6946c92c190f3c5ea60ae6702bcf1305bf817521ad0e45dcd5cbb346eafd80430ce5de6e40c0f55ee394f33abea4d64300a6c18c6462f2ea4ba82e768ceb62e5900c4c0741402d96c3373db0b9b6File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Notable changes: bootstrap: implement run-time user-land snapshots via --build-snapshot and --snapshot-blob This patch introduces `--build-snapshot` and `--snapshot-blob` options for creating and using user land snapshots. To generate a snapshot using snapshot.js as an entry point and write the snapshot blob to snapshot.blob: ```bash echo "globalThis.foo = 'I am from the snapshot'" > snapshot.js node --snapshot-blob snapshot.blob --build-snapshot snapshot.js ``` To restore application state from snapshot.blob, with index.js as the entry point script for the deserialized application: ```bash echo "console.log(globalThis.foo)" > index.js node --snapshot-blob snapshot.blob index.js ``` Users can also use the `v8.startupSnapshot` API to specify an entry point at snapshot building time, thus avoiding the need of an additional entry script at deserialization time: ```bash echo "require('v8').startupSnapshot.setDeserializeMainFunction(() => console.log('I am from the snapshot'))" > snapshot.js node --snapshot-blob snapshot.blob --build-snapshot snapshot.js node --snapshot-blob snapshot.blob ``` Contributed by Joyee Cheung in #38905 Other notable changes: * crypto: * (SEMVER-MINOR) allow zero-length IKM in HKDF and in webcrypto PBKDF2 (Filip Skokan) #44201 * (SEMVER-MINOR) allow zero-length secret KeyObject (Filip Skokan) #44201 * doc: * add MoLow to collaborators (Moshe Atlow) #44214 * add ErickWendel to collaborators (Erick Wendel) #44088 * http: * (SEMVER-MINOR) make idle http parser count configurable (theanarkh) #43974 * net: * (SEMVER-MINOR) add local family (theanarkh) #43975 * src: * (SEMVER-MINOR) add detailed embedder process initialization API (Anna Henningsen) #44121 * (SEMVER-MINOR) print source map error source on demand (Chengzhong Wu) #43875 * tls: * (SEMVER-MINOR) pass a valid socket on `tlsClientError` (Daeyeon Jeong) #44021 * worker: * deprecate `--trace-atomics-wait` (Keyhan Vakil) #44093Uh oh!
There was an error while loading. Please reload this page.
There are no files selected for viewing
Uh oh!
There was an error while loading. Please reload this page.