-
Notifications
You must be signed in to change notification settings - Fork 30k
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
stream: use structuredClone instead of v8 #45611
stream: use structuredClone instead of v8 #45611
Conversation
It would be cool not to have empty commit messages and empty PR descriptions. What is being done or how it is being done is often less relevant than the reasoning behind it. |
Thanks for the feedback. I'll add descriptions from now on. I've also updated the description for this pull request. |
Commit Queue failed- Loading data for nodejs/node/pull/45611 ✔ Done loading data for nodejs/node/pull/45611 ----------------------------------- PR info ------------------------------------ Title stream: use structuredClone instead of v8 (#45611) Author Yagiz Nizipli (@anonrig) Branch anonrig:stream/structured-clone -> nodejs:main Labels author ready, needs-ci, dont-land-on-v14.x, dont-land-on-v16.x, web streams Commits 3 - stream: use structuredClone instead of v8 - fixup! stream: use structuredClone instead of v8 - fixup! stream: use structuredClone instead of v8 Committers 1 - Yagiz Nizipli PR-URL: https://github.com/nodejs/node/pull/45611 Reviewed-By: Erick Wendel Reviewed-By: Antoine du Hamel Reviewed-By: Luigi Pinca ------------------------------ Generated metadata ------------------------------ PR-URL: https://github.com/nodejs/node/pull/45611 Reviewed-By: Erick Wendel Reviewed-By: Antoine du Hamel Reviewed-By: Luigi Pinca -------------------------------------------------------------------------------- ℹ This PR was created on Thu, 24 Nov 2022 16:56:34 GMT ✔ Approvals: 3 ✔ - Erick Wendel (@erickwendel): https://github.com/nodejs/node/pull/45611#pullrequestreview-1193461926 ✔ - Antoine du Hamel (@aduh95) (TSC): https://github.com/nodejs/node/pull/45611#pullrequestreview-1193532434 ✔ - Luigi Pinca (@lpinca): https://github.com/nodejs/node/pull/45611#pullrequestreview-1193580550 ✔ Last GitHub CI successful ℹ Last Full PR CI on 2022-11-24T18:52:43Z: https://ci.nodejs.org/job/node-test-pull-request/48167/ ⚠ Commits were pushed after the last Full PR CI run: ⚠ - fixup! stream: use structuredClone instead of v8 - Querying data for job/node-test-pull-request/48167/ ✔ Last Jenkins CI successful -------------------------------------------------------------------------------- ✔ Aborted `git node land` session in /home/runner/work/node/node/.ncuhttps://github.com/nodejs/node/actions/runs/3554598277 |
Landed in dda7a21 |
PR-URL: nodejs#45611 Reviewed-By: Erick Wendel <erick.workspace@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
PR-URL: #45611 Reviewed-By: Erick Wendel <erick.workspace@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
PR-URL: #45611 Reviewed-By: Erick Wendel <erick.workspace@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
PR-URL: #45611 Reviewed-By: Erick Wendel <erick.workspace@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
PR-URL: #45611 Reviewed-By: Erick Wendel <erick.workspace@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
PR-URL: #45611 Reviewed-By: Erick Wendel <erick.workspace@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
PR-URL: #45611 Reviewed-By: Erick Wendel <erick.workspace@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This pull request replaces
deserialize(serialize(value))
withstructuredClone(value)
due to performance.