This repository was archived by the owner on Aug 30, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +20
-9
lines changed
tests/PowerUtils.Net.Primitives.Tests Expand file tree Collapse file tree 7 files changed +20
-9
lines changed Original file line number Diff line number Diff line change 1616 - uses : actions/checkout@main
1717
1818 - name : Setup .NET
19- uses : actions/setup-dotnet@v1
19+ uses : actions/setup-dotnet@v2
2020 with :
2121 dotnet-version : ' 6.0.200'
2222
Original file line number Diff line number Diff line change 1818 steps :
1919
2020 - name : Setup .NET
21- uses : actions/setup-dotnet@v1
21+ uses : actions/setup-dotnet@v2
2222 with :
2323 dotnet-version : ' 6.0.200'
2424
Original file line number Diff line number Diff line change 2020 - uses : actions/checkout@v2
2121
2222 - name : Setup .NET
23- uses : actions/setup-dotnet@v1
23+ uses : actions/setup-dotnet@v2
2424 with :
2525 dotnet-version : ' 6.0.200'
2626
Original file line number Diff line number Diff line change 33
44
55
6+ ## [ 1.1.1] - 2022-02-25
7+ [ Full Changelog] ( https://github.com/TechNobre/PowerUtils.Net.Primitives/compare/v1.1.0...v1.1.1 )
8+
9+
10+ ### New Features
11+
12+ - Fixed link for status code UNPROCESSABLE_ENTITY 422;
13+
14+
15+
16+
617## [ 1.1.0] - 2022-02-25
718[ Full Changelog] ( https://github.com/TechNobre/PowerUtils.Net.Primitives/compare/v1.0.0...v1.1.0 )
819
Original file line number Diff line number Diff line change 1313 <PackageId >PowerUtils.Net.Primitives</PackageId >
1414 <title >PowerUtils.Net.Primitives</title >
1515 <Product >PowerUtils.Net.Primitives</Product >
16- <Version >1.1.0 </Version >
16+ <Version >1.1.1 </Version >
1717
1818 <Authors >Nelson Nobre</Authors >
1919 <Company >TechNobre</Company >
2424
2525 <Description >Provides additional types and constants for network-based libraries.</Description >
2626 <PackageReleaseNotes >
27- - Added constant for Status Code UNPROCESSABLE ENTITY 422
27+ Fixed link for status code UNPROCESSABLE_ENTITY 422
2828 </PackageReleaseNotes >
2929 <Description >Provides additional types and constants for network-based libraries.</Description >
3030 <PackageTags >PowerUtils;Utils;Net;Primitives;Types;Constants;Web</PackageTags >
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ public static class StatusCodeLink
3131 public const string UNSUPPORTED_MEDIA_TYPE = BASE_URL + "html/rfc7231#section-6.5.13" ;
3232 public const string REQUESTED_RANGE_NOT_SATISFIABLE = BASE_URL + "html/rfc7233#section-4.4" ;
3333 public const string EXPECTATION_FAILED = BASE_URL + "html/rfc7231#section-6.5.14" ;
34- public const string UNPROCESSABLE_ENTITY = BASE_URL + "doc/ html/rfc7231 #section-6.5 " ;
34+ public const string UNPROCESSABLE_ENTITY = BASE_URL + "html/rfc4918 #section-11.2 " ;
3535 public const string UPGRADE_REQUIRED = BASE_URL + "html/rfc7231#section-6.5.15" ;
3636 public const string INTERNAL_SERVER_ERROR = BASE_URL + "html/rfc7231#section-6.6.1" ;
3737 public const string NOT_IMPLEMENTED = BASE_URL + "html/rfc7231#section-6.6.2" ;
Original file line number Diff line number Diff line change 2020
2121
2222 <ItemGroup >
23- <PackageReference Include =" FluentAssertions" Version =" 6.2.0 " />
24- <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.0 .0" />
23+ <PackageReference Include =" FluentAssertions" Version =" 6.5.1 " />
24+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.1 .0" />
2525 <PackageReference Include =" xunit" Version =" 2.4.1" />
2626 <PackageReference Include =" xunit.runner.visualstudio" Version =" 2.4.3" >
2727 <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
2828 <PrivateAssets >all</PrivateAssets >
2929 </PackageReference >
30- <PackageReference Include =" coverlet.collector" Version =" 3.1.0 " >
30+ <PackageReference Include =" coverlet.collector" Version =" 3.1.2 " >
3131 <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
3232 <PrivateAssets >all</PrivateAssets >
3333 </PackageReference >
You can’t perform that action at this time.
0 commit comments