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 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 )
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments