Skip to content

Releases: json-api-dotnet/JsonApiDotNetCore

v1.2.0

21 Mar 14:25

Choose a tag to compare

See #70 for details

v1.1.1

16 Mar 01:47

Choose a tag to compare

Merge pull request #59 from Research-Institute/develop

fixes around id types

v1.1.0

14 Mar 14:12

Choose a tag to compare

Upgrades tooling to .Net Core SDK 1.0

v1.0.1

13 Mar 19:53

Choose a tag to compare

Use 204 on empty delete response

v1.0.0

02 Mar 14:47

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

Choose a tag to compare

Merge pull request #38 from Research-Institute/meta-objects

Meta objects

v0.2.11

22 Feb 14:16

Choose a tag to compare

Support sideloaded relationships

v0.2.10

21 Feb 23:30

Choose a tag to compare

Fixes #33

v0.2.9

20 Feb 14:29

Choose a tag to compare

Added tests
Improved spec conformance

v0.2.8

11 Feb 23:40

Choose a tag to compare

fix(ci): configure databse in travis ci