Skip to content

Commit

Permalink
Update PackageReleaseNotes
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleMcMaster authored Oct 28, 2024
1 parent 71a1c7e commit c2bd486
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 49 deletions.
26 changes: 9 additions & 17 deletions src/Ardalis.Result.AspNetCore/Ardalis.Result.AspNetCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,17 @@
<Summary>Adds ASP.NET Core filters that translate from Result to ActionResult.</Summary>
<PackageTags>result pattern web api aspnetcore mvc</PackageTags>
<PackageReleaseNotes>
## 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 Result<T> to Result by @jmrtnz94 in https://github.com/ardalis/Result/pull/213
* Add identifier & 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
</PackageReleaseNotes>
<AssemblyName>Ardalis.Result.AspNetCore</AssemblyName>
<Version>10.1.0</Version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,17 @@
<Summary>A simple package to implement FluentValidation with the Ardalis.Result package.</Summary>
<PackageTags>result;pattern;web;api;aspnetcore;mvc;FluentValidation;Validation</PackageTags>
<PackageReleaseNotes>
## 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 Result<T> to Result by @jmrtnz94 in https://github.com/ardalis/Result/pull/213
* Add identifier & 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
</PackageReleaseNotes>
<AssemblyName>Ardalis.Result.FluentValidation</AssemblyName>
<Version>10.1.0</Version>
Expand Down
22 changes: 7 additions & 15 deletions src/Ardalis.Result/Ardalis.Result.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,16 @@
<PackageTags>result pattern web api aspnetcore mvc</PackageTags>
<PackageReleaseNotes>
## 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 Result<T> to Result by @jmrtnz94 in https://github.com/ardalis/Result/pull/213
* Add identifier & 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
</PackageReleaseNotes>
<AssemblyName>Ardalis.Result</AssemblyName>
<Version>10.1.0</Version>
Expand Down

0 comments on commit c2bd486

Please sign in to comment.