You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+49Lines changed: 49 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,55 @@
4
4
5
5
- "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott
6
6
7
+
## 7.72.0
8
+
9
+
### Important Changes
10
+
11
+
-**feat(node): App Not Responding with stack traces (#9079)**
12
+
13
+
This release introduces support for Application Not Responding (ANR) errors for Node.js applications.
14
+
These errors are triggered when the Node.js main thread event loop of an application is blocked for more than five seconds.
15
+
The Node SDK reports ANR errors as Sentry events and can optionally attach a stacktrace of the blocking code to the ANR event.
16
+
17
+
To enable ANR detection, import and use the `enableANRDetection` function from the `@sentry/node` package before you run the rest of your application code.
18
+
Any event loop blocking before calling `enableANRDetection` will not be detected by the SDK.
0 commit comments