Releases: stormid/nest-queryify
Releases · stormid/nest-queryify
v6.0.0 - Breaking Changes (ES v6 support)
0.10.0 - Breaking Changes (Support for ES version 5)
- Drops support for Elasticsearch < 5
- Drops supports for NEST < 5
- Maintains support for .net452, .net46
- Adds support for netstandard1.6
- Updates Cake build to support msbuild v15 semantics for restore, build, pack
- Uses
dotnet test
to execute unit tests - Marks functionality expected to be removed later with Obsolete flags
- Minor updates to docs and readme
- ElasticsearchServerException no longer exists, on exception queries will throw an ElasticClientQueryObjectException
- IElasticsearchRepository methods accepting string Id's or document objects now consolidated into the new DocumentPath object, old methods are marked obsolete.
- Base Queries using string Ids or object document objects now expect a DocumentPath, old signatures are marked obsolete
- Removed queries with no equivalent in Elasticsearch 5 (MoreLikeQuery)
0.7.0
v0.6.1
Code:
- Adds
QueryAsync
extension toIElasticClient
- Adds new
IElasticsearchRepositoryAsync
interface and implements on existingElasticsearchRepository
to provide async calls to all existing methods. - Adds unit tests to cover all async calls
- Removes the additional constructor from
ElasticsearchRepository
, leaving only the constructor expecting anIElasticClient
Build:
- Moves the build and packaging to Cake
- Alters dependency version graph for Nest from ">=1.6" to ">=1.6 && <= 2.0"