diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-02-28 18:06:16 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-29 00:06:16 +0100 |
commit | 814eb420608b21d3d79d3580317d2e803d240589 (patch) | |
tree | 376febdb385d56dd220148558d49dfe099e8e4f9 | |
parent | b6e44f91ad55f9737d65a4832d10cfa608f27c41 (diff) |
fix: relative dynamic imports in jsr packages (#22624)
Relative dynamic imports were broken. It now properly allows them and
verifies the checksum.
Fix in https://github.com/denoland/deno_graph/pull/408
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | cli/Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index 2d97a6995..30a6005c2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1437,9 +1437,9 @@ dependencies = [ [[package]] name = "deno_graph" -version = "0.69.5" +version = "0.69.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d49d7cfd7eb14200f2d91b9ff3330b7bd86334060367d47248871c78374a2897" +checksum = "a9d04f8bc8d8a40369e8549d15f6b315ffe025d0048fcd3c541f90647471f670" dependencies = [ "anyhow", "async-trait", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 494658bb8..b0b87c7b7 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -68,7 +68,7 @@ deno_config = "=0.12.0" deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] } deno_doc = { version = "=0.113.1", features = ["html"] } deno_emit = "=0.38.2" -deno_graph = { version = "=0.69.5", features = ["tokio_executor"] } +deno_graph = { version = "=0.69.6", features = ["tokio_executor"] } deno_lint = { version = "=0.57.1", features = ["docs"] } deno_lockfile.workspace = true deno_npm = "=0.17.0" |