forked from elastic/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/esql-match-operator-non-snapshot
# Conflicts: # x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens # x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens # x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.interp # x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.java # x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp # x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.java
- Loading branch information
Showing
328 changed files
with
8,834 additions
and
5,572 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
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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
pr: 115091 | ||
summary: Added stricter range type checks and runtime warnings for ENRICH | ||
area: ES|QL | ||
type: bug | ||
issues: | ||
- 107357 | ||
- 116799 |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pr: 116515 | ||
summary: Esql/lookup join grammar | ||
area: ES|QL | ||
type: feature | ||
issues: [] |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
pr: 116689 | ||
summary: Deprecate `_source.mode` in mappings | ||
area: Mapping | ||
type: deprecation | ||
issues: [] | ||
deprecation: | ||
title: Deprecate `_source.mode` in mappings | ||
area: Mapping | ||
details: Configuring `_source.mode` in mappings is deprecated and will be removed in future versions. Use `index.mapping.source.mode` index setting instead. | ||
impact: Use `index.mapping.source.mode` index setting instead |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
pr: 116944 | ||
summary: "Remove support for type, fields, `copy_to` and boost in metadata field definition" | ||
area: Mapping | ||
type: breaking | ||
issues: [] | ||
breaking: | ||
title: "Remove support for type, fields, copy_to and boost in metadata field definition" | ||
area: Mapping | ||
details: The type, fields, copy_to and boost parameters are no longer supported in metadata field definition | ||
impact: Users providing type, fields, copy_to or boost as part of metadata field definition should remove them from their mappings. | ||
notable: false |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
pr: 116970 | ||
summary: Remove legacy params from range query | ||
area: Search | ||
type: breaking | ||
issues: [] | ||
breaking: | ||
title: Remove legacy params from range query | ||
area: REST API | ||
details: The deprecated range query parameters `to`, `from`, `include_lower`, and `include_upper` are no longer supported. | ||
impact: Users should use `lt`, `lte`, `gt`, and `gte` query parameters instead. | ||
notable: false |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
pr: 90529 | ||
summary: Output a consistent format when generating error json | ||
area: Infra/REST API | ||
type: "breaking" | ||
issues: | ||
- 89387 | ||
breaking: | ||
title: Error JSON structure has changed when detailed errors are disabled | ||
area: REST API | ||
details: |- | ||
This change modifies the JSON format of error messages returned to REST clients | ||
when detailed messages are turned off. | ||
Previously, JSON returned when an exception occurred, and `http.detailed_errors.enabled: false` was set, | ||
just consisted of a single `"error"` text field with some basic information. | ||
Setting `http.detailed_errors.enabled: true` (the default) changed this field | ||
to an object with more detailed information. | ||
With this change, non-detailed errors now have the same structure as detailed errors. `"error"` will now always | ||
be an object with, at a minimum, a `"type"` and `"reason"` field. Additional fields are included when detailed | ||
errors are enabled. | ||
To use the previous structure for non-detailed errors, use the v8 REST API. | ||
impact: |- | ||
If you have set `http.detailed_errors.enabled: false` (the default is `true`) | ||
the structure of JSON when any exceptions occur now matches the structure when | ||
detailed errors are enabled. | ||
To use the previous structure for non-detailed errors, use the v8 REST API. | ||
notable: false |
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
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
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
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
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
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
File renamed without changes.
File renamed without changes.
Oops, something went wrong.