-
Notifications
You must be signed in to change notification settings - Fork 16k
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
chore: bump Node.js to v22.9.0 #44281
Conversation
0e5a375
to
c3edc06
Compare
0649495
to
837073f
Compare
5c4f48f
to
e7d67d0
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Overall it looks great! Left a few comments on what I thought could be potential breaking or unexpected changes, but am not going to block on them
'-fno-rtti', | ||
'-fno-exceptions', | ||
'-fno-strict-aliasing', | ||
- '-std=gnu++17', | ||
+ '-std=gnu++20', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is changing this potentially going to break any native node modules for devs if they don't update their flags to be something similar? Just trying to think if we need to call out anything in the breaking changes doc.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It shouldn't - this fixes a file split change but won't change anything more than was already changed in #43555!
patches/sqlite/fix_rename_sqlite_win32_exports_to_avoid_conflicts_with_node_js.patch
Show resolved
Hide resolved
@@ -20,4 +20,5 @@ export const emittedUntil = async (emitter: NodeJS.EventEmitter, eventName: stri | |||
for await (const args of on(emitter, eventName)) { | |||
if (untilFn(...args)) { return args; } | |||
} | |||
return []; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this change a return type here? 👀
@@ -174,7 +174,6 @@ | ||
'src/timers.cc', | ||
'src/timer_wrap.cc', | ||
'src/tracing/agent.cc', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#include <openssl/evp.h> | ||
#include <openssl/hmac.h> | ||
#include <openssl/pkcs12.h> | ||
+#include <openssl/rand.h> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Upstreamed at nodejs/node#55425
esm_drop_support_for_import_assertions.patch | ||
fix_-wextra-semi_errors_in_nghttp2_helper_h.patch | ||
fix_remove_harmony-import-assertions_from_node_cc.patch | ||
win_almost_fix_race_detecting_esrch_in_uv_kill.patch |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
great work cleaning this up!
@@ -1,5 +1,4 @@ | |||
#include <node_api.h> | |||
#undef NAPI_VERSION |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This used to be necessary due to a conflict in #include <node_buffer.h>
and #include <node_api.h>
born of duplicate declarations, and isn't anymore as the duplicates got refactored out.
@@ -510,7 +510,8 @@ describe('utilityProcess module', () => { | |||
expect(output).to.equal(result); | |||
}); | |||
|
|||
it('does not inherit parent env when custom env is provided', async () => { | |||
// TODO(codebytere): figure out why this is failing in ASAN- builds on Linux. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This fails in ASAN but importantly does not cause a crash (the test just fails), so I'm disabling it for now to unblock the roll. There are no issues in non-ASAN builds.
@@ -0,0 +1,70 @@ | |||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This addresses nodejs/node#51766 - which we were seeing in CI on Windows.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
API LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
API LGTM
Release Notes Persisted
|
This reverts commit c63d0d6.
Description of Change
Upgrade Node.js to v22.9.0.
Checklist
npm test
passesRelease Notes
Notes: Upgrades Node.js to v22.9.0.