You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/release-notes/index.md
+75Lines changed: 75 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,81 @@ To check for security updates, go to [Security announcements for the Elastic sta
20
20
% ### Fixes [elasticsearch-next-fixes]
21
21
% *
22
22
23
+
## 9.1.5 [elasticsearch-9.1.5-release-notes]
24
+
```{applies_to}
25
+
stack: ga 9.1.5
26
+
```
27
+
28
+
### Highlights [elasticsearch-9.1.5-highlights]
29
+
30
+
::::{dropdown} Prevent LIMIT + MV_EXPAND before remote ENRICH
31
+
Queries using LIMIT followed by MV_EXPAND before a remote ENRICH can produce incorrect results due to distributed execution semantics.
32
+
These queries are now unsupported and produce an error. Example:
33
+
[source,yaml]
34
+
----------------------------
35
+
FROM *:events | SORT @timestamp | LIMIT 2 | MV_EXPAND ip | ENRICH _remote:clientip_policy ON ip
36
+
----------------------------
37
+
To avoid this error, reorder your query, for example by moving ENRICH earlier in the pipeline.
38
+
::::
39
+
40
+
### Features and enhancements [elasticsearch-9.1.5-features-enhancements]
41
+
42
+
Audit:
43
+
* Change reindex to use ::es-redacted:: filtering [#135414](https://github.com/elastic/elasticsearch/pull/135414)
44
+
45
+
Authorization:
46
+
*[Island Browser] Add `manage`, `create_index`, `read`, `index`, `write`, `delete`, permission for third party agent indices `kibana_system`[#134636](https://github.com/elastic/elasticsearch/pull/134636) (issue: [#134136](https://github.com/elastic/elasticsearch/issues/134136))
47
+
48
+
49
+
### Fixes [elasticsearch-9.1.5-fixes]
50
+
51
+
Aggregations:
52
+
* Propagates filter() to aggregation functions' surrogates [#134461](https://github.com/elastic/elasticsearch/pull/134461) (issue: [#134380](https://github.com/elastic/elasticsearch/issues/134380))
* Ban Limit + `MvExpand` before remote Enrich [#135051](https://github.com/elastic/elasticsearch/pull/135051)
59
+
* Fix async get results with inconsistent headers [#135078](https://github.com/elastic/elasticsearch/pull/135078) (issue: [#135042](https://github.com/elastic/elasticsearch/issues/135042))
60
+
* Fix expiration time in ES|QL async [#135209](https://github.com/elastic/elasticsearch/pull/135209) (issue: [#135169](https://github.com/elastic/elasticsearch/issues/135169))
61
+
62
+
Engine:
63
+
* Bypass MMap arena grouping as this has caused issues with too many regions being mapped [#135012](https://github.com/elastic/elasticsearch/pull/135012)
64
+
* Fix deadlock in `ThreadPoolMergeScheduler` when a failing merge closes the `IndexWriter`[#134656](https://github.com/elastic/elasticsearch/pull/134656)
65
+
66
+
Geo:
67
+
*`CentroidCalculator` does not return negative summation weights [#135176](https://github.com/elastic/elasticsearch/pull/135176) (issue: [#131861](https://github.com/elastic/elasticsearch/issues/131861))
68
+
69
+
Infra/Core:
70
+
* Bug fix: Facilitate second retrieval of the same value [#134790](https://github.com/elastic/elasticsearch/pull/134790) (issue: [#134770](https://github.com/elastic/elasticsearch/issues/134770))
71
+
72
+
Infra/Node Lifecycle:
73
+
* Fix systemd notify to use a shared arena [#135235](https://github.com/elastic/elasticsearch/pull/135235)
74
+
75
+
Ingest Node:
76
+
* Correctly apply field path to JSON processor when adding contents to document root [#135479](https://github.com/elastic/elasticsearch/pull/135479)
77
+
78
+
Machine Learning:
79
+
* Add .reindexed-v7-ml-anomalies-* to anomaly results template index pattern [#135270](https://github.com/elastic/elasticsearch/pull/135270)
80
+
* Gracefully shutdown model deployment when node is removed from assignment routing [#134673](https://github.com/elastic/elasticsearch/pull/134673)
81
+
* Reset health status on successful empty checkpoint [#135653](https://github.com/elastic/elasticsearch/pull/135653) (issue: [#135650](https://github.com/elastic/elasticsearch/issues/135650))
82
+
* Tolerate mixed types in datafeed stats sort [#135096](https://github.com/elastic/elasticsearch/pull/135096)
83
+
84
+
Mapping:
85
+
* Avoid holding references to `SearchExecutionContext` in `SourceConfirmedTextQuery`[#134887](https://github.com/elastic/elasticsearch/pull/134887)
86
+
* Fix for creating semantic_text fields on pre-8.11 indices crashing Elasticsearch [#135845](https://github.com/elastic/elasticsearch/pull/135845)
87
+
* Fixed match only text block loader not working when a keyword multi field is present [#134582](https://github.com/elastic/elasticsearch/pull/134582)
88
+
89
+
Search:
90
+
* Fix KQL case-sensitivity for keyword fields in ES|QL [#135776](https://github.com/elastic/elasticsearch/pull/135776) (issue: [#135772](https://github.com/elastic/elasticsearch/issues/135772))
91
+
92
+
Transform:
93
+
* Fix a bug in the GET _transform API that incorrectly claims some Transform configurations are missing [#134963](https://github.com/elastic/elasticsearch/pull/134963) (issue: [#134263](https://github.com/elastic/elasticsearch/issues/134263))
94
+
* Prevent Transform from queuing too many PIT close requests by waiting for PIT to close before finishing the checkpoint [#134955](https://github.com/elastic/elasticsearch/pull/134955) (issue: [#134925](https://github.com/elastic/elasticsearch/issues/134925))
95
+
96
+
97
+
23
98
## 9.1.4 [elasticsearch-9.1.4-release-notes]
24
99
25
100
### Features and enhancements [elasticsearch-9.1.4-features-enhancements]
0 commit comments