diff options
author | Bert Belder <bertbelder@gmail.com> | 2021-11-24 15:56:18 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-24 15:56:18 -0800 |
commit | c6f3493f18f6b8e3c9b1a88523bb900d16b1fc2d (patch) | |
tree | 670ddb57e39941e6379c1695ac17b9e18069137b /cli | |
parent | adc5974333174bd59796f5b7bb8b010c17479dd0 (diff) |
chore: merge v1.16.3 into main (#12892)
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 30 | ||||
-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, 19 insertions, 19 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 9c19600f9..f770bcc5e 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "1.16.2" +version = "1.16.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.20.0", path = "../ext/broadcast_channel" } -deno_console = { version = "0.26.0", path = "../ext/console" } -deno_core = { version = "0.108.0", path = "../core" } -deno_crypto = { version = "0.40.0", path = "../ext/crypto" } -deno_fetch = { version = "0.49.0", path = "../ext/fetch" } -deno_net = { version = "0.18.0", path = "../ext/net" } -deno_url = { version = "0.26.0", path = "../ext/url" } -deno_web = { version = "0.57.0", path = "../ext/web" } -deno_webgpu = { version = "0.27.0", path = "../ext/webgpu" } -deno_websocket = { version = "0.31.0", path = "../ext/websocket" } -deno_webstorage = { version = "0.21.0", path = "../ext/webstorage" } +deno_broadcast_channel = { version = "0.21.0", path = "../ext/broadcast_channel" } +deno_console = { version = "0.27.0", path = "../ext/console" } +deno_core = { version = "0.109.0", path = "../core" } +deno_crypto = { version = "0.41.0", path = "../ext/crypto" } +deno_fetch = { version = "0.50.0", path = "../ext/fetch" } +deno_net = { version = "0.19.0", path = "../ext/net" } +deno_url = { version = "0.27.0", path = "../ext/url" } +deno_web = { version = "0.58.0", path = "../ext/web" } +deno_webgpu = { version = "0.28.0", path = "../ext/webgpu" } +deno_websocket = { version = "0.32.0", path = "../ext/websocket" } +deno_webstorage = { version = "0.22.0", path = "../ext/webstorage" } regex = "1.5.4" serde = { version = "1.0.129", features = ["derive"] } @@ -40,12 +40,12 @@ winres = "0.1.11" [dependencies] deno_ast = { version = "0.5.0", features = ["bundler", "codegen", "dep_graph", "module_specifier", "proposal", "react", "sourcemap", "transforms", "typescript", "view", "visit"] } -deno_core = { version = "0.108.0", path = "../core" } +deno_core = { version = "0.109.0", path = "../core" } deno_doc = "0.21.0" deno_graph = "0.12.0" deno_lint = { version = "0.19.0", features = ["docs"] } -deno_runtime = { version = "0.34.0", path = "../runtime" } -deno_tls = { version = "0.13.0", path = "../ext/tls" } +deno_runtime = { version = "0.35.0", path = "../runtime" } +deno_tls = { version = "0.14.0", path = "../ext/tls" } atty = "0.2.14" base64 = "0.13.0" diff --git a/cli/compat/esm_resolver.rs b/cli/compat/esm_resolver.rs index 5787c9e48..ecf5562a1 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.115.0/node/http.ts").unwrap(); + Url::parse("https://deno.land/std@0.116.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 41443968f..bdb642ea7 100644 --- a/cli/compat/mod.rs +++ b/cli/compat/mod.rs @@ -15,7 +15,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.115.0/"; +static STD_URL_STR: &str = "https://deno.land/std@0.116.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 881c06e16..20a4101ff 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.115.0/" + "std/": "https://deno.land/std@0.116.0/" } } diff --git a/cli/tests/testdata/compat/import_map_https_imports.mjs b/cli/tests/testdata/compat/import_map_https_imports.mjs index 0936c2214..7847bafd9 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.115.0/collections/find_single.ts"; +import { findSingle } from "https://deno.land/std@0.116.0/collections/find_single.ts"; import os from "node:os"; console.log(sortBy([2, 3, 1], (it) => it)); |