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.
v18.16.0 release proposal #47502
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
Uh oh!
There was an error while loading. Please reload this page.
v18.16.0 release proposal #47502
Changes from 1 commit
9bb0852f088ce2b1bde69f969cc3534562ff006b2f4165cf3406ff32de7f61891a550e6c454af728f96801cf87abd6c82826e1a814d5d6d268b5cf817eea188dfa748b0f2415a639e2a92fdb243aef68d97ad72fb801873057e3f514972444d811249b5885780365830493056f57e7bc8f14002f1de3f72b702c9aaf04f4f1c7700b9ca302b3b3b33bc9a577483cd195efb8299445a0a92e3e0e4fb2fc72f79f3f5ef78e53d0602c17b4e9b2b80d1971249a69567436a10c355a383aeee0f4360612683065b877d9b0d503ee81da5678b8f57eb1456a2b103aabeee992c0e1aa260ddd5f7c479636e080c3afbb92c4105721395e36c60816a99bfbedf8d0291effdca8665b742ea411d6d7b995cb9dd876847d74046a22ab7606168dd97b05320a8add669f22c40eec348cd712ff07aa72b72a45c231aaed5eb1df247caacf1b7982d2692c6efc24094cf3de8594bb9d9311116474084e3714d8f0ddf73a45fccc9cc6deea23c1e2fb894899ad510d9fe318dd7fb32b4ccaa7ca4da3eec15b0e8b8fd1760a384dd4f80e93d55360e973497086ff902744375c64b25b98533170da24350e2b439a2c8974d6e6db6beeef30519582c8e3538521d7d634b3dae6f27e08ca13b70e7a331073a91fbad6535311025cab7e4065e5cea71a2aed2faa755f1cfd8b636c31ece4a763a62ed8646b06bb18246e53774c3bf54ff61c9433928998ddf149443644796dfb566a89c2e8a5f647fb31578ab0e78fd5654b747fff3186d4af671c742493c6e722a06e0dd3dffe7d8307d0965202b8403e8d826e03499810d3930a983f7abe1488c0b679488baf98b25ee52b344e744d0faf409739a234ba230339b52f0254fd1966d0d811885a773be4f83fdcf7b36ea9e7886504f512f28f96a39d1ea7fb16f49c6e64e6dda5e52b169339919577f5b69ad0616817a25f1890773209c5e6af7423bd257c5acb8cdd15f8d4bf85b94e2b15503ff3b077a680b4e6db37d53a43b94b078b79c06a0c1d0a4a433f4652dfdef6c86c5e008e7c4f192ba5bf669a3f272e0edaf01ff94f9fba340a051253ba32c527d0e3077dbce37c6b5db3b501d8267b08687f7f9e60a17fbfb20f33bb0524eaf5413493cc463f13ab5b318d60eef216db3ad8398f9fe435199956f7868ea835462cbddd0bc4c17e926354958da45484c4f6972bdee0c67a7a01b652594f8353e5c4d69e4cd81ba39dd3743d167aFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
A regression has been introduced in node 18.2.0, it makes the following snippet fails while it used to work in the past: ``` const assert = require('assert'); const vm = require('vm'); const global = vm.runInContext('this', vm.createContext()); const totoSymbol = Symbol.for('toto'); Object.defineProperty(global, totoSymbol, { enumerable: true, writable: true, value: 4, configurable: true, }); assert(Object.getOwnPropertySymbols(global).includes(totoSymbol)); ``` Regression introduced by: #42963. So I basically attempted to start understanding what it changed to make it fix the initial issue while not breaking the symbol related one. Fixes: #45983 PR-URL: #46458 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>Uh oh!
There was an error while loading. Please reload this page.
There are no files selected for viewing