-
Notifications
You must be signed in to change notification settings - Fork 30k
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
lib: make properties on Blob and URL enumerable #44918
Conversation
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.
lgtm
Commit Queue failed- Loading data for nodejs/node/pull/44918 ✔ Done loading data for nodejs/node/pull/44918 ----------------------------------- PR info ------------------------------------ Title lib: make properties on Blob and URL enumerable (#44918) ⚠ Could not retrieve the email or name of the PR author's from user's GitHub profile! Branch KhafraDev:make-it-enumerable -> nodejs:main Labels whatwg-url, author ready, needs-ci Commits 2 - lib: make properties on Blob and URL enumerable - fix: lint Committers 1 - Khafra <[email protected]> PR-URL: https://github.com/nodejs/node/pull/44918 Reviewed-By: Luigi Pinca Reviewed-By: Matteo Collina Reviewed-By: Mohammed Keyvanzadeh Reviewed-By: Rich Trott Reviewed-By: James M Snell Reviewed-By: Antoine du Hamel ------------------------------ Generated metadata ------------------------------ PR-URL: https://github.com/nodejs/node/pull/44918 Reviewed-By: Luigi Pinca Reviewed-By: Matteo Collina Reviewed-By: Mohammed Keyvanzadeh Reviewed-By: Rich Trott Reviewed-By: James M Snell Reviewed-By: Antoine du Hamel -------------------------------------------------------------------------------- ℹ This PR was created on Sat, 08 Oct 2022 03:44:16 GMT ✔ Approvals: 6 ✔ - Luigi Pinca (@lpinca): https://github.com/nodejs/node/pull/44918#pullrequestreview-1135187207 ✔ - Matteo Collina (@mcollina) (TSC): https://github.com/nodejs/node/pull/44918#pullrequestreview-1135188687 ✔ - Mohammed Keyvanzadeh (@VoltrexMaster): https://github.com/nodejs/node/pull/44918#pullrequestreview-1135253008 ✔ - Rich Trott (@Trott) (TSC): https://github.com/nodejs/node/pull/44918#pullrequestreview-1135257021 ✔ - James M Snell (@jasnell) (TSC): https://github.com/nodejs/node/pull/44918#pullrequestreview-1136265636 ✔ - Antoine du Hamel (@aduh95) (TSC): https://github.com/nodejs/node/pull/44918#pullrequestreview-1143042380 ✔ Last GitHub CI successful ℹ Last Full PR CI on 2022-10-08T18:43:26Z: https://ci.nodejs.org/job/node-test-pull-request/47127/ - Querying data for job/node-test-pull-request/47127/ ✔ Last Jenkins CI successful -------------------------------------------------------------------------------- ✔ No git cherry-pick in progress ✔ No git am in progress ✔ No git rebase in progress -------------------------------------------------------------------------------- - Bringing origin/main up to date... From https://github.com/nodejs/node * branch main -> FETCH_HEAD ✔ origin/main is now up-to-date - Downloading patch for 44918 From https://github.com/nodejs/node * branch refs/pull/44918/merge -> FETCH_HEAD ✔ Fetched commits as 4264b1986150..c258b69196e7 -------------------------------------------------------------------------------- Auto-merging lib/internal/blob.js [main 473160b39a] lib: make properties on Blob and URL enumerable Author: Khafra <[email protected]> Date: Fri Oct 7 23:28:28 2022 -0400 4 files changed, 49 insertions(+) [main ec08f164b1] fix: lint Author: Khafra <[email protected]> Date: Sat Oct 8 00:14:32 2022 -0400 2 files changed, 5 insertions(+), 5 deletions(-) ✔ Patches applied There are 2 commits in the PR. Attempting autorebase. Rebasing (2/4)https://github.com/nodejs/node/actions/runs/3253098127 |
Landed in 6fb466b |
PR-URL: #44918 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Mohammed Keyvanzadeh <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
PR-URL: #44918 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Mohammed Keyvanzadeh <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
PR-URL: #44918 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Mohammed Keyvanzadeh <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
PR-URL: #44918 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Mohammed Keyvanzadeh <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
PR-URL: #44918 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Mohammed Keyvanzadeh <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
This makes properties on both URL and Blob enumerable that were not.
Refs: nodejs/undici#1690.