You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+26Lines changed: 26 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,31 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [4.0.0] - 2026-02-16
9
+
10
+
### Changed
11
+
12
+
-**Breaking change:** All `Links` property types are now `Dictionary<string, JsonApiLink>`.
13
+
-**Breaking change:** All property names now match their names in the JSON:API specification, with the exception of remaining pascal-cased.
14
+
- All `Metadata` properties have been renamed to `Meta`.
15
+
-`JsonApiError.StatusCode` has been renamed to `Status`.
16
+
-`JsonApiError.ErrorCode` has been renamed to `Code`.
17
+
-`JsonApiError.Details` has been renamed to `Detail`.
18
+
-`JsonApiInfo.Extensions` has been renamed to `Ext`.
19
+
-`JsonApiInfo.Profiles` has been renamed to `Profile`.
20
+
-`JsonApiLink.HrefLanguage` has been renamed to `HrefLang`.
21
+
-`JsonApiResourceIdentifier.LocalId` has been renamed to `LId`.
22
+
23
+
### Removed
24
+
25
+
-**Breaking change:**`JsonApiLinksObject` has been removed.
26
+
27
+
### Remarks
28
+
29
+
This version primarily fixes a critical deviation from the JSON:API specification in which `links` objects inside `relationships` objects were incorrectly typed as arrays, leading to deserialization exceptions. In the process of fixing this bug, the entire `JsonApiLinksObject` was removed, as it was foreign to the JSON:API specification for links.
30
+
31
+
Additionally, this version aims to be more idiomatic by renaming class properties to match their serialized representations.
32
+
8
33
## [3.0.0] - 2026-02-09
9
34
10
35
### Added
@@ -42,6 +67,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
0 commit comments