From 2acdc4e8298275a5959a4088811d6b3255f00b3e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Feb 2025 20:03:39 +0000 Subject: [PATCH] Bump v8 from 130.0.7 to 134.2.0 Bumps [v8](https://github.com/denoland/rusty_v8) from 130.0.7 to 134.2.0. - [Release notes](https://github.com/denoland/rusty_v8/releases) - [Commits](https://github.com/denoland/rusty_v8/compare/v130.0.7...v134.2.0) --- updated-dependencies: - dependency-name: v8 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 23 ++++++++++++++++++++--- crates/static-analysis-kernel/Cargo.toml | 2 +- 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ef5b6574..ab2af8dd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -805,7 +805,7 @@ dependencies = [ "thiserror 2.0.10", "tokio", "url", - "v8", + "v8 130.0.7", "wasm_dep_analyzer", ] @@ -3370,7 +3370,7 @@ dependencies = [ "serde", "smallvec", "thiserror 2.0.10", - "v8", + "v8 130.0.7", ] [[package]] @@ -3590,7 +3590,7 @@ dependencies = [ "streaming-iterator", "thiserror 2.0.10", "tree-sitter", - "v8", + "v8 134.2.0", ] [[package]] @@ -4297,6 +4297,23 @@ dependencies = [ "which", ] +[[package]] +name = "v8" +version = "134.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "542d388db9f9e5d3881bced2b4dc33815435fc5aa2258554ca75645904f83b14" +dependencies = [ + "bindgen", + "bitflags", + "fslock", + "gzip-header", + "home", + "miniz_oxide 0.7.4", + "once_cell", + "paste", + "which", +] + [[package]] name = "valico" version = "4.0.0" diff --git a/crates/static-analysis-kernel/Cargo.toml b/crates/static-analysis-kernel/Cargo.toml index 164d5a7d..6a83b6d0 100644 --- a/crates/static-analysis-kernel/Cargo.toml +++ b/crates/static-analysis-kernel/Cargo.toml @@ -26,7 +26,7 @@ serde_yaml = "0.9.21" streaming-iterator = "0.1.9" # We're experiencing issues with v8 130.0.8. Until we can resolve this, pin to the last-known-working. -v8 = "=130.0.7" +v8 = "=134.2.0" [build-dependencies] cc = "1.0.97"