Skip to content

Releases: dscottboggs/attest

Hard vs. Soft failures

13 Apr 15:07
fbad323
Compare
Choose a tag to compare
Merge pull request #8 from dscottboggs/feature/hard-vs-soft-failures

Add option to fail immediately on first error

Better error logging

10 Apr 20:20
03ac896
Compare
Choose a tag to compare
Merge pull request #7 from dscottboggs/fix/better-error-logging

Better error logging

Regexp matching, better error handling, and more

09 Apr 00:54
1a0c1d4
Compare
Choose a tag to compare

Look, I realize this is a breaking change, and I wouldn't have made it in a 1.1 release if there were literally one star on this repo. But as far as I can tell, I'm the only user of this library as of yet, and also I want to save v2 for the Go 2 release which will be so much better than anything possible with Go 1.x.

Anyway, uh, ✌️. Enjoy.

1.0 release, stable API

20 Aug 16:15
Compare
Choose a tag to compare
Final breaking changes to error handler functions

Test.Handle() which prior to this accepted multiple errors, now only 
accepts a single error and an optional message, behavior previously 
assigned to Test.MessageHandle().
This does not break most cases, as most of the time one only passes a 
single error to Test.Handle(). However, any tests which passed multiple 
errors (specifically tests which pass an error as the second argument to 
Test.Handle()) will now fail unconditionally.

If you need to handle multiple errors at once, use the new 
Test.HandleMultiple(...error).