mirror of
https://github.com/electron/electron.git
synced 2026-02-19 03:14:51 -05:00
* chore: bump node in DEPS to v24.11.1
* src: add a default branch for module phase
https://github.com/nodejs/node/pull/60261
* src: conditionally disable source phase imports by default
https://github.com/nodejs/node/pull/60364
* chore: update patches
* src: update locks to use DictionaryTemplate and other minor cleanups
https://github.com/nodejs/node/pull/60061
* deps: update simdjson to 4.0.7
https://github.com/nodejs/node/pull/59883
* test: move sea tests into test/sea
https://github.com/nodejs/node/pull/60250
* fixup deps: update simdjson to 4.0.7a
* src: conditionally disable source phase imports by default
https://github.com/nodejs/node/pull/60364
* module: handle null source from async loader hooks in sync hooks
https://github.com/nodejs/node/pull/59929
* Revert "src: conditionally disable source phase imports by default"
This reverts commit 5f85b84262.
* src: allow disabling JS source phase imports
https://github.com/nodejs/node/pull/60364
---------
Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com>
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
21 lines
944 B
Diff
21 lines
944 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: John Kleinschmidt <jkleinsc@electronjs.org>
|
|
Date: Wed, 5 Nov 2025 12:50:16 -0500
|
|
Subject: Delete deprecated fields on v8::Isolate
|
|
|
|
https://chromium-review.googlesource.com/c/v8/v8/+/7081397
|
|
|
|
diff --git a/src/api/environment.cc b/src/api/environment.cc
|
|
index ea3e9374c30be92ba5668e33773ffbb2aef55b30..44ba3c42c7a980eee19e1aadcbe7999eefeda989 100644
|
|
--- a/src/api/environment.cc
|
|
+++ b/src/api/environment.cc
|
|
@@ -231,8 +231,6 @@ void SetIsolateCreateParamsForNode(Isolate::CreateParams* params) {
|
|
// heap based on the actual physical memory.
|
|
params->constraints.ConfigureDefaults(total_memory, 0);
|
|
}
|
|
- params->embedder_wrapper_object_index = BaseObject::InternalFields::kSlot;
|
|
- params->embedder_wrapper_type_index = std::numeric_limits<int>::max();
|
|
|
|
#ifdef NODE_ENABLE_VTUNE_PROFILING
|
|
params->code_event_handler = vTune::GetVtuneCodeEventHandler();
|