Skip to content

Commit d6a36b9

Browse files
eyalkorenfelixbarnydakrone
authored andcommitted
Adding match_only_text subfield to *.display_name fields (elastic#136265)
--------- Co-authored-by: Felix Barnsteiner <[email protected]> Co-authored-by: Lee Hinman <[email protected]>
1 parent 3dcd231 commit d6a36b9

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

docs/changelog/136265.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 136265
2+
summary: Adding `match_only_text` subfield to `*.display_name` fields in `ecs@mappings` to be compliant with the latest additions in ECS
3+
area: Data streams
4+
type: feature
5+
issues: []

x-pack/plugin/core/template-resources/src/main/resources/[email protected]

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@
126126
"*.name",
127127
"*.working_directory",
128128
"*.full_name",
129+
"*.display_name",
129130
"*file.path",
130131
"*file.target_path",
131132
"*os.full",

x-pack/plugin/stack/src/main/java/org/elasticsearch/xpack/stack/StackTemplateRegistry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public class StackTemplateRegistry extends IndexTemplateRegistry {
3737

3838
// The stack template registry version. This number must be incremented when we make changes
3939
// to built-in templates.
40-
public static final int REGISTRY_VERSION = 18;
40+
public static final int REGISTRY_VERSION = 19;
4141

4242
public static final String TEMPLATE_VERSION_VARIABLE = "xpack.stack.template.version";
4343
public static final Setting<Boolean> STACK_TEMPLATES_ENABLED = Setting.boolSetting(

0 commit comments

Comments
 (0)