Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions changelog.d/8825-async-hooks-lifecycle.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
### Fixed

- Completed Node `async_hooks` lifecycle support across async resources, event emitters, HTTP, sockets, workers, zlib, DNS, and WebCrypto. Provider scopes now restore execution and `AsyncLocalStorage` state when hooks or callbacks throw, deferred destroy hooks run at the correct lifecycle boundary, and allocation-sensitive values remain rooted across moving garbage collections.
4 changes: 4 additions & 0 deletions changelog.d/8826-readonly-set-has.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Speed up calls to `ReadonlySet.has` with an exact runtime Set-brand check and
ordinary method dispatch fallback. Type-only class imports now retain the
field metadata needed for this guarded optimization without creating runtime
module bindings or initialization edges.
4 changes: 4 additions & 0 deletions changelog.d/8830-declared-map-get-dispatch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Speed up declared `Map.get` and `ReadonlyMap.get` calls that pass through
nested interface or object fields. Genuine native Maps now bypass generic
method dispatch, while structural values, subclasses, proxies, primitives,
and nullish receivers retain ordinary JavaScript behavior on a brand miss.
2 changes: 2 additions & 0 deletions crates/perry-codegen/src/expr/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,8 @@ mod call_spread_short;
mod call_spread_short_tests;
#[cfg(test)]
mod issue7628_rooting_tests;
#[cfg(test)]
mod readonly_collection_tests;
pub(crate) mod shadow_slot;
#[cfg(test)]
mod slice7_rooting_tests;
Expand Down
Loading
Loading