File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
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
+ ## 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
+
7
16
## 5.27.2
8
17
9
18
- [ apm] ref: Delete sentry/apm package (#2990 )
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ export function eventFromUnknownInput(
88
88
event = eventFromString ( message , syntheticException , options ) ;
89
89
addExceptionTypeValue ( event , message ) ;
90
90
if ( 'code' in domException ) {
91
- event . tags = { ...event . tags , 'DOMException.code' : `${ domException . code } ` }
91
+ event . tags = { ...event . tags , 'DOMException.code' : `${ domException . code } ` } ;
92
92
}
93
93
94
94
return event ;
You can’t perform that action at this time.
0 commit comments