Skip to content

Commit 5dfdf5f

Browse files
committed
add #8981
1 parent 54ec435 commit 5dfdf5f

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

CHANGELOG.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
## 7.69.0
88

9+
### Important Changes
10+
911
- **New Performance APIs**
1012
- feat: Update span performance API names (#8971)
1113
- feat(core): Introduce startSpanManual (#8913)
@@ -44,7 +46,7 @@ function middleware(_req, res, next) {
4446
}
4547
```
4648
47-
`Sentry.startSpan` and `Sentry.startSpanManual` create a span and make it active for the duration of the callback. If you want to create a span without making it active, use `Sentry.startInactiveSpan`. This is useful for creating parallel spans that are not related to each other.
49+
`Sentry.startSpan` and `Sentry.startSpanManual` create a span and make it active for the duration of the callback. Any spans created while this active span is running will be added as a child span to it. If you want to create a span without making it active, use `Sentry.startInactiveSpan`. This is useful for creating parallel spans that are not related to each other.
4850
4951
```js
5052
const span1 = Sentry.startInactiveSpan({ name: 'span1' });
@@ -64,12 +66,15 @@ span2?.finish();
6466
span3?.finish();
6567
```
6668
69+
### Other Changes
70+
6771
- feat(core): Export `BeforeFinishCallback` type (#8999)
6872
- feat(eslint): Enforce that ts-expect-error is used (#8987)
6973
- feat(integration): Ensure `LinkedErrors` integration runs before all event processors (#8956)
7074
- feat(node-experimental): Keep breadcrumbs on transaction (#8967)
7175
- feat(redux): Add 'attachReduxState' option (#8953)
7276
- feat(remix): Accept `org`, `project` and `url` as args to upload script (#8985)
77+
- fix(utils): Prevent iterating over VueViewModel (#8981)
7378
- fix(utils): uuidv4 fix for cloudflare (#8968)
7479
- fix(core): Always use event message and exception values for `ignoreErrors` (#8986)
7580
- fix(nextjs): Add new potential location for Next.js request AsyncLocalStorage (#9006)
@@ -84,7 +89,7 @@ span3?.finish();
8489
- fix(replay): Ensure `handleRecordingEmit` aborts when event is not added (#8938)
8590
- fix(replay): Fully stop & restart session when it expires (#8834)
8691
87-
Work in this release contributed by @malay44. Thank you for your contribution!
92+
Work in this release contributed by @Duncanxyz and @malay44. Thank you for your contributions!
8893
8994
## 7.68.0
9095

0 commit comments

Comments
 (0)