Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-08-26 | refactor: remove OpError, use ErrBox everywhere (#7187) | Bert Belder | |
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2020-08-18 | refactor: permissions (#7074) | Nayeem Rahman | |
2020-08-07 | Encode op errors as strings instead of numbers (#6977) | Bartek Iwańczuk | |
2020-07-28 | fix: downcast from SwcDiagnosticBuffer to OpError (#6909) | Bartek Iwańczuk | |
2020-07-06 | fix: Deno.setRaw shouldn't panic on ENOTTY (#6630) | uki00a | |
2020-04-15 | Make writeSync, readSync, seekSync, openSync, isatty proper synchronous ↵ | Ryan Dahl | |
syscalls (#4762) | |||
2020-04-03 | clippy (#4618) | Kitson Kelly | |
2020-04-03 | Properly handle invalid utf8 in paths (#4609) | dubiousjim | |
2020-03-24 | fix: add fsEvent notify::Error casts (#4488) | Kevin (Kun) "Kassimo" Qian | |
2020-03-10 | Add Deno.umask (#4290) | dubiousjim | |
2020-03-07 | upgrade rust dependencies (#4270) | Ryan Dahl | |
2020-03-05 | Allow BadResource errors to take a custom message (#4251) | Ryan Dahl | |
2020-03-02 | Do not convert exceptions to JSON and back (#4214) | Bert Belder | |
2020-02-23 | refactor: use OpError instead of ErrBox for errors in ops (#4058) | Bartek Iwańczuk | |
To better reflect changes in error types in JS from #3662 this PR changes default error type used in ops from "ErrBox" to "OpError". "OpError" is a type that can be sent over to JSON; it has all information needed to construct error in JavaScript. That made "GetErrorKind" trait useless and so it was removed altogether. To provide compatibility with previous use of "ErrBox" an implementation of "From<ErrBox> for OpError" was added, however, it is an escape hatch and ops implementors should strive to use "OpError" directly. |