Skip to content
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: update deno version range to include v2 #6118

Merged
merged 22 commits into from
Mar 28, 2025
Merged

Conversation

mrstork
Copy link
Contributor

@mrstork mrstork commented Mar 12, 2025

Summary

Part of FRB-1635
Updates the valid deno build range to include v2

  • Add --allow-import to arguments we run deno in version 2.x
  • if (isTooManyTries(error)) -> coerce Error type
TS2345 [ERROR]: Argument of type 'unknown' is not assignable to parameter of type 'Error'.
    if (isTooManyTries(error)) {
  • Updated some snapshots for latest/2.2.4 deno tests

For us to review and ship your PR efficiently, please perform the following steps:

  • Open a bug/issue before writing your code 🧑‍💻. This ensures
    we can discuss the changes and get feedback from everyone that should be involved. If you`re fixing a typo or
    something that`s on fire 🔥 (e.g. incident related), you can skip this step.
  • Read the contribution guidelines 📖. This ensures
    your code follows our style guide and passes our tests.
  • Update or add tests (if any source code was changed or added) 🧪
  • Update or add documentation (if features were changed or added) 📝
  • Make sure the status checks below are successful ✅

A picture of a cute animal (not mandatory, but encouraged)

Sorry, something went wrong.

@mrstork mrstork force-pushed the update-deno-version branch 2 times, most recently from beaf9a1 to 8cde9c3 Compare March 12, 2025 14:50
@mrstork mrstork force-pushed the update-deno-version branch 2 times, most recently from 375f967 to bff181c Compare March 25, 2025 14:02
JakeChampion and others added 4 commits March 26, 2025 10:31
@JakeChampion JakeChampion marked this pull request as ready for review March 27, 2025 13:04
@JakeChampion JakeChampion requested a review from a team as a code owner March 27, 2025 13:04
@@ -125,7 +126,7 @@ const prepareServer = ({
// the `stage2Path` file as well as all of their dependencies.
// Consumers such as the CLI can use this information to watch all the
// relevant files and issue an isolate restart when one of them changes.
const { stdout } = await deno.run(['info', '--json', stage2Path])
const { stdout } = await deno.run(['info', '--json', pathToFileURL(stage2Path).href])
Copy link
Contributor

Choose a reason for hiding this comment

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

we already were using this setup in

const { exitCode, stderr, stdout } = await deno.run(
[
'run',
'--allow-env',
'--allow-net',
'--allow-read',
`--allow-write=${collector.path}`,
'--quiet',
`--import-map=${importMap.toDataURL()}`,
'--no-config',
'--node-modules-dir=false',
extractorPath,
pathToFileURL(func.path).href,
pathToFileURL(collector.path).href,
JSON.stringify(ConfigExitCode),
],
for example

Without it, deno 2 fails this with this kind of errors on windows:

{
  version: 1,
  roots: [
    'c:\\Users\\misiek\\dev\\netlify-build\\packages\\edge-bundler\\test\\fixtures\\serve_test\\.netlify\\edge-functions-serve\\dev.js'
  ],
  modules: [
    {
      specifier: 'c:\\Users\\misiek\\dev\\netlify-build\\packages\\edge-bundler\\test\\fixtures\\serve_test\\.netlify\\edge-functions-serve\\dev.js',
      error: 'Unsupported scheme "c" for module "c:\\Users\\misiek\\dev\\netlify-build\\packages\\edge-bundler\\test\\fixtures\\serve_test\\.netlify\\edge-functions-serve\\dev.js". Supported schemes:\n' +
        ' - "blob"\n' +
        ' - "data"\n' +
        ' - "file"\n' +
        ' - "http"\n' +
        ' - "https"\n' +
        ' - "jsr"\n' +
        ' - "npm"'
    }
  ],
  redirects: {}
}

@@ -16,7 +16,7 @@ const DENO_VERSION_FILE = 'version.txt'
// When updating DENO_VERSION_RANGE, ensure that the deno version
// on the netlify/buildbot build image satisfies this range!
// https://github.com/netlify/buildbot/blob/f9c03c9dcb091d6570e9d0778381560d469e78ad/build-image/noble/Dockerfile#L410
const DENO_VERSION_RANGE = '1.39.0 - 1.46.3'
const DENO_VERSION_RANGE = '1.39.0 - 2.2.4'
Copy link
Contributor

Choose a reason for hiding this comment

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

Do note, that if system doesn't have deno installed, or installed version doesn't match the range, we will continue to download 1.39.0 for our use due to way this is implemented:

const getLatestVersionForRange = async (range: string) => {
const minimumVersion = semver.minVersion(range)?.version
// We should never get here, because it means that `DENO_VERSION_RANGE` is
// a malformed semver range. If this does happen, let's throw an error so
// that the tests catch it.
if (minimumVersion === undefined) {
throw new Error('Incorrect version range specified by Edge Bundler')
}
const latestVersion = await getLatestVersion()
if (latestVersion === undefined || !semver.satisfies(latestVersion, range)) {
return minimumVersion
}
return latestVersion
}

And fact that actually latest version of Deno today is 2.2.6 (and will continue to be bumped), so that latest version is not in our range and the function falling back to min version.

I think this might be desirable to be the case at least temporarily to possibly migrate with slower pace to catch things we didn't catch here, but I just want to at least flag it here

@JakeChampion JakeChampion enabled auto-merge (squash) March 28, 2025 15:36
@JakeChampion JakeChampion merged commit 297177f into main Mar 28, 2025
33 checks passed
@JakeChampion JakeChampion deleted the update-deno-version branch March 28, 2025 15:48
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.

None yet

3 participants