diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-01-27 18:52:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-27 18:52:34 +0100 |
commit | 5cf23176dc0a66f9622c79ca9ee87dbf38076a7c (patch) | |
tree | 06827249ee558075e05f36f0439172428a424b57 /cli | |
parent | f248e6f1778dc26db91d3322de2ecca5d1aa9866 (diff) |
chore: forward v1.18.1 to main (#13514)
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 03a3a3d5a..b9dcf38fe 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "1.18.0" +version = "1.18.1" authors = ["the Deno authors"] default-run = "deno" edition = "2021" @@ -25,17 +25,17 @@ harness = false path = "./bench/lsp_bench_standalone.rs" [build-dependencies] -deno_broadcast_channel = { version = "0.28.0", path = "../ext/broadcast_channel" } -deno_console = { version = "0.34.0", path = "../ext/console" } -deno_core = { version = "0.116.0", path = "../core" } -deno_crypto = { version = "0.48.0", path = "../ext/crypto" } -deno_fetch = { version = "0.57.0", path = "../ext/fetch" } -deno_net = { version = "0.26.0", path = "../ext/net" } -deno_url = { version = "0.34.0", path = "../ext/url" } -deno_web = { version = "0.65.0", path = "../ext/web" } -deno_webgpu = { version = "0.35.0", path = "../ext/webgpu" } -deno_websocket = { version = "0.39.0", path = "../ext/websocket" } -deno_webstorage = { version = "0.29.0", path = "../ext/webstorage" } +deno_broadcast_channel = { version = "0.29.0", path = "../ext/broadcast_channel" } +deno_console = { version = "0.35.0", path = "../ext/console" } +deno_core = { version = "0.117.0", path = "../core" } +deno_crypto = { version = "0.49.0", path = "../ext/crypto" } +deno_fetch = { version = "0.58.0", path = "../ext/fetch" } +deno_net = { version = "0.27.0", path = "../ext/net" } +deno_url = { version = "0.35.0", path = "../ext/url" } +deno_web = { version = "0.66.0", path = "../ext/web" } +deno_webgpu = { version = "0.36.0", path = "../ext/webgpu" } +deno_websocket = { version = "0.40.0", path = "../ext/websocket" } +deno_webstorage = { version = "0.30.0", path = "../ext/webstorage" } regex = "=1.5.4" serde = { version = "=1.0.133", features = ["derive"] } zstd = '=0.9.2' @@ -46,11 +46,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.116.0", path = "../core" } +deno_core = { version = "0.117.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.42.0", path = "../runtime" } +deno_runtime = { version = "0.43.0", path = "../runtime" } atty = "=0.2.14" base64 = "=0.13.0" @@ -102,7 +102,7 @@ fwdansi = "=1.1.0" winapi = { version = "=0.3.9", features = ["knownfolders", "mswsock", "objbase", "shlobj", "tlhelp32", "winbase", "winerror", "winsock2"] } [dev-dependencies] -deno_bench_util = { version = "0.28.0", path = "../bench_util" } +deno_bench_util = { version = "0.29.0", path = "../bench_util" } flaky_test = "=0.1.0" os_pipe = "=0.9.2" pretty_assertions = "=0.7.2" diff --git a/cli/compat/esm_resolver.rs b/cli/compat/esm_resolver.rs index 714683157..77dbc3e05 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.122.0/node/http.ts").unwrap(); + Url::parse("https://deno.land/std@0.123.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 3a03a5e79..abfffb2d2 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.122.0/"; +static STD_URL_STR: &str = "https://deno.land/std@0.123.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 39d16bad7..e18644acb 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.122.0/" + "std/": "https://deno.land/std@0.123.0/" } } diff --git a/cli/tests/testdata/compat/import_map_https_imports.mjs b/cli/tests/testdata/compat/import_map_https_imports.mjs index fe4dbb417..e26d23227 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.122.0/collections/find_single.ts"; +import { findSingle } from "https://deno.land/std@0.123.0/collections/find_single.ts"; import os from "node:os"; console.log(sortBy([2, 3, 1], (it) => it)); |