-
Notifications
You must be signed in to change notification settings - Fork 62
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
Conversation
beaf9a1
to
8cde9c3
Compare
375f967
to
bff181c
Compare
223234d
to
e334886
Compare
…action can not locate 2.2.5
3e9fed3
to
6f0e94e
Compare
@@ -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]) |
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.
we already were using this setup in
build/packages/edge-bundler/node/config.ts
Lines 98 to 113 in 1b9f2f4
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), | |
], |
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' |
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.
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:
build/packages/edge-bundler/node/downloader.ts
Lines 90 to 108 in 17cdb7c
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
Summary
Part of FRB-1635
Updates the valid deno build range to include v2
--allow-import
to arguments we rundeno
in version 2.xif (isTooManyTries(error))
-> coerceError
typeFor us to review and ship your PR efficiently, please perform the following steps:
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.
your code follows our style guide and passes our tests.
A picture of a cute animal (not mandatory, but encouraged)