Releases: json-api-dotnet/JsonApiDotNetCore
Releases · json-api-dotnet/JsonApiDotNetCore
v2.2.1
v2.2.0
Breaking Changes
- #161: Netstandard, ASP.Net Core and EF Core v2.0
- #216: Drop deprecated DefaultEntityRepository ctor overload
- #208: Generic DbContextResolver, removal of deprecated DefaultEntityRepository constructor, and addition of IDbContextResolver
Non-Breaking Changes
- #150, #224: json:api v1.1 operations disabled by default.
- #243: Fix PageOffset, initial value of 1. Thanks @nwise !
- #226: Add DocumentBuilderOptions allowing omission of null attributes. Thanks @lheiskan !
- #211: Decouple service layer from persistence framework. Thanks @shuebner!
- #105: Explicit Filter/Sort Definitions
- #184: Performance and Benchmarks
- #197: Deprecation of locating query params by internal name
- #209: Inconsistent casing for sort and filter queries
- #210: Crashes in QueryParser
- #200: DocumentBuilder bug fix. Thanks @shuebner !
- #205: Expose CQRS constructors on JsonApiController
- #222: Improved exception messages when in development
v2.2.0-beta5
v2.2.0-beta5
v2.2.0-beta4
Breaking Changes
- #208 Generic DbContextResolver, removal of deprecated DefaultEntityRepository constructor, and addition of
IDbContextResolver
by PR #214
Example Change Required:
https://github.com/json-api-dotnet/JsonApiDotNetCore/pull/214/files#diff-e6f5a70c8d0e4db978b571b0b7d2d716
Non-Breaking Changes
public class MyEntity : Identifiable {
[Attr("name", isFilterable: false, isSortable: false)]
public string Name { get; set; }
}