Skip to content

Releases: altmann/FluentResults

v2.5

19 May 18:51
e437c5a
Compare
Choose a tag to compare
  • ADDED - ToResult() to convert a Result to Result (details see readme)

v2.4

16 May 18:46
Compare
Choose a tag to compare
  • CHANGED - Implicit operator from ResultT to Result is now deprecated

v2.3

29 Oct 14:06
3b77c7d
Compare
Choose a tag to compare
  • ADD - Try factory method to execute an action whereby a thrown exception is transformed to an Error (see readme for documentation) #72
  • ADD - Add multiple errors via WithErrors(...) and CausedBy(...) (see readme) #73
  • ADD - Inline Docu for the public interface #64
  • ADD - Better documentation of CausedBy(...) (see readme) #60
  • ADD - Interesting resources about Result pattern (see readme) #59
  • CHANGE - Internally now xUnit is used for testing

v2.2.0

21 Aug 18:53
Compare
Choose a tag to compare
  • ADD - Simplify the creation of results with Result.OkIf(..) and Result.FailIf(..) (see readme for documentation) #51
  • ADD - Samples/best practices which show the integration with famous or common frameworks/libraries (see readme) #52

v2.1.0

11 Aug 19:46
6c9df52
Compare
Choose a tag to compare
  • CHANGE - Result constructors are public to support MediatR usecase

v2.0.0

18 Jun 18:06
Compare
Choose a tag to compare
  • ADD - Add Source Link support
  • ADD - Targeting best practices. Remove target .NET 4.8 and add target .NET 4.6.1
  • ADD - Improved docs (readme)
  • CHANGE - Factory methods like Ok(..) or Fail(..) are moved to Result class.
  • CHANGE - Factory methods on Results class like Results.Ok(..) and Results.Fail(..) are deprecated.
  • CHANGE - Result constructors are not public anymore. Use factory methods of Result instead (e.g. Result.Ok(..) or Result.Fail(..))
  • CHANGE - Method HasMetadata(...) with expression #40
  • FIX - Add version correct in Version property #36