Pedro Pontes e34bf19dc7 chore: cherry-pick 26b7ad6967b1 from v8 (#33474) 3 years ago
..
.patches e34bf19dc7 chore: cherry-pick 26b7ad6967b1 from v8 (#33474) 3 years ago
README.md 4b9da4dd0e chore: remove mips64el patches as they've largely been upstreamed (#18628) 5 years ago
build_gn.patch de679a181a chore: bump chromium to 93.0.4577.15 (14-x-y) (#30029) 3 years ago
cherry-pick-014e1f857c33.patch a6636c3ca6 chore: cherry-pick 014e1f857c33 from v8 (#31672) 3 years ago
cherry-pick-26b7ad6967b1.patch e34bf19dc7 chore: cherry-pick 26b7ad6967b1 from v8 (#33474) 3 years ago
cherry-pick-27bc67f761e6.patch 5f3eae7119 chore: cherry-pick 27bc67f761e6 from v8 (#32740) 3 years ago
cherry-pick-418c276ef228.patch 8e5e91cfc1 chore: cherry-pick 418c276ef228 from v8 (#32193) 3 years ago
cherry-pick-5c4acf2ae64a.patch 40b994cfab chore: cherry-pick 5c4acf2ae64a from v8 (#31227) 3 years ago
cherry-pick-5d2b5e7c006c.patch 9e21ebf6ea chore: cherry-pick 5d2b5e7c006c from v8 (#31911) 3 years ago
cherry-pick-6de4e210688e.patch eecda4656e chore: cherry-pick 6de4e210688e from v8 (#31502) 3 years ago
cherry-pick-c46fb3a15ec2.patch 6bc1d0c4ec chore: cherry-pick c46fb3a15ec2 from v8 (#33394) 3 years ago
cherry-pick-feef10137b16.patch e446b29afb chore: cherry-pick feef10137b16 from v8 (#31664) 3 years ago
dcheck.patch a279250935 chore: bump chromium to 93.0.4577.51 (14-x-y) (#30520) 3 years ago
do_not_export_private_v8_symbols_on_windows.patch de679a181a chore: bump chromium to 93.0.4577.15 (14-x-y) (#30029) 3 years ago
export_symbols_needed_for_windows_build.patch de679a181a chore: bump chromium to 93.0.4577.15 (14-x-y) (#30029) 3 years ago
expose_mksnapshot.patch de679a181a chore: bump chromium to 93.0.4577.15 (14-x-y) (#30029) 3 years ago
fix_build_deprecated_attirbute_for_older_msvc_versions.patch 2eb3bddb05 chore: bump chromium to 92.0.4505.0 (master) (#29058) 3 years ago
merge_inspector_use_ephemeron_table_for_exception_metadata.patch 22bd03d54b chore: cherry-pick 29be6884cb8a from v8 (#31517) 3 years ago
merged_allow_compiled_module_invalidation_at_wasmstreaming_finish.patch b0d4474536 chore: cherry-pick 04a58fedd5 from v8 (#32236) 3 years ago
merged_cppgc_fix_marking_of_ephemerons_with_keys_in_construction.patch 8417c5ae41 chore: cherry-pick 656c2769c5 from v8 (#31677) 3 years ago
regexp_add_a_currently_failing_cctest_for_irregexp_reentrancy.patch 717a3f4c40 fix: crash in v8 due to regexp reentrancy (#31143) 3 years ago
regexp_allow_reentrant_irregexp_execution.patch 717a3f4c40 fix: crash in v8 due to regexp reentrancy (#31143) 3 years ago
regexp_remove_the_stack_parameter_from_regexp_matchers.patch 717a3f4c40 fix: crash in v8 due to regexp reentrancy (#31143) 3 years ago
version_9_6_180_13_cherry-pick.patch 91b8fa26b8 chore: cherry-pick 05ccacee14 from v8. (#32217) 3 years ago
workaround_an_undefined_symbol_error.patch de679a181a chore: bump chromium to 93.0.4577.15 (14-x-y) (#30029) 3 years ago

README.md

Exporting node's patches to v8

$ cd third_party/electron_node
$ CURRENT_NODE_VERSION=vX.Y.Z  # e.g. v10.11.0

# Find the last commit with the message "deps: update V8 to <some version>"
# This commit corresponds to node resetting V8 to its pristine upstream
# state at the stated version.
$ LAST_V8_UPDATE="$(git log --grep='^deps: update V8' --format='%H' -1 deps/v8)"

# This creates a patch file containing all changes in deps/v8 from
# $LAST_V8_UPDATE up to the current node version, formatted in a way that
# it will apply cleanly to the V8 repository (i.e. with `deps/v8`
# stripped off the path and excluding the v8/gypfiles directory, which
# isn't present in V8.
$ git format-patch \
    --relative=deps/v8 \
    $LAST_V8_UPDATE..$CURRENT_NODE_VERSION \
    deps/v8 \
    ':(exclude)deps/v8/gypfiles' \
    --stdout

When upgrading to a new version of node, make sure to match node's patches to v8 by removing all the deps_* patches and re-exporting node's v8 patches using the process above.