-
Notifications
You must be signed in to change notification settings - Fork 68
feat: add crash reporting #417
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ioannisj
wants to merge
47
commits into
feat/error-tracking
Choose a base branch
from
feat/error-tracking-autocapture
base: feat/error-tracking
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
47 commits
Select commit
Hold shift + click to select a range
28a3d2b
feat: add config
ioannisj f74ed8b
feat: add base error capture
ioannisj 250df1a
fix: package path
ioannisj fd35022
feat: add client-side swift demangling
ioannisj 660e839
feat: improve public api
ioannisj 530bd39
feat: add binary images
ioannisj eb51920
fix: swift error message
ioannisj 1f053f9
fix:
ioannisj e97cf3b
feat: add PostHogStackFrame
ioannisj 2a77d54
fix: synthetic
ioannisj f15c3be
feat: add capture async error example
ioannisj 1d0a159
feat: remove swift symbol demangling
ioannisj bc6171b
fix: skip top posthog frames
ioannisj 62e0a8d
fix: remove strip symbols script
ioannisj fce9076
fix: update sample project release config
ioannisj 315530c
fix: avoid force unwrap
ioannisj b121d02
fix: add helper
ioannisj cc4abb8
fix: hex constant
ioannisj 72566dd
fix: update platform
ioannisj 6c836a4
fix: update some comments
ioannisj 37f4d54
fix: rename PostHogStackTrace
ioannisj 7c137b2
fix: default to generic mechanism type
ioannisj a78f078
feat: avoid circular chains
ioannisj 336935e
fix: format
ioannisj 6418356
feat: base implementation
ioannisj 81ea865
fix: minor refactor
ioannisj 2f20d82
fix: crash report event context
ioannisj a470c28
feat: add in-app detection
ioannisj 9262d1e
feat: add crash triggers to sample project
ioannisj 5e873e3
fix: cleanup debug images
ioannisj 75b2a49
feat: exception type order
ioannisj 1e7a3a6
feat: add a note on fatalError
ioannisj e9b9d8e
feat: add comment on chained exceptions
ioannisj a95db65
fix: format
ioannisj e02cc58
feat: add unit tests
ioannisj b0e8fb3
fix: rename config option and integration
ioannisj 931a5f0
Merge branch 'main' into feat/error-tracking-autocapture
ioannisj 40b3c50
fix: format
ioannisj 2d39504
fix: folder structure
ioannisj 6c78106
fix:
ioannisj a993c53
fix: mark autoCapture unavailable on watchOS and visionOS
ioannisj 786e3d1
fix: tvOS mach unavailable
ioannisj faa32f1
Merge branch 'feat/error-tracking' into feat/error-tracking-autocapture
ioannisj a0bcd80
fix: project
ioannisj 8df74ba
fix: temp disable swiftlint rule
ioannisj ab5dcaf
fix: ci
ioannisj 5f9f049
fix: build
ioannisj File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
any reason to choose this version specifically?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1.8.0 is the earliest version that supports saving custom data along with the crash report (PLCrashReporter.customData), which we use to persist context at crash time so we can accurately rebuild all the event properties on subsequent app launches. So minimum version that has the features we need