Hacktoberfest 2026: the issues maintainers tagged for October, open and beginner-friendly. Browse Hacktoberfest issues

Implement exception groups (AggregateError)

Open
#3,579 1 comment 0 reactions 0 assignees View on GitHub

Maintainers usually reply within 1 day

Nobody has claimed this yet.

Assessment

Difficulty
4/5
Estimated time
3-5 days
Newbie friendliness
30/100
Issue type
Feature
Clarity
Mostly clear
Activity status
Stale
Tech stack
react-native, typescript

Research direction

No implementation file, test, or entry point is named. Start by reading the linked exception-groups RFC, the AggregateError references, and the related sentry-javascript pull request, while checking the blocking Sentry issue. Done means React Native events represent AggregateError's errors array consistently with the documented example and grouping implications are addressed.

Written by the indexing model from the issue text.

Description

Blocked Errors Feature React-Native
Description

React Native SDK currently supports linked exceptions using cause but doesn't support AggregateError.

### Blocked by
- [ ] https://github.com/getsentry/sentry/issues/59679#issuecomment-1920193704
Related information
Notes
  • Implementing this might likely change grouping so it should be done in a major version.
Works
{
	"message": "Third",
	"cause": {
		"message": "Second",
		"cause": {
			"message": "First",
		}
	}	
}
Not implemented at the moment
{
	"message": "Third",
	"errors": [
		{
			"message": "First",
		},
		{
			"message": "Second",
		},
	]
}
Dominant language
TypeScript
Stars
1.8k
Forks
367
Avg merge
1d 1h
Merged PRs (30d)
100

Getting set up

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

More from getsentry/sentry-react-native

All issues in getsentry/sentry-react-native

Similar issues

More TypeScript issues

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.