Skip to content

Commit 777e7ea

Browse files
authored
feat: Upgrade V8 to 12.9 (#25138)
1 parent 48da3c1 commit 777e7ea

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

Cargo.lock

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ repository = "https://github.com/denoland/deno"
4545

4646
[workspace.dependencies]
4747
deno_ast = { version = "=0.41.2", features = ["transpiling"] }
48-
deno_core = { version = "0.305.0" }
48+
deno_core = { version = "0.306.0" }
4949

5050
deno_bench_util = { version = "0.158.0", path = "./bench_util" }
5151
deno_lockfile = "0.21.2"

ext/ffi/callback.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,7 @@ where
621621
Ok(array_value)
622622
}
623623

624-
#[op2]
624+
#[op2(fast)]
625625
pub fn op_ffi_unsafe_callback_close(
626626
state: &mut OpState,
627627
scope: &mut v8::HandleScope,

ext/http/http_next.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ pub fn op_http_set_response_header(
466466
response_parts.headers.append(name, value);
467467
}
468468

469-
#[op2]
469+
#[op2(fast)]
470470
pub fn op_http_set_response_headers(
471471
scope: &mut v8::HandleScope,
472472
external: *const c_void,

ext/node/ops/v8.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pub fn op_v8_cached_data_version_tag() -> u32 {
77
v8::script_compiler::cached_data_version_tag()
88
}
99

10-
#[op2]
10+
#[op2(fast)]
1111
pub fn op_v8_get_heap_statistics(
1212
scope: &mut v8::HandleScope,
1313
#[buffer] buffer: &mut [f64],

ext/node/ops/vm.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1074,7 +1074,7 @@ pub fn op_vm_script_run_in_context<'a>(
10741074
)
10751075
}
10761076

1077-
#[op2]
1077+
#[op2(fast)]
10781078
pub fn op_vm_create_context(
10791079
scope: &mut v8::HandleScope,
10801080
sandbox_obj: v8::Local<v8::Object>,
@@ -1101,7 +1101,7 @@ pub fn op_vm_create_context(
11011101
);
11021102
}
11031103

1104-
#[op2]
1104+
#[op2(fast)]
11051105
pub fn op_vm_is_context(
11061106
scope: &mut v8::HandleScope,
11071107
sandbox_obj: v8::Local<v8::Value>,

0 commit comments

Comments
 (0)