diff options
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 28 | ||||
-rw-r--r-- | cli/compat/esm_resolver.rs | 2 | ||||
-rw-r--r-- | cli/compat/mod.rs | 2 | ||||
-rw-r--r-- | cli/tests/testdata/compat/import_map.json | 2 | ||||
-rw-r--r-- | cli/tests/testdata/compat/import_map_https_imports.mjs | 2 |
5 files changed, 18 insertions, 18 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 10db61bf7..25f9e1de5 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "1.17.2" +version = "1.17.3" authors = ["the Deno authors"] default-run = "deno" edition = "2021" @@ -20,17 +20,17 @@ harness = false path = "./bench/main.rs" [build-dependencies] -deno_broadcast_channel = { version = "0.25.0", path = "../ext/broadcast_channel" } -deno_console = { version = "0.31.0", path = "../ext/console" } -deno_core = { version = "0.113.0", path = "../core" } -deno_crypto = { version = "0.45.0", path = "../ext/crypto" } -deno_fetch = { version = "0.54.0", path = "../ext/fetch" } -deno_net = { version = "0.23.0", path = "../ext/net" } -deno_url = { version = "0.31.0", path = "../ext/url" } -deno_web = { version = "0.62.0", path = "../ext/web" } -deno_webgpu = { version = "0.32.0", path = "../ext/webgpu" } -deno_websocket = { version = "0.36.0", path = "../ext/websocket" } -deno_webstorage = { version = "0.26.0", path = "../ext/webstorage" } +deno_broadcast_channel = { version = "0.26.0", path = "../ext/broadcast_channel" } +deno_console = { version = "0.32.0", path = "../ext/console" } +deno_core = { version = "0.114.0", path = "../core" } +deno_crypto = { version = "0.46.0", path = "../ext/crypto" } +deno_fetch = { version = "0.55.0", path = "../ext/fetch" } +deno_net = { version = "0.24.0", path = "../ext/net" } +deno_url = { version = "0.32.0", path = "../ext/url" } +deno_web = { version = "0.63.0", path = "../ext/web" } +deno_webgpu = { version = "0.33.0", path = "../ext/webgpu" } +deno_websocket = { version = "0.37.0", path = "../ext/websocket" } +deno_webstorage = { version = "0.27.0", path = "../ext/webstorage" } regex = "=1.5.4" serde = { version = "=1.0.133", features = ["derive"] } zstd = '=0.9.2' @@ -41,11 +41,11 @@ winres = "=0.1.11" [dependencies] deno_ast = { version = "0.9.0", features = ["bundler", "codegen", "dep_graph", "module_specifier", "proposal", "react", "sourcemap", "transforms", "transpiling", "typescript", "view", "visit"] } -deno_core = { version = "0.113.0", path = "../core" } +deno_core = { version = "0.114.0", path = "../core" } deno_doc = "0.26.0" deno_graph = "0.18.0" deno_lint = { version = "0.22.0", features = ["docs"] } -deno_runtime = { version = "0.39.0", path = "../runtime" } +deno_runtime = { version = "0.40.0", path = "../runtime" } atty = "=0.2.14" base64 = "=0.13.0" diff --git a/cli/compat/esm_resolver.rs b/cli/compat/esm_resolver.rs index 029521f46..389e34c1b 100644 --- a/cli/compat/esm_resolver.rs +++ b/cli/compat/esm_resolver.rs @@ -1193,7 +1193,7 @@ mod tests { let cwd = testdir("basic"); let main = Url::from_file_path(cwd.join("main.js")).unwrap(); let expected = - Url::parse("https://deno.land/std@0.120.0/node/http.ts").unwrap(); + Url::parse("https://deno.land/std@0.121.0/node/http.ts").unwrap(); let actual = node_resolve("http", main.as_str(), &cwd).unwrap(); println!("actual {}", actual); diff --git a/cli/compat/mod.rs b/cli/compat/mod.rs index 989113ad3..8299febe3 100644 --- a/cli/compat/mod.rs +++ b/cli/compat/mod.rs @@ -16,7 +16,7 @@ pub(crate) use esm_resolver::NodeEsmResolver; // each release, a better mechanism is preferable, but it's a quick and dirty // solution to avoid printing `X-Deno-Warning` headers when the compat layer is // downloaded -static STD_URL_STR: &str = "https://deno.land/std@0.120.0/"; +static STD_URL_STR: &str = "https://deno.land/std@0.121.0/"; static SUPPORTED_MODULES: &[&str] = &[ "assert", diff --git a/cli/tests/testdata/compat/import_map.json b/cli/tests/testdata/compat/import_map.json index d84c7a882..3faa13c82 100644 --- a/cli/tests/testdata/compat/import_map.json +++ b/cli/tests/testdata/compat/import_map.json @@ -1,5 +1,5 @@ { "imports": { - "std/": "https://deno.land/std@0.120.0/" + "std/": "https://deno.land/std@0.121.0/" } } diff --git a/cli/tests/testdata/compat/import_map_https_imports.mjs b/cli/tests/testdata/compat/import_map_https_imports.mjs index 9ba7dd81f..3b8075838 100644 --- a/cli/tests/testdata/compat/import_map_https_imports.mjs +++ b/cli/tests/testdata/compat/import_map_https_imports.mjs @@ -1,5 +1,5 @@ import { sortBy } from "std/collections/sort_by.ts"; -import { findSingle } from "https://deno.land/std@0.120.0/collections/find_single.ts"; +import { findSingle } from "https://deno.land/std@0.121.0/collections/find_single.ts"; import os from "node:os"; console.log(sortBy([2, 3, 1], (it) => it)); |