Multierr Versions Save

Combine one or more Go errors together

v1.11.0

1 year ago
  • Errors now supports any error that implements multiple-error interface.
  • Add Every function to allow checking if all errors in the chain satisfies errors.Is against the target error.

v1.10.0

1 year ago
  • Support Go 1.20 Unwrap() []error
  • Remove unused glide.yaml
  • Drop external atomic dependency
  • README: Add Features section

v1.9.0

1 year ago
  • Add AppendFunc that allow passsing functions to similar to AppendInvoke.

  • Bump up yaml.v3 dependency to 3.0.1.

v1.8.0

2 years ago
  • Combine: perform zero allocations when there are no errors.

v1.7.0

3 years ago
  • Add AppendInvoke to append into errors from defer blocks.

v1.6.0

3 years ago
  • Actually drop library dependency on development-time tooling.

v1.5.0

4 years ago
  • Drop library dependency on development-time tooling.

v1.4.0

4 years ago
  • Add AppendInto function to more ergonomically build errors inside a loop.

v1.3.0

4 years ago
  • Switch to Go modules.

v1.2.0

4 years ago
  • Support extracting and matching against wrapped errors with errors.As and errors.Is.