You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Remove stack parser support for Opera pre v15 (#4923)
Opera v15 was released in 2013 and was based on Chromium.
This PR removes the two Opera specific stack parsers that cater for versions before this from the defaults.
Anyone still wanting to support these ancient browser versions can do the following:
```ts
import { init, defaultStackParsers, opera10StackParser, opera11StackParser } from '@sentry/browser';
init({
dsn: '__DSN__',
stackParser: [...defaultStackParsers, opera10StackParser, opera11StackParser]
})
```
0 commit comments