-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Breaking Changes] Migraton to NEST v5.3.0
* 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)
Showing
65 changed files
with
583 additions
and
784 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,8 @@ | |
|
||
# Build related | ||
/tools/ | ||
!/tools/packages.config | ||
|
||
/VersionAssemblyInfo.cs | ||
/artifacts/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
version: '{build}' | ||
os: Visual Studio 2015 | ||
os: Visual Studio 2017 | ||
init: | ||
- cmd: git config --global core.autocrlf true | ||
cache: | ||
- packages -> src\**\packages.config | ||
- tools -> tools\packages.config | ||
build_script: | ||
- ps: .\build.ps1 -Target "Default" -Verbosity "Normal" -Configuration "Release" | ||
- ps: .\build.ps1 -Target "CI" -Verbosity "Normal" -Configuration "Release" | ||
test: off | ||
artifacts: | ||
- path: artifacts\*.nupkg | ||
deploy: | ||
- provider: Environment | ||
name: MyGet (ES Snapback) | ||
on: | ||
branch: /release\/.+/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.