electron/patches/v8
Pedro Pontes bd43e652f6
chore: cherry-pick 3 changes from Release-1-M117 (#40078)
* chore: [25-x-y] cherry-pick 3 changes from Release-1-M117

* b0ad701a609a from v8
* b11e7d07a6f4 from chromium
* 309b604c4e88 from chromium

* chore: update patches

---------

Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com>
2023-10-06 09:54:50 -04:00
..
.patches chore: cherry-pick 3 changes from Release-1-M117 (#40078) 2023-10-06 09:54:50 -04:00
README.md chore: remove mips64el patches as they've largely been upstreamed (#18628) 2019-06-05 16:36:17 -07:00
build_gn.patch chore: bump chromium to 114.0.5735.16 (25-x-y) (#38118) 2023-05-09 11:03:33 -04:00
cherry-pick-8ff63d378f2c.patch chore: cherry-pick 4 changes from Release-0-M116 (#39557) 2023-08-21 11:42:57 +09:00
cherry-pick-038530c94a06.patch chore: cherry-pick 3 changes from Release-3-M116 (#39756) 2023-09-11 11:22:21 -04:00
cherry-pick-b0ad701a609a.patch chore: cherry-pick 3 changes from Release-1-M117 (#40078) 2023-10-06 09:54:50 -04:00
cherry-pick-cf1d4d3c0b6e.patch chore: cherry-pick 1 changes from Release-0-M117 (#39919) 2023-09-19 23:48:06 -07:00
chore_allow_customizing_microtask_policy_per_context.patch chore: enable microtask queue per window agent (#36870) 2023-01-12 01:59:32 +09:00
dcheck.patch chore: bump chromium to 114.0.5735.35 (25-x-y) (#38320) 2023-05-22 10:50:48 -04:00
do_not_export_private_v8_symbols_on_windows.patch chore: bump chromium to 114.0.5735.16 (25-x-y) (#38118) 2023-05-09 11:03:33 -04:00
export_symbols_needed_for_windows_build.patch chore: bump chromium to 114.0.5690.0 (main) (#37780) 2023-04-03 18:56:57 +02:00
expose_mksnapshot.patch chore: bump chromium to 114.0.5735.16 (25-x-y) (#38118) 2023-05-09 11:03:33 -04:00
fix_build_deprecated_attribute_for_older_msvc_versions.patch chore: bump chromium to 113.0.5651.0 (main) (#37553) 2023-03-15 18:20:32 +09:00
fix_disable_implies_dcheck_for_node_stream_array_buffers.patch chore: bump chromium to 113.0.5636.0 (main) (#37130) 2023-03-10 10:07:42 -06:00
fix_set_proper_instruction_start_for_builtin.patch chore: cherry-pick 0e1cc35 from v8 (#38510) 2023-05-31 10:28:29 -04:00
force_cppheapcreateparams_to_be_noncopyable.patch chore: bump chromium to 111.0.5544.3 (main) (#36820) 2023-02-03 12:43:42 +01:00
merged_squashed_multiple_commits.patch chore: cherry-pick 4 changes from Release-1-M116 (#39646) 2023-08-28 15:19:33 +09:00
workaround_an_undefined_symbol_error.patch chore: bump chromium to 114.0.5715.0 (25-x-y) (#38010) 2023-04-17 21:06:38 -04:00

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.