Skip to content

Commit 2331958

Browse files
committed
meta: Update changelog for 8.11.0
1 parent dfa863a commit 2331958

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,32 @@
44

55
- "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott
66

7+
## 8.11.0
8+
9+
### Important Changes
10+
11+
- **feat(core): Add `parentSpan` option to `startSpan*` APIs (#12567)**
12+
13+
We've made it easier to create a span as a child of a specific span via the startSpan\* APIs. This should allow you to
14+
explicitly manage the parent-child relationship of your spans better.
15+
16+
```js
17+
Sentry.startSpan({ name: 'root' }, parent => {
18+
const span = Sentry.startInactiveSpan({ name: 'xxx', parentSpan: parent });
19+
20+
Sentry.startSpan({ name: 'xxx', parentSpan: parent }, () => {});
21+
22+
Sentry.startSpanManual({ name: 'xxx', parentSpan: parent }, () => {});
23+
});
24+
```
25+
26+
### Other Changes
27+
28+
- feat(node): Detect release from more providers (#12529)
29+
- fix(profiling-node): Use correct getGlobalScope import (#12564)
30+
- fix(profiling-node) sample timestamps need to be in seconds (#12563)
31+
- ref: Align `@sentry/node` exports from framework SDKs. (#12589)
32+
733
## 8.10.0
834

935
### Important Changes

0 commit comments

Comments
 (0)