Problem: Our desktop app relies on a deprecated Electron API for custom protocol handling. In Electron v25+, protocol.registerBufferProtocol is deprecated in favor of a new API.
Solution: Migrate from protocol.registerBufferProtocol to the new protocol.handle API. This ensures our lint-changed workflow continues to work without deprecation warnings, stays compatible with Electron v25+, and avoids breakage when the old API is removed.
Issue Owner
Current Issue Owner: @muttmuure
Problem: Our desktop app relies on a deprecated Electron API for custom protocol handling. In Electron v25+,
protocol.registerBufferProtocolis deprecated in favor of a new API.Solution: Migrate from
protocol.registerBufferProtocolto the newprotocol.handleAPI. This ensures our lint-changed workflow continues to work without deprecation warnings, stays compatible with Electron v25+, and avoids breakage when the old API is removed.Issue Owner
Current Issue Owner: @muttmuure