Skip to content
This repository was archived by the owner on Aug 30, 2025. It is now read-only.

Commit 68bce55

Browse files
committed
Fixed link for status code UNPROCESSABLE_ENTITY 422
1 parent d078fa3 commit 68bce55

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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

src/1.PowerUtils.Net.Primitives.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
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>
@@ -24,7 +24,7 @@
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>

src/Constants/StatusCodeLink.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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";

0 commit comments

Comments
 (0)