fix: format wasm stack traces correctly, preserve context in unhandled rejection, improve cppgc inheritance perf#32293
Merged
nathanwhit merged 1 commit intodenoland:mainfrom Feb 23, 2026
Conversation
bartlomieju
approved these changes
Feb 23, 2026
This was referenced Feb 23, 2026
bartlomieju
added a commit
that referenced
this pull request
Feb 23, 2026
## Summary - Update wasm stack trace formatting to use the W3C WebAssembly Web API spec format: `wasm-function[<funcIndex>]:0x<hexOffset>` instead of the generic `line:col` format - Update existing `wasm_url` test expectation to match - Add new integration test (`wasm_stack_trace`) covering: - Basic unreachable trap with correct `wasm-function[0]:0x<offset>` format - Multi-frame wasm call chain verifying correct function indices across frames - `Error.prepareStackTrace` callsite `toString()` producing correct wasm format Fixes #32239 Actually fixed in #32293, this just adds a test. --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
bartlomieju
added a commit
that referenced
this pull request
Feb 23, 2026
…andlers (#32264) ## Summary - Fixes `AsyncLocalStorage.getStore()` returning `undefined` inside `unhandledRejection` / `unhandledrejection` event handlers - Now matches Node.js behavior where the async context active at the time of rejection is preserved Fixes #30135 Actually fixed in #32293, this just adds a test. Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
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 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.
Fixes #30135
Fixes #32239