Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
eccaaec
deps: update V8 to 14.6.202.33
targos Apr 23, 2026
eb260f9
build: reset embedder string to "-node.0"
targos Apr 23, 2026
a90d78f
src: update NODE_MODULE_VERSION to 147
targos Mar 30, 2026
a8d258d
deps: patch V8 to avoid duplicated zlib symbol
targos Sep 16, 2023
b3f8875
deps: define V8_PRESERVE_MOST as no-op on Windows
StefanStojanovic Dec 16, 2024
e6d9815
deps: remove problematic comment from v8-internal
targos Mar 19, 2025
9b8d284
deps: patch V8 for illumos
danmcd Apr 16, 2025
6c90302
deps: support madvise(3C) across ALL illumos revisions
danmcd Aug 7, 2025
21cf280
deps: V8: cherry-pick highway@989a498fdf3
richardlau Nov 13, 2025
f10dc6d
deps: patch V8 to fix Windows build
StefanStojanovic Mar 17, 2026
e627c84
deps: V8: cherry-pick aa0b288f87cc
richardlau Mar 9, 2026
02055ef
deps: V8: cherry-pick edeb0a4fa181
joyeecheung Mar 14, 2026
cdd757c
deps: V8: cherry-pick d83f479604c8
joyeecheung Mar 14, 2026
471c30b
deps: V8: cherry-pick daf4656ba85e
miladfarca Feb 23, 2026
7846306
deps: V8: cherry-pick cf1bce40a5ef
richardlau Mar 28, 2026
142d7ea
deps: V8: backport bef0d9c1bc90
joyeecheung Mar 5, 2026
59b446c
deps: V8: cherry-pick 00f6e834029f
joyeecheung Apr 1, 2026
c7c2b12
deps: V8: backport 088b7112e7ab
isheludko Apr 1, 2026
08c824f
deps: V8: cherry-pick cd2c216e7658
luyahan Feb 26, 2026
b3889d5
deps: fix V8 race condition for AIX
abmusse Apr 20, 2026
6a9a291
build,test: test array index hash collision
joyeecheung Jan 29, 2026
d497f6c
tools: update V8 gypfiles for 14.4
targos Nov 19, 2025
62cd5d8
tools: update V8 gypfiles for 14.5
targos Dec 22, 2025
55e3b1a
tools: update V8 gypfiles for 14.6
targos Jan 24, 2026
d5a5cb7
tools: add Rust args to `tools/make-v8.sh`
richardlau Jan 27, 2026
d2dbbb1
src: avoid deprecated `FixedArray::Get`
backes Dec 1, 2025
caadb37
src: avoid deprecated Wasm API
backes Dec 1, 2025
78d0dba
src: stop using `v8::PropertyCallbackInfo<T>::This()`
isheludko Dec 7, 2025
69c750c
src: replace uses of deprecated v8::External APIs
gahaas Jan 21, 2026
b78d7a0
test: add type tags to uses of v8::External
gahaas Feb 13, 2026
c70ce5f
test: support presence of Temporal global
targos Dec 22, 2025
e37d56e
tools: remove v8_initializers_slow workaround from v8.gyp
targos Mar 27, 2026
c1f7122
build: enable V8_VERIFY_WRITE_BARRIERS in debug build
joyeecheung Mar 29, 2026
241583b
test: update wpt Wasm jsapi expectations
targos Apr 3, 2026
e070292
test: skip wasm allocation tests in workers
targos Apr 21, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
5 changes: 5 additions & 0 deletions deps/v8/.clang-format
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ Macros:
- CASE_=case
- FOR_WITH_HANDLE_SCOPE(isolate, init, loop_var, limit_check, increment)=for(init; loop_var; increment)
- WHILE_WITH_HANDLE_SCOPE(isolate, limit_check)=while(limit_check)
# Make clang-format parse conditions in flag implications as expressions, not type definitions.
- DEFINE_IMPLICATION(cond,flag,value)=if(cond) { flag; };
- DEFINE_WEAK_IMPLICATION(cond,flag,value)=if(cond) { flag; };
- DEFINE_VALUE_IMPLICATION(cond,flag,value)=if(cond) { flag = value; };
- DEFINE_WEAK_VALUE_IMPLICATION(cond,flag,value)=if(cond) { flag = value; };
StatementMacros:
- DECL_CAST
- DECL_VERIFIER
1 change: 1 addition & 0 deletions deps/v8/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ bazel-out
bazel-testlogs
bazel-v8
launch.json
MODULE.bazel.lock
!/third_party/jinja2
!/third_party/markupsafe
!/third_party/zlib
Expand Down
3 changes: 3 additions & 0 deletions deps/v8/.gn
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ default_args = {

# Use Siso instead of Ninja.
use_siso = true

# V8 should stay in C++20 for now.
use_cxx23 = false
}

# These are the list of GN files that run exec_script. This whitelist exists
Expand Down
2 changes: 2 additions & 0 deletions deps/v8/AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,7 @@ Rong Wang <[email protected]>
Ross Kirsling <[email protected]>
Ruben Bridgewater <[email protected]>
Ryan Dahl <[email protected]>
Sahil Shaikh <[email protected]>
Sakthipriyan Vairamani (thefourtheye) <[email protected]>
Sander Mathijs van Veen <[email protected]>
Sandro Santilli <[email protected]>
Expand Down Expand Up @@ -340,6 +341,7 @@ Zhao Jiazhong <[email protected]>
Zhao Qin <[email protected]>
Zhaojun Meng <[email protected]>
Zheng Liu <[email protected]>
Zhongqi Wang <[email protected]>
Zhongping Wang <[email protected]>
柳荣一 <[email protected]>
Yang Xiang <[email protected]>
Expand Down
Loading
Loading