{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":244694696,"defaultBranch":"master","name":"ExceptionUnwrapping.jl","ownerLogin":"JuliaServices","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2020-03-03T17:07:34.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/62041150?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1703972277.0","currentOid":""},"activityList":{"items":[{"before":"ff681248d8a5e8cf19025353e9f2a4f8d11f163e","after":"f9f8410eba64b058e0d8c7989e1108d2170633f9","ref":"refs/heads/master","pushedAt":"2023-12-30T21:39:00.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"NHDaly","name":"Nathan Daly","path":"/NHDaly","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1582097?s=80&v=4"},"commit":{"message":"Release v0.1.10\n\nError handling in exception summaries","shortMessageHtmlLink":"Release v0.1.10"}},{"before":"84c9312c2d732e54544006c24860a9eb0408c518","after":null,"ref":"refs/heads/sp-bt-undefined","pushedAt":"2023-12-30T21:37:57.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"NHDaly","name":"Nathan Daly","path":"/NHDaly","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1582097?s=80&v=4"}},{"before":"f9431b9751c1b2ad511339f31a6a31f58e2ccf14","after":"ff681248d8a5e8cf19025353e9f2a4f8d11f163e","ref":"refs/heads/master","pushedAt":"2023-12-30T21:37:54.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"NHDaly","name":"Nathan Daly","path":"/NHDaly","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1582097?s=80&v=4"},"commit":{"message":"Exception Summary: Another band-aid for missing stacktrace (#17)\n\n* summary: another band-aid for missing stacktrace\r\n\r\nThe following error was reported:\r\n\r\n\tUndefVarError: `bt` not defined\r\n\r\nPreviously, a different error was reported where bt was a 0-length\r\nvector. Why the stacktrace is missing is not known in either case.","shortMessageHtmlLink":"Exception Summary: Another band-aid for missing stacktrace (#17)"}},{"before":"bd720cf6b42dccd5c7b062a3030a4c9ca7e0812e","after":"84c9312c2d732e54544006c24860a9eb0408c518","ref":"refs/heads/sp-bt-undefined","pushedAt":"2023-12-28T16:08:20.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"msagarpatel","name":"Sagar Patel","path":"/msagarpatel","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/42593885?s=80&v=4"},"commit":{"message":"Update src/exception_summary.jl","shortMessageHtmlLink":"Update src/exception_summary.jl"}},{"before":"6468d118a93ec3056cd095c48c987a2d9691f3e6","after":"bd720cf6b42dccd5c7b062a3030a4c9ca7e0812e","ref":"refs/heads/sp-bt-undefined","pushedAt":"2023-12-28T16:04:48.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"msagarpatel","name":"Sagar Patel","path":"/msagarpatel","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/42593885?s=80&v=4"},"commit":{"message":"summary: another band-aid for missing stacktrace\n\nThe following error was reported:\n\n\tUndefVarError: `bt` not defined\n\nPreviously, a different error was reported where bt was a 0-length\nvector. Why the stacktrace is missing is not known in either case.","shortMessageHtmlLink":"summary: another band-aid for missing stacktrace"}},{"before":null,"after":"6468d118a93ec3056cd095c48c987a2d9691f3e6","ref":"refs/heads/sp-bt-undefined","pushedAt":"2023-12-28T14:45:59.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"msagarpatel","name":"Sagar Patel","path":"/msagarpatel","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/42593885?s=80&v=4"},"commit":{"message":"summary: another band-aid for missing stacktrace\n\nThe following error was reported:\n\n\tUndefVarError: `bt` not defined\n\nPreviously, a different error was reported where bt was a 0-length\nvector. Why the stacktrace is missing is not known in either case.","shortMessageHtmlLink":"summary: another band-aid for missing stacktrace"}},{"before":"3487afa92f827d0bcfa0ac41cf858aa96bf64b0a","after":"e50a8d0609a1bf95775da67d1860005be16e6fcc","ref":"refs/heads/nhd-nospecialize-2","pushedAt":"2023-06-07T03:09:39.782Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"NHDaly","name":"Nathan Daly","path":"/NHDaly","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1582097?s=80&v=4"},"commit":{"message":"Thoroughly nospecialize all functions; add no-alloc, no-specialize test.\n\nMake sure that _all_ functions in ExceptionUnwrapping are marked\nnospecialize. We don't want to pay the wasted compilation time at\nruntime, since these are all going to be called in _exceptional_ cases,\ncertainly not in a hot loop, and because we've seen crashes caused by a\nstackoverflow in type inference while attempting to specialize the code\nto handle a StackOverflowException! ๐Ÿ˜…\n\nThis time, we add a unit test to ensure that that these functions do not\nallocate and do not incur new compilation when called with novel\narguments.","shortMessageHtmlLink":"Thoroughly nospecialize all functions; add no-alloc, no-specialize test."}},{"before":"043150c47b6f1d555128cb20aae89e2d4605d621","after":"3487afa92f827d0bcfa0ac41cf858aa96bf64b0a","ref":"refs/heads/nhd-nospecialize-2","pushedAt":"2023-06-07T03:09:19.263Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"NHDaly","name":"Nathan Daly","path":"/NHDaly","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1582097?s=80&v=4"},"commit":{"message":"Thoroughly nospecialize all functions; add no-alloc, no-specialize test.\n\nMake sure that _all_ functions in ExceptionUnwrapping are marked\nnospecialize. We don't want to pay the wasted compilation time at\nruntime, since these are all going to be called in _exceptional_ cases,\ncertainly not in a hot loop, and because we've seen crashes caused by a\nstackoverflow in type inference while attempting to specialize the code\nto handle a StackOverflowException! ๐Ÿ˜…\n\nThis time, we add a unit test to ensure that that these functions do not\nallocate and do not incur new compilation when called with novel\narguments.","shortMessageHtmlLink":"Thoroughly nospecialize all functions; add no-alloc, no-specialize test."}},{"before":"6ddb50095358bfcdf49554106a69f1d4d30f319d","after":"f9431b9751c1b2ad511339f31a6a31f58e2ccf14","ref":"refs/heads/master","pushedAt":"2023-06-07T03:01:08.860Z","pushType":"push","commitsCount":1,"pusher":{"login":"NHDaly","name":"Nathan Daly","path":"/NHDaly","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1582097?s=80&v=4"},"commit":{"message":"Update TagBot.yml","shortMessageHtmlLink":"Update TagBot.yml"}},{"before":"b78db53b9760c0360d9defa93761a3ec2617812b","after":"6ddb50095358bfcdf49554106a69f1d4d30f319d","ref":"refs/heads/master","pushedAt":"2023-06-06T22:47:12.423Z","pushType":"push","commitsCount":1,"pusher":{"login":"NHDaly","name":"Nathan Daly","path":"/NHDaly","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1582097?s=80&v=4"},"commit":{"message":"Bump to 0.1.9, with more nospecializing","shortMessageHtmlLink":"Bump to 0.1.9, with more nospecializing"}},{"before":"023da5a2f16824920b5f332989c5a65069dea6b8","after":null,"ref":"refs/heads/nhd-nospecialize-only-unwrap_exception","pushedAt":"2023-06-06T22:46:44.483Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"NHDaly","name":"Nathan Daly","path":"/NHDaly","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1582097?s=80&v=4"}},{"before":"397314d2061ab8a7cdc0739d92f3aa4f1b1a49df","after":"b78db53b9760c0360d9defa93761a3ec2617812b","ref":"refs/heads/master","pushedAt":"2023-06-06T22:46:41.377Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"NHDaly","name":"Nathan Daly","path":"/NHDaly","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1582097?s=80&v=4"},"commit":{"message":"Also nospecialize `unwrap_exception`. (#15)\n\nUnclear why this was left out from\r\nhttps://github.com/NHDaly/ExceptionUnwrapping.jl/pull/6...\r\n\r\nThere's still probably more improvement to be made here, but I ran into\r\ntest failures on julia master, so we're leaving that as a separate\r\nchange in #14.","shortMessageHtmlLink":"Also nospecialize unwrap_exception. (#15)"}},{"before":null,"after":"023da5a2f16824920b5f332989c5a65069dea6b8","ref":"refs/heads/nhd-nospecialize-only-unwrap_exception","pushedAt":"2023-06-06T19:48:44.515Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"NHDaly","name":"Nathan Daly","path":"/NHDaly","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1582097?s=80&v=4"},"commit":{"message":"Also nospecialize `unwrap_exception`.\n\nUnclear why this was left out from\nhttps://github.com/NHDaly/ExceptionUnwrapping.jl/pull/6...\n\nThere's still probably more improvement to be made here, but I ran into\ntest failures on julia master, so we're leaving that as a separate\nchange in #14.","shortMessageHtmlLink":"Also nospecialize unwrap_exception."}},{"before":"d82675ea26eccee458421ce768933e5c5d9a8682","after":"043150c47b6f1d555128cb20aae89e2d4605d621","ref":"refs/heads/nhd-nospecialize-2","pushedAt":"2023-06-06T18:53:59.900Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"NHDaly","name":"Nathan Daly","path":"/NHDaly","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1582097?s=80&v=4"},"commit":{"message":"Thoroughly nospecialize all functions; add no-alloc, no-specialize test.\n\nMake sure that _all_ functions in ExceptionUnwrapping are marked\nnospecialize. We don't want to pay the wasted compilation time at\nruntime, since these are all going to be called in _exceptional_ cases,\ncertainly not in a hot loop, and because we've seen crashes caused by a\nstackoverflow in type inference while attempting to specialize the code\nto handle a StackOverflowException! ๐Ÿ˜…\n\nThis time, we add a unit test to ensure that that these functions do not\nallocate and do not incur new compilation when called with novel\narguments.","shortMessageHtmlLink":"Thoroughly nospecialize all functions; add no-alloc, no-specialize test."}},{"before":null,"after":"d82675ea26eccee458421ce768933e5c5d9a8682","ref":"refs/heads/nhd-nospecialize-2","pushedAt":"2023-06-06T18:22:47.107Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"NHDaly","name":"Nathan Daly","path":"/NHDaly","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1582097?s=80&v=4"},"commit":{"message":"Thoroughly nospecialize all functions; add no-alloc, no-specialize test.\n\nMake sure that _all_ functions in ExceptionUnwrapping are marked\nnospecialize. We don't want to pay the wasted compilation time at\nruntime, since these are all going to be called in _exceptional_ cases,\ncertainly not in a hot loop, and because we've seen crashes caused by a\nstackoverflow in type inference while attempting to specialize the code\nto handle a StackOverflowException! ๐Ÿ˜…\n\nThis time, we add a unit test to ensure that that these functions do not\nallocate and do not incur new compilation when called with novel\narguments.","shortMessageHtmlLink":"Thoroughly nospecialize all functions; add no-alloc, no-specialize test."}},{"before":"fa21685fa814f5e349b6b45804dfbb88fac00ead","after":null,"ref":"refs/heads/sp-singular-composite","pushedAt":"2023-04-10T14:49:49.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"msagarpatel","name":"Sagar Patel","path":"/msagarpatel","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/42593885?s=80&v=4"}},{"before":"1b49a3bc87fe78a201aa53af2d5a508ad505bdae","after":"397314d2061ab8a7cdc0739d92f3aa4f1b1a49df","ref":"refs/heads/master","pushedAt":"2023-04-10T14:48:59.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"NHDaly","name":"Nathan Daly","path":"/NHDaly","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1582097?s=80&v=4"},"commit":{"message":"summary: skip CompositeExceptions of length 1 (#11)\n\n* summary: skip CompositeExceptions of length 1\r\n\r\nIn cases of deeply nested CompositeExceptions with a single wrapped\r\nexception, this reduces the level of indentation by one level for each\r\nskipped CompositeException.\r\n\r\n* Update test/exception_summary.jl\r\n\r\n---------\r\n\r\nCo-authored-by: Nathan Daly ","shortMessageHtmlLink":"summary: skip CompositeExceptions of length 1 (#11)"}},{"before":"89c20a31843e4bb492897094cd8d1ea1dd180764","after":"fa21685fa814f5e349b6b45804dfbb88fac00ead","ref":"refs/heads/sp-singular-composite","pushedAt":"2023-04-10T14:47:52.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"NHDaly","name":"Nathan Daly","path":"/NHDaly","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1582097?s=80&v=4"},"commit":{"message":"Update test/exception_summary.jl","shortMessageHtmlLink":"Update test/exception_summary.jl"}},{"before":"f2a5b11bf8d3534850610bc86c03b4cde05aad6a","after":"1b49a3bc87fe78a201aa53af2d5a508ad505bdae","ref":"refs/heads/master","pushedAt":"2023-04-10T14:44:38.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"NHDaly","name":"Nathan Daly","path":"/NHDaly","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1582097?s=80&v=4"},"commit":{"message":"release v0.1.8\n\nFix bug with exception summary printing somehow having no backtrace.","shortMessageHtmlLink":"release v0.1.8"}},{"before":"cfaf9b14ae57ed88e550ebbb4ab32068787f2422","after":null,"ref":"refs/heads/sp-no-backtrace","pushedAt":"2023-04-10T14:43:46.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"NHDaly","name":"Nathan Daly","path":"/NHDaly","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1582097?s=80&v=4"}},{"before":"7a4bd08bbb8b28dad6d9fb1ce50ec3c7e1c03f3d","after":"f2a5b11bf8d3534850610bc86c03b4cde05aad6a","ref":"refs/heads/master","pushedAt":"2023-04-10T14:43:43.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"NHDaly","name":"Nathan Daly","path":"/NHDaly","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1582097?s=80&v=4"},"commit":{"message":"summary: band-aid for missing stacktrace (#12)\n\nThe following error was reported by @vustef:\r\n\r\n\tโ”‚ BoundsError: attempt to access 0-element Vector{Any} at index [1]\r\n\tโ”‚ Stacktrace:\r\n\tโ”‚ [1] getindex\r\n\tโ”‚ @ ./array.jl:924 [inlined]\r\n\tโ”‚ [2] _summarize_exception(io::IOBuffer, exc::InterruptException, stack::Vector{Union{Ptr{Nothing}, Base.InterpreterIP}}; prefix::Nothing)\r\n\tโ”‚ @ ExceptionUnwrapping ~/.julia/packages/ExceptionUnwrapping/Yl4ht/src/exception_summary.jl:141\r\n\r\nIt's unclear why the stacktrace is missing, but this PR should prevent\r\nanother exception from being thrown.","shortMessageHtmlLink":"summary: band-aid for missing stacktrace (#12)"}},{"before":"57efd6a4157d12f031e2bd50d9299be747f1c2e8","after":null,"ref":"refs/heads/sp-single-line-exception","pushedAt":"2023-04-08T01:44:55.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"msagarpatel","name":"Sagar Patel","path":"/msagarpatel","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/42593885?s=80&v=4"}},{"before":null,"after":"57efd6a4157d12f031e2bd50d9299be747f1c2e8","ref":"refs/heads/sp-single-line-exception","pushedAt":"2023-04-08T01:38:08.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"msagarpatel","name":"Sagar Patel","path":"/msagarpatel","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/42593885?s=80&v=4"},"commit":{"message":"summary: only show first line of Base.showerror()\n\nBase.showerror() could print an arbitrarily long exception message. A\nparticularly long message can reduce the utility of the summary since\nit detracts from the visual cues presented by the summary.\n\nAs a stopgap, only print the first line of the exception. This ensures\nthe summary is not spammy, while still showing the (presumptively) key\npart of the exception.","shortMessageHtmlLink":"summary: only show first line of Base.showerror()"}},{"before":"bb4da3dd809d651f65c89dbc8cefe257eb8ab08a","after":"cfaf9b14ae57ed88e550ebbb4ab32068787f2422","ref":"refs/heads/sp-no-backtrace","pushedAt":"2023-04-08T00:14:14.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"msagarpatel","name":"Sagar Patel","path":"/msagarpatel","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/42593885?s=80&v=4"},"commit":{"message":"summary: band-aid for missing stacktrace\n\nThe following error was reported by @vustef:\n\n\tโ”‚ BoundsError: attempt to access 0-element Vector{Any} at index [1]\n\tโ”‚ Stacktrace:\n\tโ”‚ [1] getindex\n\tโ”‚ @ ./array.jl:924 [inlined]\n\tโ”‚ [2] _summarize_exception(io::IOBuffer, exc::InterruptException, stack::Vector{Union{Ptr{Nothing}, Base.InterpreterIP}}; prefix::Nothing)\n\tโ”‚ @ ExceptionUnwrapping ~/.julia/packages/ExceptionUnwrapping/Yl4ht/src/exception_summary.jl:141\n\nIt's unclear why the stacktrace is missing, but this PR should prevent\nanother exception from being thrown.","shortMessageHtmlLink":"summary: band-aid for missing stacktrace"}},{"before":"eead3f0956527613ee5f979410882ca46f773561","after":"bb4da3dd809d651f65c89dbc8cefe257eb8ab08a","ref":"refs/heads/sp-no-backtrace","pushedAt":"2023-04-08T00:13:14.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"msagarpatel","name":"Sagar Patel","path":"/msagarpatel","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/42593885?s=80&v=4"},"commit":{"message":"summary: band-aid for missing stacktrace\n\nThe following error was reported by @vustef:\n\n\tโ”‚ BoundsError: attempt to access 0-element Vector{Any} at index [1]\n\tโ”‚ Stacktrace:\n\tโ”‚ [1] getindex\n\tโ”‚ @ ./array.jl:924 [inlined]\n\tโ”‚ [2] _summarize_exception(io::IOBuffer, exc::InterruptException, stack::Vector{Union{Ptr{Nothing}, Base.InterpreterIP}}; prefix::Nothing)\n\tโ”‚ @ ExceptionUnwrapping ~/.julia/packages/ExceptionUnwrapping/Yl4ht/src/exception_summary.jl:141\n\nIt's unclear why the stacktrace is missing, but this PR should prevent\nanother exception from being thrown.","shortMessageHtmlLink":"summary: band-aid for missing stacktrace"}},{"before":"4a776385a57392580c7bb964b5f066003653e4d0","after":"eead3f0956527613ee5f979410882ca46f773561","ref":"refs/heads/sp-no-backtrace","pushedAt":"2023-04-08T00:12:03.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"msagarpatel","name":"Sagar Patel","path":"/msagarpatel","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/42593885?s=80&v=4"},"commit":{"message":"summary: band-aid for missing stacktrace\n\nThe following error was reported by @vustef:\n\n\tโ”‚ BoundsError: attempt to access 0-element Vector{Any} at index [1]\n\tโ”‚ Stacktrace:\n\tโ”‚ [1] getindex\n\tโ”‚ @ ./array.jl:924 [inlined]\n\tโ”‚ [2] _summarize_exception(io::IOBuffer, exc::InterruptException, stack::Vector{Union{Ptr{Nothing}, Base.InterpreterIP}}; prefix::Nothing)\n\tโ”‚ @ ExceptionUnwrapping ~/.julia/packages/ExceptionUnwrapping/Yl4ht/src/exception_summary.jl:141\n\nIt's unclear why the stacktrace is missing, but this PR should prevent\nanother exception from being thrown.","shortMessageHtmlLink":"summary: band-aid for missing stacktrace"}},{"before":null,"after":"4a776385a57392580c7bb964b5f066003653e4d0","ref":"refs/heads/sp-no-backtrace","pushedAt":"2023-04-08T00:11:34.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"msagarpatel","name":"Sagar Patel","path":"/msagarpatel","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/42593885?s=80&v=4"},"commit":{"message":"summary: band-aid for missing backtrace\n\nThe following error was reported by @vustef:\n\n\tโ”‚ BoundsError: attempt to access 0-element Vector{Any} at index [1]\n\tโ”‚ Stacktrace:\n\tโ”‚ [1] getindex\n\tโ”‚ @ ./array.jl:924 [inlined]\n\tโ”‚ [2] _summarize_exception(io::IOBuffer, exc::InterruptException, stack::Vector{Union{Ptr{Nothing}, Base.InterpreterIP}}; prefix::Nothing)\n\tโ”‚ @ ExceptionUnwrapping ~/.julia/packages/ExceptionUnwrapping/Yl4ht/src/exception_summary.jl:141\n\nIt's unclear why the backtrace is missing, but this PR should prevent\nanother exception from being thrown.","shortMessageHtmlLink":"summary: band-aid for missing backtrace"}},{"before":null,"after":"89c20a31843e4bb492897094cd8d1ea1dd180764","ref":"refs/heads/sp-singular-composite","pushedAt":"2023-04-07T23:35:20.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"msagarpatel","name":"Sagar Patel","path":"/msagarpatel","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/42593885?s=80&v=4"},"commit":{"message":"summary: skip CompositeExceptions of length 1\n\nIn cases of deeply nested CompositeExceptions with a single wrapped\nexception, this reduces the level of indentation by one level for each\nskipped CompositeException.","shortMessageHtmlLink":"summary: skip CompositeExceptions of length 1"}},{"before":"e29bb3240d485af7f866fa7eda26a45348938901","after":"7a4bd08bbb8b28dad6d9fb1ce50ec3c7e1c03f3d","ref":"refs/heads/master","pushedAt":"2023-04-06T15:15:01.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"NHDaly","name":"Nathan Daly","path":"/NHDaly","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1582097?s=80&v=4"},"commit":{"message":"bump 0.1.7: support CapturedExceptions","shortMessageHtmlLink":"bump 0.1.7: support CapturedExceptions"}},{"before":"737144480d1aea13182abd719e8e2c82229db8a3","after":"e29bb3240d485af7f866fa7eda26a45348938901","ref":"refs/heads/master","pushedAt":"2023-04-06T15:14:22.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"NHDaly","name":"Nathan Daly","path":"/NHDaly","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1582097?s=80&v=4"},"commit":{"message":"Support unwrapping a CapturedException (#10)\n\n* Override for CapturedException\r\n\r\n* Add test for CapturedException\r\n\r\n---------\r\n\r\nCo-authored-by: Nathan Daly ","shortMessageHtmlLink":"Support unwrapping a CapturedException (#10)"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAD1L9DjwA","startCursor":null,"endCursor":null}},"title":"Activity ยท JuliaServices/ExceptionUnwrapping.jl"}