Skip to content

Releases: json-api-dotnet/JsonApiDotNetCore

v1.3.1

13 Apr 12:42
Compare
Choose a tag to compare

See #92

v1.3.0

31 Mar 20:08
Compare
Choose a tag to compare

Breaking Changes:

  • FilterQuery API has changed. See #77 for more details.

v1.2.2

25 Mar 02:16
Compare
Choose a tag to compare

See #71

v1.2.1

23 Mar 20:39
Compare
Choose a tag to compare

See #73

v1.2.0

21 Mar 14:25
Compare
Choose a tag to compare

See #70 for details

v1.1.1

16 Mar 01:47
Compare
Choose a tag to compare
Merge pull request #59 from Research-Institute/develop

fixes around id types

v1.1.0

14 Mar 14:12
Compare
Choose a tag to compare

Upgrades tooling to .Net Core SDK 1.0

v1.0.1

13 Mar 19:53
Compare
Choose a tag to compare

Use 204 on empty delete response

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