diff --git a/src/Ardalis.Result.AspNetCore/Ardalis.Result.AspNetCore.csproj b/src/Ardalis.Result.AspNetCore/Ardalis.Result.AspNetCore.csproj index b4de15e..5c5a5f0 100644 --- a/src/Ardalis.Result.AspNetCore/Ardalis.Result.AspNetCore.csproj +++ b/src/Ardalis.Result.AspNetCore/Ardalis.Result.AspNetCore.csproj @@ -7,28 +7,20 @@ Adds ASP.NET Core filters that translate from Result to ActionResult. result pattern web api aspnetcore mvc - ## What's Changed - * Add error messages to forbidden and unauthorized by @Ahammdan in https://github.com/ardalis/Result/pull/190 - * Fix unhandled ResultStatus.NoContent in MinimalApiResultExtensions.ToMinimalApiResult by @inghamc in https://github.com/ardalis/Result/pull/192 - * Bump rexml from 3.2.8 to 3.3.6 in /docs by @dependabot in https://github.com/ardalis/Result/pull/202 - * Fix missing new on Result.Error by @tpitlik-dev in https://github.com/ardalis/Result/pull/194 - * Add support for HttpStatusCode: Created to the ResultStatus mapping by @wtygibbs in https://github.com/ardalis/Result/pull/198 - * Add Result.Created void methods so that return Result type is implicitly handled. by @jdrames in https://github.com/ardalis/Result/pull/200 - * Implement Expression method by @KhanbalaRashidov in https://github.com/ardalis/Result/pull/201 - * Add support for ToMinimalApiResult in net6 + ## What's Changed + * Add Bind in addition to Map to support Railway Oriented Programming by @christophercalm in https://github.com/ardalis/Result/pull/215 + * Add Map Extension Method to Support Mapping from generic Result to Result by @jmrtnz94 in https://github.com/ardalis/Result/pull/213 + * Add identifier and error message constructor to ValidationError by @gordysc in https://github.com/ardalis/Result/pull/209 - ## New Contributors - * @Ahammdan made their first contribution in https://github.com/ardalis/Result/pull/190 - * @inghamc made their first contribution in https://github.com/ardalis/Result/pull/192 - * @tpitlik-dev made their first contribution in https://github.com/ardalis/Result/pull/194 - * @wtygibbs made their first contribution in https://github.com/ardalis/Result/pull/198 - * @jdrames made their first contribution in https://github.com/ardalis/Result/pull/200 - * @KhanbalaRashidov made their first contribution in https://github.com/ardalis/Result/pull/201 + ## New Contributors + * @christophercalm made their first contribution in https://github.com/ardalis/Result/pull/215 + * @jmrtnz94 made their first contribution in https://github.com/ardalis/Result/pull/213 + * @gordysc made their first contribution in https://github.com/ardalis/Result/pull/209 - **Full Changelog**: https://github.com/ardalis/Result/compare/v9.1.0...v10.0.0 + **Full Changelog**: https://github.com/ardalis/Result/compare/v10.0.0...v10.1.0 Ardalis.Result.AspNetCore - 10.0.0 + 10.1.0 $(NetCoreFrameworks) diff --git a/src/Ardalis.Result.FluentValidation/Ardalis.Result.FluentValidation.csproj b/src/Ardalis.Result.FluentValidation/Ardalis.Result.FluentValidation.csproj index 7d8d76d..1cc6f92 100644 --- a/src/Ardalis.Result.FluentValidation/Ardalis.Result.FluentValidation.csproj +++ b/src/Ardalis.Result.FluentValidation/Ardalis.Result.FluentValidation.csproj @@ -7,28 +7,20 @@ A simple package to implement FluentValidation with the Ardalis.Result package. result;pattern;web;api;aspnetcore;mvc;FluentValidation;Validation - ## What's Changed - * Add error messages to forbidden and unauthorized by @Ahammdan in https://github.com/ardalis/Result/pull/190 - * Fix unhandled ResultStatus.NoContent in MinimalApiResultExtensions.ToMinimalApiResult by @inghamc in https://github.com/ardalis/Result/pull/192 - * Bump rexml from 3.2.8 to 3.3.6 in /docs by @dependabot in https://github.com/ardalis/Result/pull/202 - * Fix missing new on Result.Error by @tpitlik-dev in https://github.com/ardalis/Result/pull/194 - * Add support for HttpStatusCode: Created to the ResultStatus mapping by @wtygibbs in https://github.com/ardalis/Result/pull/198 - * Add Result.Created void methods so that return Result type is implicitly handled. by @jdrames in https://github.com/ardalis/Result/pull/200 - * Implement Expression method by @KhanbalaRashidov in https://github.com/ardalis/Result/pull/201 - * Add support for ToMinimalApiResult in net6 + ## What's Changed + * Add Bind in addition to Map to support Railway Oriented Programming by @christophercalm in https://github.com/ardalis/Result/pull/215 + * Add Map Extension Method to Support Mapping from generic Result to Result by @jmrtnz94 in https://github.com/ardalis/Result/pull/213 + * Add identifier and error message constructor to ValidationError by @gordysc in https://github.com/ardalis/Result/pull/209 - ## New Contributors - * @Ahammdan made their first contribution in https://github.com/ardalis/Result/pull/190 - * @inghamc made their first contribution in https://github.com/ardalis/Result/pull/192 - * @tpitlik-dev made their first contribution in https://github.com/ardalis/Result/pull/194 - * @wtygibbs made their first contribution in https://github.com/ardalis/Result/pull/198 - * @jdrames made their first contribution in https://github.com/ardalis/Result/pull/200 - * @KhanbalaRashidov made their first contribution in https://github.com/ardalis/Result/pull/201 + ## New Contributors + * @christophercalm made their first contribution in https://github.com/ardalis/Result/pull/215 + * @jmrtnz94 made their first contribution in https://github.com/ardalis/Result/pull/213 + * @gordysc made their first contribution in https://github.com/ardalis/Result/pull/209 - **Full Changelog**: https://github.com/ardalis/Result/compare/v9.1.0...v10.0.0 + **Full Changelog**: https://github.com/ardalis/Result/compare/v10.0.0...v10.1.0 Ardalis.Result.FluentValidation - 10.0.0 + 10.1.0 diff --git a/src/Ardalis.Result/Ardalis.Result.csproj b/src/Ardalis.Result/Ardalis.Result.csproj index 3b1f0f3..3586a6c 100644 --- a/src/Ardalis.Result/Ardalis.Result.csproj +++ b/src/Ardalis.Result/Ardalis.Result.csproj @@ -8,27 +8,19 @@ result pattern web api aspnetcore mvc ## What's Changed - * Add error messages to forbidden and unauthorized by @Ahammdan in https://github.com/ardalis/Result/pull/190 - * Fix unhandled ResultStatus.NoContent in MinimalApiResultExtensions.ToMinimalApiResult by @inghamc in https://github.com/ardalis/Result/pull/192 - * Bump rexml from 3.2.8 to 3.3.6 in /docs by @dependabot in https://github.com/ardalis/Result/pull/202 - * Fix missing new on Result.Error by @tpitlik-dev in https://github.com/ardalis/Result/pull/194 - * Add support for HttpStatusCode: Created to the ResultStatus mapping by @wtygibbs in https://github.com/ardalis/Result/pull/198 - * Add Result.Created void methods so that return Result type is implicitly handled. by @jdrames in https://github.com/ardalis/Result/pull/200 - * Implement Expression method by @KhanbalaRashidov in https://github.com/ardalis/Result/pull/201 - * Add support for ToMinimalApiResult in net6 + * Add Bind in addition to Map to support Railway Oriented Programming by @christophercalm in https://github.com/ardalis/Result/pull/215 + * Add Map Extension Method to Support Mapping from generic Result to Result by @jmrtnz94 in https://github.com/ardalis/Result/pull/213 + * Add identifier and error message constructor to ValidationError by @gordysc in https://github.com/ardalis/Result/pull/209 ## New Contributors - * @Ahammdan made their first contribution in https://github.com/ardalis/Result/pull/190 - * @inghamc made their first contribution in https://github.com/ardalis/Result/pull/192 - * @tpitlik-dev made their first contribution in https://github.com/ardalis/Result/pull/194 - * @wtygibbs made their first contribution in https://github.com/ardalis/Result/pull/198 - * @jdrames made their first contribution in https://github.com/ardalis/Result/pull/200 - * @KhanbalaRashidov made their first contribution in https://github.com/ardalis/Result/pull/201 + * @christophercalm made their first contribution in https://github.com/ardalis/Result/pull/215 + * @jmrtnz94 made their first contribution in https://github.com/ardalis/Result/pull/213 + * @gordysc made their first contribution in https://github.com/ardalis/Result/pull/209 - **Full Changelog**: https://github.com/ardalis/Result/compare/v9.1.0...v10.0.0 + **Full Changelog**: https://github.com/ardalis/Result/compare/v10.0.0...v10.1.0 Ardalis.Result - 10.0.0 + 10.1.0