1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-21 23:04:45 -05:00

fix: cache bust jsr meta file when version not found in dynamic branches (#24928)

Test and code change in deno_graph.

* https://github.com/denoland/deno_graph/pull/511

Closes https://github.com/denoland/deno/issues/23965
This commit is contained in:
David Sherret 2024-08-08 14:54:30 +02:00 committed by GitHub
parent f50d38869d
commit 2f6da40bd6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View file

@ -1563,9 +1563,9 @@ dependencies = [
[[package]]
name = "deno_graph"
version = "0.81.1"
version = "0.81.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2cada0d9fd56536d3208cff2b130096e396ee2716466850cf0b7927249e40a0"
checksum = "beccc9d4007be8b85299f696a412f38912fc304cf9519092b47531319ef8a92f"
dependencies = [
"anyhow",
"async-trait",

View file

@ -69,7 +69,7 @@ deno_config = { version = "=0.28.0", features = ["workspace", "sync"] }
deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] }
deno_doc = { version = "0.145.0", features = ["html", "syntect"] }
deno_emit = "=0.44.0"
deno_graph = { version = "=0.81.1" }
deno_graph = { version = "=0.81.2" }
deno_lint = { version = "=0.62.0", features = ["docs"] }
deno_lockfile.workspace = true
deno_npm = "=0.21.4"