Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- Fix unnecessary refreshes on update preparation failures ([#15261](https://github.com/opensearch-project/OpenSearch/issues/15261))
- Fix NullPointerException in segment replicator ([#18997](https://github.com/opensearch-project/OpenSearch/pull/18997))
- Ensure that plugins that utilize dumpCoverage can write to jacoco.dir when tests.security.manager is enabled ([#18983](https://github.com/opensearch-project/OpenSearch/pull/18983))
- Remove invalid tests for false_allow_templates ([#19064](https://github.com/opensearch-project/OpenSearch/pull/19064))

### Dependencies
- Bump `com.netflix.nebula.ospackage-base` from 12.0.0 to 12.1.0 ([#19019](https://github.com/opensearch-project/OpenSearch/pull/19019))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,24 +73,6 @@
}
}
},
{
float: {
"match": "floatField*",
"match_mapping_type": "float",
"mapping": {
"type": "float"
}
}
},
{
integer: {
"match": "integerField*",
"match_mapping_type": "integer",
"mapping": {
"type": "integer"
}
}
},
{
array: {
"match": "arrayField*",
Expand Down Expand Up @@ -119,8 +101,6 @@
booleanField: true,
longField: 123456789,
doubleField: 123.456,
floatField: 123.45,
integerField: 12345,
arrayField: ["item1", "item2", "item3"],
author: "John Doe"
}
Expand All @@ -140,8 +120,6 @@
booleanField: true
longField: 123456789
doubleField: 123.456
floatField: 123.45
integerField: 12345
arrayField: ["item1", "item2", "item3"]
author: "John Doe"

Expand All @@ -158,8 +136,6 @@
- match: {test_1.mappings.properties.booleanField.type: boolean}
- match: {test_1.mappings.properties.longField.type: long}
- match: {test_1.mappings.properties.doubleField.type: double}
- match: {test_1.mappings.properties.floatField.type: float}
- match: {test_1.mappings.properties.integerField.type: integer}
- match: {test_1.mappings.properties.arrayField.type: keyword}
- match: {test_1.mappings.properties.author: null}
- length: {test_1.mappings.properties: 11}
- length: {test_1.mappings.properties: 8}
Loading