-
Notifications
You must be signed in to change notification settings - Fork 3.1k
feat: overhaul the crash handler #10203
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
Merged
Merged
Changes from 33 commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
2a633fa
some work
paperclover 3b33c49
linux things
paperclover 0b6b865
linux things
paperclover fa34944
feat: tracestrings on Windows
paperclover 79af8d2
bwaa
paperclover eb03a28
Merge remote-tracking branch 'origin/main' into dave/crash-handler
paperclover a9912a5
more work on the crash handler
paperclover c021476
Merge branch 'dave/crash-handler' of github.com:oven-sh/bun into dave…
paperclover 455ff79
okay
paperclover 3e5c927
adgadsgbcxcv
paperclover f906a08
ya
paperclover 3e53dbb
dsafds
paperclover 256f434
Merge remote-tracking branch 'origin/main' into dave/crash-handler
paperclover fb77fee
a
paperclover f9d1ee6
wuh
paperclover 82e3894
Merge remote-tracking branch 'origin/main' into dave/crash-handler
paperclover cbd5103
a
paperclover 2d1c830
bru h
paperclover 2f666c6
ok
paperclover a5c9979
yay
paperclover 7cc66c8
Merge remote-tracking branch 'origin/main' into dave/crash-handler
paperclover 1b48b1d
window
paperclover f7dcade
Merge remote-tracking branch 'origin/main' into dave/crash-handler
paperclover a3c06e0
alright
paperclover b730add
oops
paperclover eb43700
yeah
paperclover cab8ebe
a
paperclover 304fb98
Merge remote-tracking branch 'origin/main' into dave/crash-handler
paperclover fe2055a
a
paperclover cc5aa4d
OOM handling
paperclover cc4fe81
hi
paperclover 907b900
review comments
paperclover 739dbd6
fix on window
paperclover 141127f
Merge branch 'dave/crash-handler' of github.com:oven-sh/bun into dave…
paperclover c9748fa
Merge remote-tracking branch 'origin/main' into dave/crash-handler
paperclover 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Crash | ||
description: CRASH | ||
labels: [bug, crash] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for submitting a crash report. It helps make Bun better. | ||
|
||
- type: textarea | ||
id: remapped_trace | ||
attributes: | ||
label: Stack Trace | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Any extra info? | ||
description: If this is a reproducible bug, please provide a code snippet or list of steps that can reproduce it. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
{ | ||
"std.debug.assert": "Use bun.assert instead", | ||
" != undefined": "This is by definition Undefined Behavior.", | ||
" == undefined": "This is by definition Undefined Behavior.", | ||
"@import(\"root\").bun.": "Only import 'bun' once", | ||
"std.mem.indexOfAny": "Use bun.strings.indexAny or bun.strings.indexAnyComptime", | ||
"std.debug.assert": "Use bun.assert instead", | ||
"std.debug.dumpStackTrace": "Use bun.handleErrorReturnTrace or bun.crash_handler.dumpStackTrace instead", | ||
"std.debug.print": "Don't let this be committed", | ||
" == undefined": "This is by definition Undefined Behavior.", | ||
" != undefined": "This is by definition Undefined Behavior.", | ||
"undefined == ": "This is by definition Undefined Behavior.", | ||
"std.mem.indexOfAny": "Use bun.strings.indexAny or bun.strings.indexAnyComptime", | ||
"undefined != ": "This is by definition Undefined Behavior.", | ||
"undefined == ": "This is by definition Undefined Behavior.", | ||
"": "" | ||
} |
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 was deleted.
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
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
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
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.
Uh oh!
There was an error while loading. Please reload this page.