feat: Add runtime tags to Next.js errors #3327
Merged
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.
Add a new tag
runtime
on the frontend with the valuebrowser
and the backend with the valuenode
for the Next.js SDK.Other minor changes:
@sentry/minimal
package.on-error-client
in the plugin.The tags are added to help users identify where errors are happening, from a high-level perspective (frontend,
browser
; or backend,node
).on-error-client
, in the plugin, only captures exceptions if the error is an actualError
. Some errors are launched with missing data (for example, no stack trace), and what users see in the issue is misleading. In those cases, instead of capturing the exception itself, what's being captured (as a message) is the error message, so that it still reaches the issue list but doesn't contain random data.