We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdc3ea9 commit efcd66cCopy full SHA for efcd66c
CHANGELOG.md
@@ -4,6 +4,10 @@
4
5
- "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott
6
7
+## 5.15.4
8
+
9
+- [node] fix: Path domain onto global extension method to not use require (#2527)
10
11
## 5.15.3
12
13
- [hub] fix: Restore dynamicRequire, but for `perf_hooks` only (#2524)
packages/node/test/domain.test.ts
@@ -1,8 +1,10 @@
1
import { getCurrentHub, Hub } from '@sentry/core';
2
import * as domain from 'domain';
3
+// We need this import here to patch domain on the global object
import * as Sentry from '../src';
+// tslint:disable-next-line: no-console
console.log(Sentry.SDK_NAME);
describe('domains', () => {
0 commit comments