File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 4
4
5
5
- "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott
6
6
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
+
7
33
## 8.10.0
8
34
9
35
### Important Changes
You can’t perform that action at this time.
0 commit comments