Skip to content

Commit

Permalink
Update to v10.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ardalis committed Sep 11, 2024
1 parent 7a028f7 commit 7d71398
Show file tree
Hide file tree
Showing 5 changed files with 91 additions and 46 deletions.
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<PackageVersion Include="Ardalis.ApiEndpoints" Version="4.1.0" />
<PackageVersion Include="coverlet.collector" Version="6.0.2" />
<PackageVersion Include="FluentAssertions" Version="6.10.0" />
<PackageVersion Include="FluentValidation" Version="11.5.1" />
<PackageVersion Include="FluentValidation" Version="11.9.2" />
<PackageVersion Include="MediatR.Extensions.Microsoft.DependencyInjection" Version="11.1.0" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="7.0.3" />
Expand Down
25 changes: 20 additions & 5 deletions src/Ardalis.Result.AspNetCore/Ardalis.Result.AspNetCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,28 @@
<Summary>Adds ASP.NET Core filters that translate from Result to ActionResult.</Summary>
<PackageTags>result pattern web api aspnetcore mvc</PackageTags>
<PackageReleaseNotes>
* fixes ardalis/Result#187; add created option in ToMinimalApiResult by @Dalmazox in #188
* ✨ 176 result status helpers by @danielmackay in #184
* Bump rexml from 3.2.6 to 3.2.8 in /docs by @dependabot in #183
* Fix Null Ref when returning Result.Error(string) non-generically. by @ardalis in #189
## 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

## 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

**Full Changelog**: https://github.com/ardalis/Result/compare/v9.1.0...v10.0.0
</PackageReleaseNotes>
<AssemblyName>Ardalis.Result.AspNetCore</AssemblyName>
<Version>9.1.0</Version>
<Version>10.0.0</Version>
<TargetFrameworks>$(NetCoreFrameworks)</TargetFrameworks>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,28 @@
<Summary>A simple package to implement FluentValidation with the Ardalis.Result package.</Summary>
<PackageTags>result;pattern;web;api;aspnetcore;mvc;FluentValidation;Validation</PackageTags>
<PackageReleaseNotes>
* fixes ardalis/Result#187; add created option in ToMinimalApiResult by @Dalmazox in #188
* ✨ 176 result status helpers by @danielmackay in #184
* Bump rexml from 3.2.6 to 3.2.8 in /docs by @dependabot in #183
* Fix Null Ref when returning Result.Error(string) non-generically. by @ardalis in #189
## 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

## 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

**Full Changelog**: https://github.com/ardalis/Result/compare/v9.1.0...v10.0.0
</PackageReleaseNotes>
<AssemblyName>Ardalis.Result.FluentValidation</AssemblyName>
<Version>9.1.0</Version>
<Version>10.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
57 changes: 36 additions & 21 deletions src/Ardalis.Result/Ardalis.Result.csproj
Original file line number Diff line number Diff line change
@@ -1,24 +1,39 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<PackageId>Ardalis.Result</PackageId>
<Title>Ardalis.Result</Title>
<Description>A simple package to implement the Result pattern for returning from services.</Description>
<Summary>A simple package to implement the Result pattern for returning from services.</Summary>
<PackageTags>result pattern web api aspnetcore mvc</PackageTags>
<PackageReleaseNotes>
* fixes ardalis/Result#187; add created option in ToMinimalApiResult by @Dalmazox in #188
* ✨ 176 result status helpers by @danielmackay in #184
* Bump rexml from 3.2.6 to 3.2.8 in /docs by @dependabot in #183
* Fix Null Ref when returning Result.Error(string) non-generically. by @ardalis in #189
</PackageReleaseNotes>
<AssemblyName>Ardalis.Result</AssemblyName>
<Version>9.1.0</Version>
</PropertyGroup>
<ItemGroup>
<None Include="icon.png" Pack="true" Visible="false" PackagePath="" />
</ItemGroup>
<ItemGroup Condition="$(TargetFramework) == 'netstandard2.0'">
<PackageReference Include="System.Text.Json" />
</ItemGroup>
<PropertyGroup>
<PackageId>Ardalis.Result</PackageId>
<Title>Ardalis.Result</Title>
<Description>A simple package to implement the Result pattern for returning from services.</Description>
<Summary>A simple package to implement the Result pattern for returning from services.</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

## 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

**Full Changelog**: https://github.com/ardalis/Result/compare/v9.1.0...v10.0.0
</PackageReleaseNotes>
<AssemblyName>Ardalis.Result</AssemblyName>
<Version>10.0.0</Version>
</PropertyGroup>
<ItemGroup>
<None Include="icon.png" Pack="true" Visible="false" PackagePath="" />
</ItemGroup>
<ItemGroup Condition="$(TargetFramework) == 'netstandard2.0'">
<PackageReference Include="System.Text.Json" />
</ItemGroup>
</Project>
28 changes: 14 additions & 14 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<Project>
<PropertyGroup>
<NetCoreFrameworks>net6.0;net7.0;net8.0</NetCoreFrameworks>
<TargetFrameworks>netstandard2.0;$(NetCoreFrameworks)</TargetFrameworks>
<LangVersion>latest</LangVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Steve Smith (@ardalis); Shady Nagy (@ShadyNagy)</Authors>
<Company>Ardalis.com</Company>
<PackageProjectUrl>https://github.com/ardalis/result</PackageProjectUrl>
<RepositoryUrl>https://github.com/ardalis/result</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<PropertyGroup>
<NetCoreFrameworks>net6.0;net7.0;net8.0</NetCoreFrameworks>
<TargetFrameworks>netstandard2.0;$(NetCoreFrameworks)</TargetFrameworks>
<LangVersion>latest</LangVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Steve Smith (@ardalis); Shady Nagy (@ShadyNagy)</Authors>
<Company>Ardalis.com</Company>
<PackageProjectUrl>https://github.com/ardalis/result</PackageProjectUrl>
<RepositoryUrl>https://github.com/ardalis/result</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>

</Project>

0 comments on commit 7d71398

Please sign in to comment.