Skip to content

Commit

Permalink
meta(changelog): Update changelog for v7.105.0 (#10880)
Browse files Browse the repository at this point in the history
Includes something we forgot to re-export before...
  • Loading branch information
mydea authored Mar 1, 2024
1 parent 7b11379 commit 0eac510
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,25 @@

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

## 7.105.0

### Important Changes

- **feat: Ensure `withActiveSpan` is exported everywhere (#10877)**

You can use the `withActiveSpan` method to ensure a certain span is the active span in a given callback. This can be
used to create a span as a child of a specific span with the `startSpan` API methods:

```js
const parentSpan = Sentry.startInactiveSpan({ name: 'parent' });
if (parentSpan) {
withActiveSpan(parentSpan, () => {
// This will be a direct child of parentSpan
const childSpan = Sentry.startInactiveSpan({ name: 'child' });
});
}
```

## 7.104.0

### Important Changes
Expand Down

0 comments on commit 0eac510

Please sign in to comment.