* chore: bump node in DEPS to v24.16.0
* chore: remove upstreamed patch
Node.js restored fs patchability in the ESM loader upstream, making
the fix_lazyload_fs_in_esm_loaders_to_apply_asar_patches.patch
obsolete (the patch's exact change is now in lib/internal/modules/
esm/{load,resolve,translators}.js).
Ref: https://github.com/nodejs/node/pull/62835
Co-Authored-By: Claude <noreply@anthropic.com>
(cherry picked from commit 72638dbe1f6a60f76570c1cfb99d088768ec19e0)
* fix(patch): re-add experimental_fetch member after upstream cleanup
Upstream removed the experimental_fetch field from EnvironmentOptions,
but Electron's patch still registers --experimental-fetch as a CLI
option bound to that field. Re-add the member so the option compiles.
Ref: https://github.com/nodejs/node/pull/62759
Co-Authored-By: Claude <noreply@anthropic.com>
(cherry picked from commit 6fd93703ca7fbe3b6860b84d812e8318614e7b35)
* fix(patch): cast const away when freeing uv_cpu_info_t.model
libuv 1.52.1 typed uv_cpu_info_t.model as const char*, but uv__free
takes void*. Electron builds with -Werror,-Wincompatible-pointer-types-
discards-qualifiers, so add a cast. The memory is allocated via strdup
so the cast is safe.
Ref: https://github.com/nodejs/node/pull/61829
Co-Authored-By: Claude <noreply@anthropic.com>
(cherry picked from commit 90d1009b3fea0996aa68f70aaacbfe78266f8c3d)
* fix(patch): silence sign-compare warning in sessionVarintGetSafe
Cast int nBuf to size_t when comparing with sizeof(aCopy) so the
bundled sqlite3 amalgamation compiles under -Werror,-Wsign-compare.
Ref: https://github.com/nodejs/node/pull/62699
Co-Authored-By: Claude <noreply@anthropic.com>
* test: move root package.json aside in node spec runner
third_party/electron_node lives under Chromium's src/, whose package.json
("type": "module") is always an ancestor of the Node.js test tree. Upstream
assumes no package.json sits above the tests, so that ancestor changes how
test files and fixtures resolve their module type: it disables module-syntax
detection (breaking test-compile-cache-typescript-esm) and emits
MODULE_TYPELESS_PACKAGE_JSON warnings that break tests asserting clean stderr
(test-esm-detect-ambiguous, test-esm-import-meta-main-eval,
test-output-coverage-with-mock).
Move src/package.json aside for the duration of the run so the environment
matches upstream exactly, then restore it. The original is kept in a sibling
backup file so an interrupted/killed run self-heals on the next invocation
rather than leaving src/package.json missing.
Ref: Unable to locate reference
Co-Authored-By: Claude <noreply@anthropic.com>
(cherry picked from commit 29abd0cebaea89c04be8806ac8c01941061dbfe6)
* fix(patch): mark test-macos-app-sandbox as flaky
The test copies the Electron binary into a standalone .app bundle and
code-signs it; under parallel suite runs this races with dyld resolving
the Electron Framework rpath and intermittently aborts (SIGABRT). It
passes reliably when run alone. Mark it flaky so flakes don't fail CI.
Ref: Unable to locate reference
Co-Authored-By: Claude <noreply@anthropic.com>
(cherry picked from commit 3853529f14a0cece021b5b123ce1b4b7ae2cea78)
* test: disable test-tls-set-default-ca-certificates-extra-override
setDefaultCACertificates() round-trips the default CA set through
BoringSSL's X509_STORE, which dedups a duplicate-subject root (DigiCert
Global Root CA) that OpenSSL keeps. The set therefore loses one cert on
re-add (149 -> 148), so the test's assertEqualCerts round-trip check
fails under Electron's BoringSSL. The sibling -recovery test is disabled
for the same reason.
Ref: https://github.com/nodejs/node/pull/58822
Co-Authored-By: Claude <noreply@anthropic.com>
(cherry picked from commit 3dbc596e17b84c81503653a3034a82a1ad5ac88f)
* fix(patch): mark test-runner watch tests as flaky
test-run-watch-repeatedly, test-run-watch-run-duration and
test-run-watch-without-file race under parallel suite load: the watcher
fires an extra re-run before the assertion, so the expected single-run
output ("tests 1") arrives with accumulated subtests. All three pass in
isolation.
Ref: https://github.com/nodejs/node/issues/44898
Co-Authored-By: Claude <noreply@anthropic.com>
(cherry picked from commit 0f9c327b375e3224dae49bfecbb311f5a54990e4)
* chore(patches): update libuv const-cast patch management
Combine the Windows libuv cpu_info const-cast update into the existing
chore_cast_const_away_when_freeing_uv_cpu_info_t_model.patch and keep
a single patch-management commit for the final exported patch series.
Co-Authored-By: Claude <noreply@anthropic.com>
(cherry picked from commit c590614cb51f5f88f63ade4777555f438554fe3c)
* fix(patch): add UV_LOOP_INTERRUPT_ON_IO_CHANGE option
Ref: https://github.com/libuv/libuv/pull/3308
Co-Authored-By: Claude <noreply@anthropic.com>
* chore: update patches (trivial only)
Co-Authored-By: Claude <noreply@anthropic.com>
* chore: update patches
Co-Authored-By: Claude <noreply@anthropic.com>
* fix(patch): adapt GetIsolate removal for the inspector NetworkAgent
Adapts api_remove_deprecated_getisolate.patch for the inspector NetworkAgent:
adapt the GetIsolate removal to the NetworkAgent member helpers, qualify the
v8 Maybe helpers in network_agent, and drop duplicate inspector helper
definitions.
Ref: https://github.com/nodejs/node/pull/62162
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* fix(patch): guard vm contextual-store strict assertion for Chromium's V8
test-vm-global-contextual-store was added upstream in nodejs/node#62571. It
asserts that an undeclared strict-mode contextual store (`"use strict"; z = 42`)
throws a ReferenceError. Chromium's V8 removed
v8::PropertyCallbackInfo<T>::This(), so Electron's contextify setter cannot
distinguish a contextual store from an explicit `globalThis.x = v` store; it
keeps the original behavior (writing to the sandbox) so explicit global stores
in vm modules keep working (test-vm-module-referrer-realm). Guard the
strict-mode ReferenceError assertion in the new test under Electron.
Ref: https://github.com/nodejs/node/pull/62571
Ref: https://github.com/nodejs/node/issues/60616
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
---------
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: Claude <noreply@anthropic.com>
107 lines
4.1 KiB
JSON
107 lines
4.1 KiB
JSON
[
|
|
"abort/test-abort-backtrace",
|
|
"es-module/test-esm-wasm",
|
|
"es-module/test-vm-compile-function-lineoffset",
|
|
"parallel/test-bootstrap-modules",
|
|
"parallel/test-child-process-fork-exec-path",
|
|
"parallel/test-code-cache",
|
|
"parallel/test-cluster-primary-error",
|
|
"parallel/test-cluster-primary-kill",
|
|
"parallel/test-config-file",
|
|
"parallel/test-crypto-dh-stateless",
|
|
"parallel/test-crypto-fips",
|
|
"parallel/test-crypto-keygen",
|
|
"parallel/test-crypto-secure-heap",
|
|
"parallel/test-domain-error-types",
|
|
"parallel/test-fs-utimes-y2K38",
|
|
"parallel/test-http2-clean-output",
|
|
"parallel/test-http2-https-fallback",
|
|
"parallel/test-http2-server-unknown-protocol",
|
|
"parallel/test-https-agent-session-reuse",
|
|
"parallel/test-https-client-renegotiation-limit",
|
|
"parallel/test-https-options-boolean-check",
|
|
"parallel/test-icu-env",
|
|
"parallel/test-icu-minimum-version",
|
|
"parallel/test-inspector-port-zero-cluster",
|
|
"parallel/test-inspector-tracing-domain",
|
|
"parallel/test-module-loading-globalpaths",
|
|
"parallel/test-module-print-timing",
|
|
"parallel/test-openssl-ca-options",
|
|
"parallel/test-os-checked-function",
|
|
"parallel/test-process-versions",
|
|
"parallel/test-process-get-builtin",
|
|
"parallel/test-repl-mode",
|
|
"parallel/test-repl-underscore",
|
|
"parallel/test-shadow-realm-custom-loaders",
|
|
"parallel/test-snapshot",
|
|
"parallel/test-strace-openat-openssl",
|
|
"parallel/test-sqlite-backup",
|
|
"parallel/test-max-old-space-size-percentage",
|
|
"parallel/test-tls-alpn-server-client",
|
|
"parallel/test-tls-cli-min-version-1.0",
|
|
"parallel/test-tls-cli-max-version-1.2",
|
|
"parallel/test-tls-cli-max-version-1.3",
|
|
"parallel/test-tls-cli-min-version-1.1",
|
|
"parallel/test-tls-cli-min-version-1.2",
|
|
"parallel/test-tls-cli-min-version-1.3",
|
|
"parallel/test-tls-client-auth",
|
|
"parallel/test-tls-client-getephemeralkeyinfo",
|
|
"parallel/test-tls-client-mindhsize",
|
|
"parallel/test-tls-client-reject",
|
|
"parallel/test-tls-client-renegotiation-13",
|
|
"parallel/test-tls-cnnic-whitelist",
|
|
"parallel/test-tls-disable-renegotiation",
|
|
"parallel/test-tls-empty-sni-context",
|
|
"parallel/test-tls-error-stack",
|
|
"parallel/test-tls-finished",
|
|
"parallel/test-tls-generic-stream",
|
|
"parallel/test-tls-getcipher",
|
|
"parallel/test-tls-getprotocol",
|
|
"parallel/test-tls-handshake-error",
|
|
"parallel/test-tls-handshake-exception",
|
|
"parallel/test-tls-hello-parser-failure",
|
|
"parallel/test-tls-honorcipherorder",
|
|
"parallel/test-tls-junk-closes-server",
|
|
"parallel/test-tls-junk-server",
|
|
"parallel/test-tls-key-mismatch",
|
|
"parallel/test-tls-max-send-fragment",
|
|
"parallel/test-tls-min-max-version",
|
|
"parallel/test-tls-multi-key",
|
|
"parallel/test-tls-multi-pfx",
|
|
"parallel/test-tls-no-cert-required",
|
|
"parallel/test-tls-no-sslv23",
|
|
"parallel/test-tls-off-thread-cert-loading",
|
|
"parallel/test-tls-options-boolean-check",
|
|
"parallel/test-tls-passphrase",
|
|
"parallel/test-tls-psk-alpn-callback-exception-handling",
|
|
"parallel/test-tls-psk-circuit",
|
|
"parallel/test-tls-reduced-SECLEVEL-in-cipher",
|
|
"parallel/test-tls-server-failed-handshake-emits-clienterror",
|
|
"parallel/test-tls-set-ciphers",
|
|
"parallel/test-tls-set-ciphers-error",
|
|
"parallel/test-tls-set-default-ca-certificates-extra-override",
|
|
"parallel/test-tls-set-default-ca-certificates-recovery",
|
|
"parallel/test-tls-set-sigalgs",
|
|
"parallel/test-tls-socket-allow-half-open-option",
|
|
"parallel/test-tls-socket-failed-handshake-emits-error",
|
|
"parallel/test-tls-ticket",
|
|
"parallel/test-tls-ticket-cluster",
|
|
"parallel/test-trace-events",
|
|
"parallel/test-tz-version",
|
|
"parallel/test-webcrypto-keygen",
|
|
"parallel/test-worker-no-sab",
|
|
"parallel/test-worker-resource-limits",
|
|
"parallel/test-zlib-unused-weak",
|
|
"report/test-report-fatalerror-oomerror",
|
|
"report/test-report-getreport",
|
|
"report/test-report-signal",
|
|
"report/test-report-uncaught-exception",
|
|
"report/test-report-uncaught-exception-compat",
|
|
"report/test-report-uv-handles",
|
|
"report/test-report-worker",
|
|
"report/test-report-writereport",
|
|
"sea/test-single-executable",
|
|
"sequential/test-tls-connect",
|
|
"wpt/test-webcrypto",
|
|
"wasm-allocation/test-wasm-allocation"
|
|
]
|