Skip to content

Commit

Permalink
Merge branch 'main' into query-built-in-roles
Browse files Browse the repository at this point in the history
  • Loading branch information
albertzaharovits committed Jul 30, 2024
2 parents 4bcdf93 + 3f7f5ac commit eb93aaf
Show file tree
Hide file tree
Showing 222 changed files with 7,450 additions and 1,444 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public class LicenseAnalyzer {
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE\\.
SOFTWARE\\.?
""").replaceAll("\\s+", "\\\\s*"), Pattern.DOTALL)),
new LicenseMatcher(
"MIT-0",
Expand Down
6 changes: 6 additions & 0 deletions docs/changelog/111212.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 111212
summary: Fix score count validation in reranker response
area: Ranking
type: bug
issues:
- 111202
6 changes: 6 additions & 0 deletions docs/changelog/111284.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 111284
summary: Update `semantic_text` field to support indexing numeric and boolean data
types
area: Mapping
type: enhancement
issues: []
5 changes: 5 additions & 0 deletions docs/changelog/111316.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 111316
summary: "[Service Account] Add `AutoOps` account"
area: Security
type: enhancement
issues: []
5 changes: 5 additions & 0 deletions docs/changelog/111344.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 111344
summary: Add support for Azure Managed Identity
area: Snapshot/Restore
type: enhancement
issues: []
6 changes: 6 additions & 0 deletions docs/changelog/111363.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 111363
summary: Ensure vector similarity correctly limits `inner_hits` returned for nested
kNN
area: Vector Search
type: bug
issues: [111093]
5 changes: 5 additions & 0 deletions docs/changelog/111367.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 111367
summary: "ESQL: Add Values aggregation tests, fix `ConstantBytesRefBlock` memory handling"
area: ES|QL
type: bug
issues: []
5 changes: 5 additions & 0 deletions docs/changelog/111445.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 111445
summary: Support booleans in routing path
area: TSDB
type: enhancement
issues: []
12 changes: 6 additions & 6 deletions docs/reference/esql/functions/aggregation-functions.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ The <<esql-stats-by>> command supports these aggregate functions:

// tag::agg_list[]
* <<esql-avg>>
* <<esql-agg-count>>
* <<esql-agg-count-distinct>>
* <<esql-count>>
* <<esql-count_distinct>>
* <<esql-max>>
* <<esql-median>>
* <<esql-median_absolute_deviation>>
Expand All @@ -19,13 +19,13 @@ The <<esql-stats-by>> command supports these aggregate functions:
* experimental:[] <<esql-st_centroid_agg>>
* <<esql-sum>>
* <<esql-top>>
* <<esql-agg-values>>
* <<esql-values>>
* experimental:[] <<esql-agg-weighted-avg>>
// end::agg_list[]

include::count.asciidoc[]
include::count-distinct.asciidoc[]
include::layout/avg.asciidoc[]
include::layout/count.asciidoc[]
include::layout/count_distinct.asciidoc[]
include::layout/max.asciidoc[]
include::layout/median.asciidoc[]
include::layout/median_absolute_deviation.asciidoc[]
Expand All @@ -34,5 +34,5 @@ include::layout/percentile.asciidoc[]
include::layout/st_centroid_agg.asciidoc[]
include::layout/sum.asciidoc[]
include::layout/top.asciidoc[]
include::values.asciidoc[]
include::layout/values.asciidoc[]
include::weighted-avg.asciidoc[]
25 changes: 25 additions & 0 deletions docs/reference/esql/functions/appendix/count_distinct.asciidoc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions docs/reference/esql/functions/appendix/values.asciidoc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

85 changes: 0 additions & 85 deletions docs/reference/esql/functions/count-distinct.asciidoc

This file was deleted.

5 changes: 5 additions & 0 deletions docs/reference/esql/functions/description/count.asciidoc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions docs/reference/esql/functions/description/values.asciidoc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 31 additions & 0 deletions docs/reference/esql/functions/examples/count_distinct.asciidoc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions docs/reference/esql/functions/examples/values.asciidoc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit eb93aaf

Please sign in to comment.