You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have silently run my local dev setup on Node 22.x for quite a while and haven't noticed any compatibility issues. The only issue I noticed is that we're getting this deprecation warning a bunch of times:
(node:90744) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
(Use `node --trace-deprecation ...` to show where the warning was created)
We can most likely fix this one by upgrading/fixing the version of whatwg-url in our dependencies.
We are currently running all our servers on Node 18.16, a version released in April 2023.
2024-10-29 (next Tuesday) marks the day when Node 22 goes into Active LTS.
New features
Going from 18.16 to (e.g.) 22.10 gives us the following new features:
Array.toReversed()
,.toSorted()
, etc. operationsObject.groupBy()
andMap.groupBy()
Set.union()
,Set.intersection()
node --watch
)glob
andglobSync
Compatibility
I have silently run my local dev setup on Node 22.x for quite a while and haven't noticed any compatibility issues. The only issue I noticed is that we're getting this deprecation warning a bunch of times:
We can most likely fix this one by upgrading/fixing the version of
whatwg-url
in our dependencies.Steps
corepack enable
) rather than installing yarn manually?The text was updated successfully, but these errors were encountered: