From f9043140a348fa7c9eca17de5e6a50da01a3f5ad Mon Sep 17 00:00:00 2001 From: Matt Mastracci Date: Wed, 15 May 2024 14:40:07 -0600 Subject: [PATCH] v0.92.0 (#1479) --- Cargo.lock | 2 +- Cargo.toml | 2 +- tests/test_api.rs | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0c4a2276..a27089a2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1351,7 +1351,7 @@ checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" [[package]] name = "v8" -version = "0.91.1" +version = "0.92.0" dependencies = [ "align-data", "bitflags 2.5.0", diff --git a/Cargo.toml b/Cargo.toml index 78b8061e..2f057c39 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "v8" -version = "0.91.1" +version = "0.92.0" description = "Rust bindings to V8" readme = "README.md" authors = ["the Deno authors"] diff --git a/tests/test_api.rs b/tests/test_api.rs index 8e2f9d30..303a54c5 100644 --- a/tests/test_api.rs +++ b/tests/test_api.rs @@ -8361,11 +8361,11 @@ fn memory_pressure_notification() { isolate.memory_pressure_notification(v8::MemoryPressureLevel::None); } -// Flaky on aarch64-qemu (Stack corruption). -#[cfg(not(target_os = "android"))] #[test] fn clear_kept_objects() { - let _setup_guard = setup::parallel_test(); + // This test is flaky when run in parallel because it might end up triggering a GC on + // some other test's data + let _setup_guard = setup::sequential_test(); let isolate = &mut v8::Isolate::new(Default::default()); isolate.set_microtasks_policy(v8::MicrotasksPolicy::Explicit);