|
1 year ago | |
---|---|---|
.. | ||
.patches | c4b0ff4994 chore: cherry-pick 4 changes from Release-3-M114 (#38948) | 1 year ago |
README.md | 4b9da4dd0e chore: remove mips64el patches as they've largely been upstreamed (#18628) | 5 years ago |
build_gn.patch | 56f042f5e5 chore: bump chromium to 110.0.5481.30 (23-x-y) (#36819) | 2 years ago |
cherry-pick-2c8a019f39d2.patch | 2c822ce4ac chore: cherry-pick 7 changes from Release-1-M113 (#38331) | 1 year ago |
cherry-pick-2e76270cf65e.patch | be1c22ecab chore: cherry-pick 3 changes from Release-2-M114 (#38788) | 1 year ago |
cherry-pick-3b0607d14060.patch | 2c822ce4ac chore: cherry-pick 7 changes from Release-1-M113 (#38331) | 1 year ago |
cherry-pick-73af1a19a901.patch | d368492bfd chore: cherry-pick 2 changes from Release-1-M114 (#38652) | 1 year ago |
cherry-pick-9c6dfc733fce.patch | 2c822ce4ac chore: cherry-pick 7 changes from Release-1-M113 (#38331) | 1 year ago |
cherry-pick-bb90b9cfcbca.patch | 2c822ce4ac chore: cherry-pick 7 changes from Release-1-M113 (#38331) | 1 year ago |
cherry-pick-c605df24af3c.patch | 025e3f5313 chore: cherry-pick c605df24af3c from v8 (#37981) | 2 years ago |
cherry-pick-f4b66ae451c2.patch | 826807c6a3 chore: cherry-pick f4b66ae451c2 from v8 (#37982) | 2 years ago |
chore_allow_customizing_microtask_policy_per_context.patch | 3c8ce8e85d chore: enable microtask queue per window agent (#37189) | 2 years ago |
dcheck.patch | 56f042f5e5 chore: bump chromium to 110.0.5481.30 (23-x-y) (#36819) | 2 years ago |
do_not_export_private_v8_symbols_on_windows.patch | 56f042f5e5 chore: bump chromium to 110.0.5481.30 (23-x-y) (#36819) | 2 years ago |
export_symbols_needed_for_windows_build.patch | 5a5ea4845e chore: bump chromium to 110.0.5478.5 (23-x-y) (#36574) | 2 years ago |
expose_mksnapshot.patch | 56f042f5e5 chore: bump chromium to 110.0.5481.30 (23-x-y) (#36819) | 2 years ago |
fix_build_deprecated_attribute_for_older_msvc_versions.patch | 5a5ea4845e chore: bump chromium to 110.0.5478.5 (23-x-y) (#36574) | 2 years ago |
fix_disable_implies_dcheck_for_node_stream_array_buffers.patch | ea6f873f97 chore: bump chromium to 109.0.5382.0 (main) (#36057) | 2 years ago |
force_cppheapcreateparams_to_be_noncopyable.patch | 87c183df6a chore: bump chromium to 110.0.5415.0 (main) (#36186) | 2 years ago |
merged_compiler_stackcheck_can_have_side_effects.patch | c4b0ff4994 chore: cherry-pick 4 changes from Release-3-M114 (#38948) | 1 year ago |
merged_ic_fix_store_handler_selection_for_arguments_objects.patch | d368492bfd chore: cherry-pick 2 changes from Release-1-M114 (#38652) | 1 year ago |
merged_runtime_set_instance_prototypes_directly_on_maps.patch | c4b0ff4994 chore: cherry-pick 4 changes from Release-3-M114 (#38948) | 1 year ago |
utf-8_q_shared-struct_20fix_20using_20shared_20objects_20as.patch | c4b0ff4994 chore: cherry-pick 4 changes from Release-3-M114 (#38948) | 1 year ago |
workaround_an_undefined_symbol_error.patch | 1c1a0cdead chore: bump chromium to 110.0.5451.0 (23-x-y) (#36568) | 2 years ago |
$ 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.