-
-
Notifications
You must be signed in to change notification settings - Fork 33.4k
src: use String::WriteV2() in TwoByteValue #58164
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
src: use String::WriteV2() in TwoByteValue #58164
Conversation
Since `String::Write()` is deprecated, use `String::WriteV2()` instead.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #58164 +/- ##
=======================================
Coverage 90.17% 90.18%
=======================================
Files 630 630
Lines 186503 186502 -1
Branches 36614 36612 -2
=======================================
+ Hits 168187 168200 +13
+ Misses 11124 11116 -8
+ Partials 7192 7186 -6
🚀 New features to boost your workflow:
|
Commit Queue failed- Loading data for nodejs/node/pull/58164 ✔ Done loading data for nodejs/node/pull/58164 ----------------------------------- PR info ------------------------------------ Title src: use String::WriteV2() in TwoByteValue (#58164) ⚠ Could not retrieve the email or name of the PR author's from user's GitHub profile! Branch tniessen:src-twobytevalue-writev2 -> nodejs:main Labels c++, v8 engine, author ready, needs-ci Commits 1 - src: use String::WriteV2() in TwoByteValue Committers 1 - Tobias Nießen <[email protected]> PR-URL: https://github.com/nodejs/node/pull/58164 Reviewed-By: Juan José Arboleda <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Daeyeon Jeong <[email protected]> Reviewed-By: Gerhard Stöbich <[email protected]> Reviewed-By: James M Snell <[email protected]> ------------------------------ Generated metadata ------------------------------ PR-URL: https://github.com/nodejs/node/pull/58164 Reviewed-By: Juan José Arboleda <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Daeyeon Jeong <[email protected]> Reviewed-By: Gerhard Stöbich <[email protected]> Reviewed-By: James M Snell <[email protected]> -------------------------------------------------------------------------------- ℹ This PR was created on Sun, 04 May 2025 15:34:31 GMT ✔ Approvals: 6 ✔ - Juan José Arboleda (@juanarbol): https://github.com/nodejs/node/pull/58164#pullrequestreview-2813498914 ✔ - Joyee Cheung (@joyeecheung) (TSC): https://github.com/nodejs/node/pull/58164#pullrequestreview-2813505928 ✔ - Yagiz Nizipli (@anonrig) (TSC): https://github.com/nodejs/node/pull/58164#pullrequestreview-2813533305 ✔ - Daeyeon Jeong (@daeyeon): https://github.com/nodejs/node/pull/58164#pullrequestreview-2813696863 ✔ - Gerhard Stöbich (@Flarna): https://github.com/nodejs/node/pull/58164#pullrequestreview-2815817883 ✔ - James M Snell (@jasnell) (TSC): https://github.com/nodejs/node/pull/58164#pullrequestreview-2820020780 ✘ Last GitHub CI failed ℹ Last Full PR CI on 2025-05-05T03:04:00Z: https://ci.nodejs.org/job/node-test-pull-request/66603/ - Querying data for job/node-test-pull-request/66603/ ✔ Last Jenkins CI successful -------------------------------------------------------------------------------- ✔ Aborted `git node land` session in /home/runner/work/node/node/.ncuhttps://github.com/nodejs/node/actions/runs/14913152558 |
@nodejs/build I am not sure why the commit queue says "Last GitHub CI failed", nor do I know what's up with the failed |
https://ci.nodejs.org/job/node-test-commit-v8-linux/6529/ was started by the automation because this PR was labelled https://ci.nodejs.org/job/node-test-commit-v8-linux/6545/ failed because the |
Landed in 8debf0b |
Thank you @richardlau! |
Since `String::Write()` is deprecated, use `String::WriteV2()` instead. PR-URL: #58164 Reviewed-By: Juan José Arboleda <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Daeyeon Jeong <[email protected]> Reviewed-By: Gerhard Stöbich <[email protected]> Reviewed-By: James M Snell <[email protected]>
Adding
dont-land-on-v22.x
|
Since
String::Write()
is deprecated, useString::WriteV2()
instead.