diff options
| author | Divy Srivastava <dj.srivastava23@gmail.com> | 2024-10-15 18:26:49 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-15 14:56:49 +0200 |
| commit | e4b52f5a7684cfb6754f2531e51f833a64d97d7b (patch) | |
| tree | 7b8681bc2c289b8ae0e2f08a54f19b622d278596 | |
| parent | c7153838ec332d474c32b464b94f99382028bbbc (diff) | |
fix: panic in `prepare_stack_trace_callback` when global interceptor throws (#26241)
Fixes https://github.com/denoland/deno/issues/26240
Fixes
https://github.com/denoland/deno/pull/24985#issuecomment-2365460210
Fix panic when a global interceptor is misconfigured or throws an
exception.
Updates deno_core to 0.313.0
| -rw-r--r-- | Cargo.lock | 12 | ||||
| -rw-r--r-- | Cargo.toml | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/Cargo.lock b/Cargo.lock index 56121705b..da415dcf7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1422,9 +1422,9 @@ dependencies = [ [[package]] name = "deno_core" -version = "0.312.0" +version = "0.313.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed5b20008c84715322782af2f94ff7ebc34eb50294ae098daf36b63a5b9bdd24" +checksum = "29f36be738d78e39b6603a6b07f1cf91e28baf3681f87205f07482999e0d0bc2" dependencies = [ "anyhow", "bincode", @@ -1922,9 +1922,9 @@ dependencies = [ [[package]] name = "deno_ops" -version = "0.188.0" +version = "0.189.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba1c7a8d9169e23de729000d6903dd0dee39e521e226d1ffbb9c5336665afae6" +checksum = "e8f998ad1d5b36064109367ffe67b1088385eb3d8025efc95e445bc013a147a2" dependencies = [ "proc-macro-rules", "proc-macro2", @@ -6175,9 +6175,9 @@ dependencies = [ [[package]] name = "serde_v8" -version = "0.221.0" +version = "0.222.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ca142cf34468e22063560302e6cc5e45f48e95a0dd25b3e22d6c32c32251135" +checksum = "27130b5cd87f6f06228940a1f3a7ecc988ea13d1bede1398a48d74cb59dabc9a" dependencies = [ "num-bigint", "serde", diff --git a/Cargo.toml b/Cargo.toml index a4ec99953..502b7b7d7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,7 +46,7 @@ repository = "https://github.com/denoland/deno" [workspace.dependencies] deno_ast = { version = "=0.42.2", features = ["transpiling"] } -deno_core = { version = "0.312.0" } +deno_core = { version = "0.313.0" } deno_bench_util = { version = "0.165.0", path = "./bench_util" } deno_lockfile = "=0.23.1" |
