Skip to content

Releases: json-api-dotnet/JsonApiDotNetCore

v1.0.0

02 Mar 14:47
Compare
Choose a tag to compare

See P2 for more details

Breaking Changes:

  • There is no longer any need to override the Id property on Identifiable. The following is a valid model class since public int Id { get; set; } will be inherited.
public class TodoItemCollection : Identifiable
{ }
  • Using Attributes to define relationships
[HasMany("todo-items")]
public virtual List<TodoItem> TodoItems { get; set; }

[HasOne("collection")]
public virtual Collection Collection { get; set; }

v0.2.12 - Meta Objects

25 Feb 16:26
Compare
Choose a tag to compare
Merge pull request #38 from Research-Institute/meta-objects

Meta objects

v0.2.11

22 Feb 14:16
Compare
Choose a tag to compare

Support sideloaded relationships

v0.2.10

21 Feb 23:30
Compare
Choose a tag to compare

Fixes #33

v0.2.9

20 Feb 14:29
Compare
Choose a tag to compare

Added tests
Improved spec conformance

v0.2.8

11 Feb 23:40
Compare
Choose a tag to compare
fix(ci): configure databse in travis ci

v0.1.4

09 Sep 15:49
Compare
Choose a tag to compare
Merge pull request #17 from Research-Institute/v0.1.4-fixes

Dasherize name in RouteBuilder