Skip to content

Commit ecff710

Browse files
authored
Add files that are common across all projects (#6135)
* Rename README * Rename CONTRIBUTING * Rename LICENSE * Update sln * Add code of conduct * Add initial change log * Update notice.txt
1 parent 0b26531 commit ecff710

8 files changed

+67
-36
lines changed

CHANGELOG.md

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# 7.x
2+
3+
## 7.17.0 [2022-02-01]
4+
5+
https://github.com/elastic/elasticsearch-net/compare/7.16.0...7.17.0
6+
7+
## Features & Enhancements
8+
9+
- #6070 Add `IgnoreUnmapped` to `GeoDistanceQuery`, `GeoBoundingBoxQuery` and `GeoPolygon` (issue: #6066)
10+
- #6094 Add shard_stats to primary index stats (issue: #6079)
11+
- #6101 Support index template v2 APIs in NEST
12+
13+
## Bug Fixes
14+
15+
- #6085 Support version on ingest pipelines (issue: #6082)
16+
- #6088 Add missing fields for `IpProperty` (issue: #6067)
17+
- #6090 Support deserialisation of simple scripts (issue: #5684)
18+
- #6091 Add missing `TermVectorOption` (issue: #6078)
19+
- #6095 Update boxplot to handle non-numeric values (issue: #6050)
20+
- #6098 Move explain to body in search template API (issue: #5040)
21+
22+
## Breaking Changes
23+
24+
To align with naming elsewhere during the implementation of NEST APIs for index template v2, some of the low-level client types and methods have been renamed:
25+
- ExistsIndexTemplateRequestParameters => IndexTemplateV2ExistsRequestParameters
26+
- ExistsTemplateForAll => TemplateV2ExistsForAll
27+
- ExistsTemplateForAllAsync => TemplateV2ExistsForAllAsync
28+
29+
## 7.16.0 [2021-12-08]
30+
31+
https://github.com/elastic/elasticsearch-net/compare/7.15.2...7.16.0
32+
33+
## Enhancements
34+
35+
- #6023 Add Component template APIs (issues: #4748, #4718)
36+
- #6024 Support configuring a certificate fingerprint
37+
- #6031 Add inference processor (issues: #4412, #4341)
38+
39+
## Bugs
40+
41+
- #6055 Fix cleanup repository patch and regen LL code (issue: #6054)
42+
43+
## 7.15.2 [2021-10-28]
44+
45+
https://github.com/elastic/elasticsearch-net/compare/7.15.1...7.15.2
46+
47+
## Bug Fixes
48+
49+
- #6038 Support `wildcard` field in `WildcardQuery` (issue: #6033)
50+
- #6042 Support deprecated range query properties
51+
52+
## 7.15.1 [2021-10-21]
53+
54+
https://github.com/elastic/elasticsearch-net/compare/7.15.0...7.15.1
55+
56+
## Enhancements
57+
58+
- #6025 Add experimental config to disable TLS1.3
59+
- #6027 Support params on SQL query & translate APIs (issue: #6022)

CODE_OF_CONDUCT.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
See: https://www.elastic.co/community/codeofconduct

contributing.md CONTRIBUTING.md

File renamed without changes.

Elasticsearch.sln

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
3333
.gitignore = .gitignore
3434
build.bat = build.bat
3535
build.sh = build.sh
36-
contributing.md = contributing.md
36+
CONTRIBUTING.md = CONTRIBUTING.md
3737
Directory.Build.props = Directory.Build.props
3838
Directory.Build.targets = Directory.Build.targets
3939
dotnet-tools.json = dotnet-tools.json
4040
global.json = global.json
4141
issue_template.md = issue_template.md
42-
license.txt = license.txt
42+
LICENSE.txt = LICENSE.txt
4343
nuget.config = nuget.config
44-
readme.md = readme.md
44+
README.md = README.md
4545
EndProjectSection
4646
EndProject
4747
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Elastic.Clients.Elasticsearch", "src\Elastic.Clients.Elasticsearch\Elastic.Clients.Elasticsearch.csproj", "{F8A7E60C-0C48-4D76-AF7F-7881DF5A263D}"

license.txt LICENSE.txt

File renamed without changes.

NOTICE.txt

+1-30
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,2 @@
11
Elasticsearch .NET clients
2-
Copyright 2012-2021 Elasticsearch B.V.
3-
4-
==========
5-
Notice for: Utf8Json
6-
----------
7-
Based on the Utf8Json project by Yoshifumi Kawai,
8-
licensed under the MIT license. https://github.com/neuecc/Utf8Json/
9-
10-
MIT License
11-
12-
Copyright (c) 2017 Yoshifumi Kawai
13-
14-
Permission is hereby granted, free of charge, to any person obtaining a copy
15-
of this software and associated documentation files (the "Software"), to deal
16-
in the Software without restriction, including without limitation the rights
17-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
18-
copies of the Software, and to permit persons to whom the Software is
19-
furnished to do so, subject to the following conditions:
20-
21-
The above copyright notice and this permission notice shall be included in all
22-
copies or substantial portions of the Software.
23-
24-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
27-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
29-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30-
SOFTWARE.
31-
2+
Copyright 2012-2022 Elasticsearch B.V.

readme.md README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -359,4 +359,4 @@ A small HTTP server will be spun up locally on port 8000 through which you can v
359359

360360
This software is Copyright (c) 2014-2021 by Elasticsearch BV.
361361

362-
This is free software, licensed under: [The Apache License Version 2.0](https://github.com/elastic/elasticsearch-net/blob/main/license.txt).
362+
This is free software, licensed under: [The Apache License Version 2.0](https://github.com/elastic/elasticsearch-net/blob/main/LICENSE.txt).

src/_PublishArtifacts.Build.props

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<Pack>True</Pack>
1616
<PackagePath>nuget-icon.png</PackagePath>
1717
</None>
18-
<None Include="$(SolutionRoot)/license.txt">
18+
<None Include="$(SolutionRoot)/LICENSE.txt">
1919
<Pack>True</Pack>
20-
<PackagePath>license.txt</PackagePath>
20+
<PackagePath>LICENSE.txt</PackagePath>
2121
</None>
2222
</ItemGroup>
2323

0 commit comments

Comments
 (0)