-
-
Notifications
You must be signed in to change notification settings - Fork 41
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
feat(no-unsupported): Support node 23.0.0 and 22.10.0 #358
Conversation
lib/unsupported-features/node-builtins-modules/worker_threads.js
Outdated
Show resolved
Hide resolved
SubtleCrypto: { [READ]: { experimental: ["17.6.0", "16.15.0"] } }, | ||
|
||
// module.events | ||
CustomEvent: events.CustomEvent, | ||
CloseEvent: { [READ]: { supported: ["23.0.0"] } }, | ||
CustomEvent: {[READ]: { experimental: ["18.7.0", "16.17.0"], supported: ["23.0.0"] } }, |
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.
Global CustomEvent
differs from node:event
's CustomEvent
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.
🤯 I mostly look at the global docs page, that could be annoying...
I wonder if we should ask someone from Node themselves?
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.
Indeed annoying, but that's what the docs are saying. 🤷♂️
I think we should always stick to what the docs are saying.
I do think it would be a good idea to have a discussion with people on the Node team to find out if docs are incorrect and if so, update the docs (and our code).
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.
I see thanks for the explanation here 🙇: #358 (comment)
e2d546c
to
9b5f2ec
Compare
9b5f2ec
to
50f95c2
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.
Thank you 💜
Closes #356
Closes #357