fix: Don't set incompatible platform on Sentry events #1762
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
#1669 broke symbolication in Sentry because
web:javascript
is not a platform that Sentry understands.Sentry uses the platform field to understand how to symbolicate an error and if it is an unknown value it bails. The code can be found here: https://github.com/getsentry/sentry/blob/c1fcd79e4bcd67f25e2b570e424e0758b5ee167f/src/sentry/lang/javascript/processing.py#L178-L180
The previously introduced change mutated the Sentry event in an incompatible way that is compatible with posthog. This change switches over to copying instead of mutating so that we don't break the contract with Sentry.
Note: I am one of the maintainers of the Sentry JS SDK.