Uh oh!
There was an error while loading. Please reload this page.
src: per-realm binding data - #46556
Merged
Merged
Conversation
Collaborator
Review requested:
|
Contributor
Failed to start CI- Validating Jenkins credentials ✖ Jenkins credentials invalidhttps://github.com/nodejs/node/actions/runs/4123606552 |
joyeecheung
commented
Feb 8, 2023
Member
CI is under security embargo until at least 14 Feb. |
legendecas
commented
Feb 8, 2023
MemberAuthor
Yeah, let's wait for the security releases first. |
cjihrig
approved these changes
Feb 9, 2023
nodejs-github-bot
commented
Feb 16, 2023
Collaborator
32 tasks
nodejs-github-bot
commented
Feb 20, 2023
Collaborator
legendecasforce-pushed
the
binding-data
branch
from
February 20, 2023 14:27
5b2c0f8 to
0468776Comparelegendecas
commented
Feb 20, 2023
MemberAuthor
Rebased on the tip of the main branch. |
nodejs-github-bot
commented
Feb 20, 2023
Collaborator
26 tasks
Binding data is inherited from BaseObject and created in a specific realm. They need to be tracked on a per-realm basis so that they can be released properly when a realm is disposed.
legendecasforce-pushed
the
binding-data
branch
from
February 21, 2023 17:45
0468776 to
7aadcd0Comparenodejs-github-bot
commented
Feb 21, 2023
Collaborator
nodejs-github-bot
commented
Feb 21, 2023
Collaborator
Landed in ca07aba |
34 tasks
This was referenced Feb 22, 2023
juanarbol
commented
Mar 1, 2023
Member
Could you please backport this into v18.x? |
targos pushed a commit
that referenced
this pull request
Mar 13, 2023
Binding data is inherited from BaseObject and created in a specific realm. They need to be tracked on a per-realm basis so that they can be released properly when a realm is disposed. PR-URL: #46556 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
legendecas added a commit
to legendecas/node
that referenced
this pull request
May 18, 2023
Binding data is inherited from BaseObject and created in a specific realm. They need to be tracked on a per-realm basis so that they can be released properly when a realm is disposed. PR-URL: nodejs#46556 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> # Conflicts: # src/dataqueue/queue.cc
danielleadams pushed a commit
that referenced
this pull request
May 29, 2023
Binding data is inherited from BaseObject and created in a specific realm. They need to be tracked on a per-realm basis so that they can be released properly when a realm is disposed. PR-URL: #46556 Backport-PR-URL: #47174 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> # Conflicts: # src/dataqueue/queue.cc
aduh95 pushed a commit
to aduh95/node
that referenced
this pull request
Feb 18, 2025
Binding data is inherited from BaseObject and created in a specific realm. They need to be tracked on a per-realm basis so that they can be released properly when a realm is disposed. PR-URL: nodejs#46556 Backport-PR-URL: nodejs#47174 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> # Conflicts: # src/dataqueue/queue.cc
This file contains hidden or 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
Sign up for freeto 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.
Binding data is inherited from BaseObject and created in a specific
realm. They need to be tracked on a per-realm basis so that they can
be released properly when a realm is disposed.