-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[v14.x] deps: V8 parent ordering fix backport #37973
Closed
guybedford
wants to merge
2
commits into
nodejs:v14.x-staging
from
guybedford:v8-cycle-fix-backport-14
Closed
[v14.x] deps: V8 parent ordering fix backport #37973
guybedford
wants to merge
2
commits into
nodejs:v14.x-staging
from
guybedford:v8-cycle-fix-backport-14
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nodejs-github-bot
added
build
Issues and PRs related to build files or the CI.
needs-ci
PRs that need a full CI run.
v14.x
v8 engine
Issues and PRs related to the V8 dependency.
labels
Mar 29, 2021
This comment has been minimized.
This comment has been minimized.
guybedford
force-pushed
the
v8-cycle-fix-backport-14
branch
2 times, most recently
from
March 30, 2021 11:52
b74b214
to
3537fff
Compare
guybedford
force-pushed
the
v8-cycle-fix-backport-14
branch
from
March 30, 2021 12:21
3537fff
to
16edc5c
Compare
This comment has been minimized.
This comment has been minimized.
guybedford
force-pushed
the
v8-cycle-fix-backport-14
branch
from
March 30, 2021 15:36
16edc5c
to
3c8169a
Compare
This comment has been minimized.
This comment has been minimized.
guybedford
force-pushed
the
v8-cycle-fix-backport-14
branch
from
March 30, 2021 17:29
3c8169a
to
3625f1e
Compare
This comment has been minimized.
This comment has been minimized.
guybedford
force-pushed
the
v8-cycle-fix-backport-14
branch
from
March 30, 2021 18:27
3625f1e
to
e15bf80
Compare
richardlau
approved these changes
Mar 31, 2021
common.gypi
Outdated
@@ -36,7 +36,7 @@ | |||
|
|||
# Reset this number to 0 on major V8 upgrades. | |||
# Increment by one for each non-official patch applied to deps/v8. | |||
'v8_embedder_string': '-node.20', | |||
'v8_embedder_string': '-node.21', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comment above says this should be incremented for each non-official patch, so probably each commit in this PR should bump the version up by one.
guybedford
force-pushed
the
v8-cycle-fix-backport-14
branch
from
March 31, 2021 21:54
e15bf80
to
1a12e2f
Compare
guybedford
changed the title
[v14.x] deps: V8 cycle fix backport
[v14.x] deps: V8 parent ordering fix backport
Apr 1, 2021
guybedford
force-pushed
the
v8-cycle-fix-backport-14
branch
from
April 1, 2021 18:02
1a12e2f
to
3940d74
Compare
MylesBorins
force-pushed
the
v14.x-staging
branch
from
April 6, 2021 19:54
11505ad
to
6b115d7
Compare
[torque] Move SourceTextModule flags definitions to Torque Refs: v8/v8@5f90cfd PR-URL: nodejs#37973 Reviewed-By: Richard Lau <[email protected]>
[top-level-await] Implement the new post-order requirement for async subgraphs Refs: v8/v8@f19142e PR-URL: nodejs#37864 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
guybedford
force-pushed
the
v8-cycle-fix-backport-14
branch
from
April 8, 2021 14:33
3940d74
to
04da72f
Compare
guybedford
added a commit
that referenced
this pull request
Apr 14, 2021
[torque] Move SourceTextModule flags definitions to Torque Refs: v8/v8@5f90cfd PR-URL: #37973 Reviewed-By: Richard Lau <[email protected]>
guybedford
added a commit
that referenced
this pull request
Apr 14, 2021
[top-level-await] Implement the new post-order requirement for async subgraphs Refs: v8/v8@f19142e PR-URL: #37864 Backport-PR-URL: #37973 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is a backport of #37864 for 14.x. Getting this v8 patch to land cleanly required also porting v8/v8@5f90cfd which I've included as a separate commit in this PR.
This would be a very useful backport to ensure that between Node.js 14 and up, top-level await execution ordering semantics will always be well-defined and to specification.