Closed as not planned
Description
Is there an existing issue for this?
- I have checked for existing issues https://github.com/getsentry/sentry-javascript/issues
- I have reviewed the documentation https://docs.sentry.io/
- I am using the latest SDK release https://github.com/getsentry/sentry-javascript/releases
How do you use Sentry?
Sentry Saas (sentry.io)
Which SDK are you using?
@sentry/browser
SDK Version
8.33.1
Framework Version
React 18.3.1
Link to Sentry event
Reproduction Example/SDK Setup
Sentry.init({
dsn: '...',
release: import.meta.env.VITE_REACT_APP_VERSION,
environment: isDev ? 'development' : 'production',
allowUrls: ['...'],
normalizeDepth: 5,
integrations: [
Sentry.reactRouterV6BrowserTracingIntegration({
useEffect,
useLocation,
useNavigationType,
createRoutesFromChildren,
matchRoutes,
}),
Sentry.replayIntegration(),
],
tracesSampleRate: isDev ? 1 : 0.1,
replaysSessionSampleRate: isDev ? 1 : 0.1,
replaysOnErrorSampleRate: 1.0,
beforeBreadcrumb: excludeGraphQLFetch,
ignoreErrors: [/^ResizeObserver.*/, /^AbortError.*/, 'Object Not Found Matching Id'],
beforeSend(event) {
if (event.exception?.values?.some(checkCancellationException)) {
return null;
}
return event;
},
});
Steps to Reproduce
Since 8.33.1 update we got new errors in the sentry 'The ReadableStream reader was released' with pointing to the sentry's code
# ../../node_modules/@sentry/utils/build/esm/instrument/fetch.js in resolveResponse at line 157:20
responseReader.releaseLock();
Looks like the only browser that produces this error for us is Pale Moon 33.4.0
Expected Result
no error from the sentry library
Actual Result
(provided above)
Metadata
Assignees
Type
Projects
Status
Waiting for: Community
Activity