Skip to content

Commit 8813c47

Browse files
committed
v135.1.1
1 parent 9cd5842 commit 8813c47

File tree

7 files changed

+12
-10
lines changed

7 files changed

+12
-10
lines changed

.gn

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,6 @@ default_args = {
9494

9595
v8_depend_on_icu_data_file = false
9696
icu_copy_icudata_to_root_build_dir = false
97+
98+
v8_safe_string_hasher = true
9799
}

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "v8"
3-
version = "135.1.0"
3+
version = "135.1.1"
44
description = "Rust bindings to V8"
55
readme = "README.md"
66
authors = ["the Deno authors"]

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[toolchain]
2-
channel = "1.85.0"
2+
channel = "1.86.0"
33
components = ["rustfmt", "clippy"]
44
targets = [
55
"x86_64-apple-darwin",

src/isolate.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ use std::sync::Mutex;
7070

7171
/// Policy for running microtasks:
7272
/// - explicit: microtasks are invoked with the
73-
/// Isolate::PerformMicrotaskCheckpoint() method;
73+
/// Isolate::PerformMicrotaskCheckpoint() method;
7474
/// - auto: microtasks are invoked when the script call depth decrements
75-
/// to zero.
75+
/// to zero.
7676
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
7777
#[repr(C)]
7878
pub enum MicrotasksPolicy {

tests/test_api.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5435,7 +5435,7 @@ fn snapshot_creator() {
54355435
.create_blob(v8::FunctionCodeHandling::Clear)
54365436
.unwrap()
54375437
};
5438-
assert!(startup_data.len() > 0);
5438+
assert!(!startup_data.is_empty());
54395439
// Now we try to load up the snapshot and check that 'a' has the correct
54405440
// value.
54415441
{
@@ -5687,7 +5687,7 @@ fn external_references() {
56875687
.create_blob(v8::FunctionCodeHandling::Clear)
56885688
.unwrap()
56895689
};
5690-
assert!(startup_data.len() > 0);
5690+
assert!(!startup_data.is_empty());
56915691
// Now we try to load up the snapshot and check that 'a' has the correct
56925692
// value.
56935693
{
@@ -7533,7 +7533,7 @@ fn module_snapshot() {
75337533
.create_blob(v8::FunctionCodeHandling::Keep)
75347534
.unwrap()
75357535
};
7536-
assert!(startup_data.len() > 0);
7536+
assert!(!startup_data.is_empty());
75377537
{
75387538
let params = v8::Isolate::create_params().snapshot_blob(startup_data);
75397539
let isolate = &mut v8::Isolate::new(params);
@@ -9664,7 +9664,7 @@ fn compiled_wasm_module() {
96649664
0x6F, 0x6F, 0x62, 0x61, 0x72
96659665
]
96669666
);
9667-
assert_eq!(compiled_module.source_url(), "wasm://wasm/a1d4c596");
9667+
assert_eq!(compiled_module.source_url(), "wasm://wasm/3e495052");
96689668

96699669
{
96709670
let isolate = &mut v8::Isolate::new(Default::default());

0 commit comments

Comments
 (0)