Skip to content

Conversation

Fil
Copy link
Contributor

@Fil Fil commented Jan 10, 2025

TODO:

After this is done:

  • review all links in /releases that should now point to CHANGELOG-2024.md instead of CHANGELOG.md.

The typescript-eslint issue happens if we yarn upgrade, then we get this warning when we run yarn test:tsc:

WARNING: You are currently running a version of TypeScript which is not officially supported by @typescript-eslint/typescript-estree.

You may find that it works just fine, or you may not.

SUPPORTED TYPESCRIPT VERSIONS: >=4.7.4 <5.6.0

YOUR TYPESCRIPT VERSION: 5.7.3

Please only submit bug reports when using the officially supported version.

due to https://github.com/typescript-eslint/typescript-eslint/blob/81dc579e01c6e95bd347725eab4d9a26a5fc724d/package.json#L123

(A way of dealing with this is to avoid doing yarn upgrade for the moment.)

Fixes #2234.

const response = await fetch(url);
if (!response.ok) throw new Error("unable to fetch");
const source = await response.text();
return import(`data:text/javascript;base64,${Buffer.from(source).toString("base64")}`);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Node 22 dropped support for --experimental-network-imports in nodejs/node#53822, so I’ve implemented a workaround.

@mbostock mbostock changed the title 0.6.17 and 2025 0.6.17 Feb 13, 2025
@mbostock mbostock marked this pull request as ready for review February 13, 2025 22:41
@Fil
Copy link
Contributor Author

Fil commented Feb 14, 2025

Approved!

(Pull request authors can’t approve their own pull request.)

@mbostock mbostock merged commit 42da60b into main Feb 14, 2025
1 check passed
@mbostock mbostock deleted the 0.6.17 branch February 14, 2025 16:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants