12345678910111213141516171819202122 |
- [float]
- [[breaking_70_scripting_changes]]
- === Scripting changes
- [float]
- ==== getDate() and getDates() removed
- Fields of type `long` and `date` had `getDate()` and `getDates()` methods
- (for multi valued fields) to get an object with date specific helper methods
- for the current doc value. In 5.3.0, `date` fields were changed to expose
- this same date object directly when calling `doc["myfield"].value`, and
- the getter methods for date objects were deprecated. These methods have
- now been removed. Instead, use `.value` on `date` fields, or explicitly
- parse `long` fields into a date object using
- `Instance.ofEpochMillis(doc["myfield"].value)`.
- [float]
- ==== Script errors will return as `400` error codes
- Malformed scripts, either in search templates, ingest pipelines or search
- requests, return `400 - Bad request` while they would previously return
- `500 - Internal Server Error`. This also applies for stored scripts.
|