-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
breaking: require Node 18.13 or newer #11172
Conversation
🦋 Changeset detectedLatest commit: dff154f The changes in this PR will be included in the next version bump. This PR includes changesets to release 2 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
Which |
Looks like I forgot about our naming convention and it's called
|
I see - how are the two related? Is this a "while we're at it.."-thing? Do Bun/Deno (the ones we check in that const) not have these? Or is this for a more general future-proof thing? |
I just went through our history to see how this all came about. It looks like we tried to detect whether the APIs were available, but it didn't work because undici had the APIs available, but with some missing functionality. Now we don't have that constraint anymore, so can remove a bunch of code to simplify things like removing the |
Ok so you're proposing to remove |
Yeah. I pushed that change |
Should we remove the
shouldPolyfill
method and polyfill whenever it's not already onglobalThis
?Closes #10527