Skip to content

Commit d8dae95

Browse files
committed
misc: 5.27.3 changelog
1 parent a3fb285 commit d8dae95

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

CHANGELOG.md

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

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

7+
## 5.27.3
8+
9+
- [hub] fix: Make sure that `getSession` exists before calling it (#3017)
10+
- [browser] feat: Add `DOMException.code` as tag if it exists (#3018)
11+
- [browser] fix: Call `removeEventListener` twice only when necessary (#3016)
12+
- [tracing] fix: Schedule the execution of the finish to let all the spans being closed first (#3022)
13+
- [tracing] fix: Adjust some web vitals to be relative to fetchStart and some other improvements (#3019)
14+
- [tracing] fix: Add transaction name as tag on error events (#3024)
15+
716
## 5.27.2
817

918
- [apm] ref: Delete sentry/apm package (#2990)

packages/browser/src/eventbuilder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export function eventFromUnknownInput(
8888
event = eventFromString(message, syntheticException, options);
8989
addExceptionTypeValue(event, message);
9090
if ('code' in domException) {
91-
event.tags = { ...event.tags, 'DOMException.code': `${domException.code}` }
91+
event.tags = { ...event.tags, 'DOMException.code': `${domException.code}` };
9292
}
9393

9494
return event;

0 commit comments

Comments
 (0)