Releases: MrDave1999/SimpleResults
Releases · MrDave1999/SimpleResults
v3.0.1
What's Changed
- fix: update System.Text.Json version to fix denial of service vulnerability by @MrDave1999 in #70
Full Changelog: v3.0.0...v3.0.1
v3.0.0
What's Changed
- fix!: Incorrect status is obtained when deserializing the result object by @MrDave1999 in #65, #67
- docs: Add sample project about native AOT by @MrDave1999 in #66, #68
Full Changelog: v2.4.0...v3.0.0
v2.4.0
What's Changed
- feat: Add result operations to represent the file contents by @MrDave1999 in #59, #61
Full Changelog: v2.3.2...v2.4.0
v2.3.2
chore: Bumped version number to 2.3.2
v2.3.1
v2.3.0
- feat: Translate from Result object to an implementation of
Microsoft.AspNetCore.Http.IResult
. (#43, #44)- This adds support for Minimal API responses.
- feat: Add implicit conversion from value to
Result<T>
. (#45, #47) - feat: Add implicit conversion from
Result<T>
to value. (#46, #48) - feat: Add an endpoint filter to translate the Result object to
Microsoft.AspNetCore.Http.IResult
. (#49, #50)- This adds support for Minimal API filters.
v2.2.2
- docs: Indicate which properties of the Result object do not return null or vice versa. (#39, #40)
- chore: Add .NET 8 support for the SimpleResults.AspNetCore project. (#37, #41)
- feat: Add extension methods for the Fluent Validation library. (#38, #42)
- The package was published here: https://www.nuget.org/packages/SimpleResults.FluentValidation
- See the API documentation here.
- refactor: Add a default value to the
Id
property ofCreatedGuid
type. (01d0857) - docs: Indicate the default value of the
ResultBase.Status
property. (421643c)
v2.2.1
- chore: Add .NET 6 support for ASP.NET Core project.
- style: Add missing comments to ToActionResult method
- style: Add a more understandable comment to the CriticalError status.
- style: Add comment to
errors
parameter of Result type methods. - style: Add comment to type param of the ToActionResult method.