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
Electron 8.4.0 has deprecated the 'crashed' event in favour of 'render-process-gone'. The new event gives finer detail over why the render process disappeared
Added new render-process-gone event on app to replace the renderer-process-crashed event. #24314
Added new render-process-gone event to replace the crashed event. #24308
This event is superceded by the render-process-gone event which contains more information about why the render process dissapeared. It isn't always because it crashed. The killed boolean can be replaced by checking reason === 'killed' when you switch to that event.
Current sentry-electron version handle the event here:
Versions + Platform
@sentry/[email protected]
[email protected]
Windows/macOS/Linux
Description
Electron 8.4.0 has deprecated the 'crashed' event in favour of 'render-process-gone'. The new event gives finer detail over why the render process disappeared
https://www.electronjs.org/releases/stable?version=8#release-notes-for-v840
Notes of deprecation:
https://www.electronjs.org/docs/api/web-contents#event-crashed-deprecated
Current sentry-electron version handle the event here:
sentry-electron/src/main/backend.ts
Line 216 in d20053d
To support older and present versions the proposed update would be to handle both crashed and render-process-gone event here.
The text was updated successfully, but these errors were encountered: