From fa9939ae946fe2fcc3605da5d42a8ed3141345bd Mon Sep 17 00:00:00 2001 From: Steve Gravrock Date: Sat, 30 Aug 2025 14:00:00 -0700 Subject: [PATCH] Improve description of detectLateRejectionHandling feature in release notes --- release_notes/5.10.0.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/release_notes/5.10.0.md b/release_notes/5.10.0.md index 7fa43864..568e59b4 100644 --- a/release_notes/5.10.0.md +++ b/release_notes/5.10.0.md @@ -2,7 +2,8 @@ ## New Features -* Optionally detect late promise rejections and don't report them as errors +* Optionally detect promise rejections that are handled after an initial + unhandled promise rejection event and don't report them as errors. This is off by default because it comes with a performance cost. It can be enabled by setting the `detectLateRejectionHandling` config property to true. * Add `getSpecProperty` to retrieve data that was set with `setSpecProperty`.