Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 055176d

Browse files
committedApr 5, 2025·
Update docs for v8.18.0 release
1 parent 96ca13a commit 055176d

File tree

4 files changed

+580
-1
lines changed

4 files changed

+580
-1
lines changed
 

‎docs/reference/migration/migrate_8_18.asciidoc

+120-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,124 @@ coming::[8.18.0]
1616
[[breaking-changes-8.18]]
1717
=== Breaking changes
1818

19-
There are no breaking changes in {es} 8.18.
19+
The following changes in {es} 8.18 might affect your applications
20+
and prevent them from operating normally.
21+
Before upgrading to 8.18, review these changes and take the described steps
22+
to mitigate the impact.
23+
24+
[discrete]
25+
[[breaking_818_analysis_changes]]
26+
==== Analysis changes
27+
28+
[[change_semantic_text_to_act_like_normal_text_field]]
29+
.Change Semantic Text To Act Like A Normal Text Field
30+
[%collapsible]
31+
====
32+
*Details* +
33+
The previous semantic_text format used a complex subfield structure in _source to store the embeddings. This complicated interactions/integrations with semantic_text fields and _source in general. This new semantic_text format treats it as a normal text field, where the field's value in _source is the value assigned by the user.
34+
35+
*Impact* +
36+
Users who parsed the subfield structure of the previous semantic_text format in _source will need to update their parsing logic. The new format does not directly expose the chunks and embeddings generated from the input text. The new format will be applied to all new indices, any existing indices will continue to use the previous format.
37+
====
38+
39+
[discrete]
40+
[[breaking_818_cluster_and_node_setting_changes]]
41+
==== Cluster and node setting changes
42+
43+
[[drop_tls_rsa_cipher_support_for_jdk_24]]
44+
.Drop `TLS_RSA` cipher support for JDK 24
45+
[%collapsible]
46+
====
47+
*Details* +
48+
This change removes `TLS_RSA` ciphers from the list of default supported ciphers, for Elasticsearch deployments running on JDK 24.
49+
50+
*Impact* +
51+
The dropped ciphers are `TLS_RSA_WITH_AES_256_GCM_SHA384`, `TLS_RSA_WITH_AES_128_GCM_SHA256`, `TLS_RSA_WITH_AES_256_CBC_SHA256`, `TLS_RSA_WITH_AES_128_CBC_SHA256`, `TLS_RSA_WITH_AES_256_CBC_SHA`, and `TLS_RSA_WITH_AES_128_CBC_SHA`. TLS connections to Elasticsearch using these ciphers will no longer work. Please configure your clients to use one of supported cipher suites.
52+
====
53+
54+
[discrete]
55+
[[breaking_818_packaging_changes]]
56+
==== Packaging changes
57+
58+
[[disable_machine_learning_on_macos_x86_64]]
59+
.Disable machine learning on macOS x86_64
60+
[%collapsible]
61+
====
62+
*Details* +
63+
The machine learning plugin is permanently disabled on macOS x86_64. For the last three years Apple has been selling hardware based on the arm64 architecture, and support will increasingly focus on this architecture in the future. Changes to upstream dependencies of Elastic's machine learning functionality have made it unviable for Elastic to continue to build machine learning on macOS x86_64.
64+
65+
*Impact* +
66+
To continue to use machine learning functionality on macOS please switch to an arm64 machine (Apple silicon). Alternatively, it will still be possible to run Elasticsearch with machine learning enabled in a Docker container on macOS x86_64.
67+
====
68+
69+
[discrete]
70+
[[breaking_818_rest_api_changes]]
71+
==== REST API changes
72+
73+
[[set_allow_partial_search_results_true_by_default]]
74+
.Set allow_partial_search_results=true by default
75+
[%collapsible]
76+
====
77+
*Details* +
78+
Before this change, in case of shard failures, EQL queries always returned an error. With this change, they will keep running and will return partial results.
79+
80+
*Impact* +
81+
EQL queries that would previously fail due to shard failures, will now succeed and return partial results. The previous defaults can be restored by setting `xpack.eql.default_allow_partial_results` cluster setting to `false` or setting with `allow_partial_search_results` to `false` in the query request.
82+
====
83+
84+
85+
[discrete]
86+
[[deprecated-8.18]]
87+
=== Deprecations
88+
89+
The following functionality has been deprecated in {es} 8.18
90+
and will be removed in a future version.
91+
While this won't have an immediate impact on your applications,
92+
we strongly encourage you to take the described steps to update your code
93+
after upgrading to 8.18.
94+
95+
To find out if you are using any deprecated functionality,
96+
enable <<deprecation-logging, deprecation logging>>.
97+
98+
[discrete]
99+
[[deprecations_818_index_setting]]
100+
==== Index setting deprecations
101+
102+
[[increase_frozen_indices_deprecation_level_to_critical]]
103+
.Increase the frozen indices deprecation level to `CRITICAL`
104+
[%collapsible]
105+
====
106+
*Details* +
107+
The migration deprecations API previously returned a warning on frozen indices. Support for reading frozen indices will be removed in 9.0, so in 8.18 this has been made a critical issue.
108+
109+
*Impact* +
110+
Users are required to unfreeze any frozen indices before upgrading to 9.x. (N.B. It was impossible to freeze indices in 8.x, so this only applies to 7.x indices which have not been reindexed.)
111+
====
112+
113+
[discrete]
114+
[[deprecations_818_rest_api]]
115+
==== REST API deprecations
116+
117+
[[deprecate_ability_to_connect_to_nodes_of_versions_8_17_earlier]]
118+
.Deprecate ability to connect to nodes of versions 8.17 and earlier
119+
[%collapsible]
120+
====
121+
*Details* +
122+
Versions 9.0.0 and later of {es} will not support communication with nodes of versions earlier than 8.18.0, so the ability to connect to nodes of earlier versions is deprecated in this version. This applies both to communication within a cluster and communication across clusters (e.g. for <<modules-cross-cluster-search,{ccs}>> or <<xpack-ccr,{ccr}>>).
123+
{es} will report in its <<deprecation-logging, deprecation logging>> each time it opens a connection to a node that will not be supported from version 9.0.0 onwards. You must upgrade all your clusters to version 8.18.0 or later before upgrading any of your clusters to 9.0.0 or later.
124+
125+
*Impact* +
126+
Upgrade all of your clusters to at least 8.18.0 before upgrading any of them to 9.0.0 or later.
127+
====
128+
129+
[[v_7_deprecation_logging_set_to_critical]]
130+
.V_7 deprecation logging set to critical
131+
[%collapsible]
132+
====
133+
*Details* +
134+
This changes the V_7 API deprecation logging level to CRITICAL.
135+
136+
*Impact* +
137+
Any usage of deprecated V_7 API features will now be logged at the CRITICAL level. This does not change functionality.
138+
====
20139

‎docs/reference/release-notes.asciidoc

+8
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,13 @@
77
This section summarizes the changes in each release.
88

99
* <<release-notes-8.18.0>>
10+
* <<release-notes-8.17.4>>
11+
* <<release-notes-8.17.3>>
1012
* <<release-notes-8.17.2>>
1113
* <<release-notes-8.17.1>>
1214
* <<release-notes-8.17.0>>
15+
* <<release-notes-8.16.6>>
16+
* <<release-notes-8.16.5>>
1317
* <<release-notes-8.16.4>>
1418
* <<release-notes-8.16.3>>
1519
* <<release-notes-8.16.2>>
@@ -85,9 +89,13 @@ This section summarizes the changes in each release.
8589
--
8690

8791
include::release-notes/8.18.0.asciidoc[]
92+
include::release-notes/8.17.4.asciidoc[]
93+
include::release-notes/8.17.3.asciidoc[]
8894
include::release-notes/8.17.2.asciidoc[]
8995
include::release-notes/8.17.1.asciidoc[]
9096
include::release-notes/8.17.0.asciidoc[]
97+
include::release-notes/8.16.6.asciidoc[]
98+
include::release-notes/8.16.5.asciidoc[]
9199
include::release-notes/8.16.4.asciidoc[]
92100
include::release-notes/8.16.3.asciidoc[]
93101
include::release-notes/8.16.2.asciidoc[]

‎docs/reference/release-notes/8.18.0.asciidoc

+445
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,449 @@ coming[8.18.0]
55

66
Also see <<breaking-changes-8.18,Breaking changes in 8.18>>.
77

8+
[[breaking-8.18.0]]
9+
[float]
10+
=== Breaking changes
11+
12+
EQL::
13+
* Set allow_partial_search_results=true by default {es-pull}120267[#120267]
14+
15+
Machine Learning::
16+
* Disable machine learning on macOS x86_64 {es-pull}104125[#104125]
17+
18+
Search::
19+
* Change Semantic Text To Act Like A Normal Text Field {es-pull}120813[#120813]
20+
21+
TLS::
22+
* Drop `TLS_RSA` cipher support for JDK 24 {es-pull}123600[#123600]
23+
24+
[[bug-8.18.0]]
25+
[float]
26+
=== Bug fixes
27+
28+
Analysis::
29+
* Adjust exception thrown when unable to load hunspell dict {es-pull}123743[#123743]
30+
* Non existing synonyms sets do not fail shard recovery for indices {es-pull}125659[#125659] (issue: {es-issue}125603[#125603])
31+
32+
CAT APIs::
33+
* Fix cat_component_templates documentation {es-pull}120487[#120487]
34+
35+
Data streams::
36+
* Avoid updating settings version in `MetadataMigrateToDataStreamService` when settings have not changed {es-pull}118704[#118704]
37+
* Ensure removal of index blocks does not leave key with null value {es-pull}122246[#122246]
38+
* Match dot prefix of migrated DS backing index with the source index {es-pull}120042[#120042]
39+
* Refresh source index before reindexing data stream index {es-pull}120752[#120752] (issue: {es-issue}120314[#120314])
40+
* Updating `TransportRolloverAction.checkBlock` so that non-write-index blocks do not prevent data stream rollover {es-pull}122905[#122905]
41+
* `ReindexDataStreamIndex` bug in assertion caused by reference equality {es-pull}121325[#121325]
42+
43+
Downsampling::
44+
* Copy metrics and `default_metric` properties when downsampling `aggregate_metric_double` {es-pull}121727[#121727] (issues: {es-issue}119696[#119696], {es-issue}96076[#96076])
45+
* Improve downsample performance by avoiding to read unnecessary dimension values when downsampling. {es-pull}124451[#124451]
46+
47+
EQL::
48+
* Fix EQL double invoking listener {es-pull}124918[#124918]
49+
50+
ES|QL::
51+
* Avoid over collecting in Limit or Lucene Operator {es-pull}123296[#123296]
52+
* Correct line and column numbers of missing named parameters {es-pull}120852[#120852]
53+
* Drop null columns in text formats {es-pull}117643[#117643] (issue: {es-issue}116848[#116848])
54+
* ESQL - date nanos range bug? {es-pull}125345[#125345] (issue: {es-issue}125439[#125439])
55+
* Esql - Fix lucene push down behavior when a range contains nanos and millis {es-pull}125595[#125595]
56+
* Fix ROUND() with unsigned longs throwing in some edge cases {es-pull}119536[#119536]
57+
* Fix TopN row size estimate {es-pull}119476[#119476] (issue: {es-issue}106956[#106956])
58+
* Fix `AbstractShapeGeometryFieldMapperTests` {es-pull}119265[#119265] (issue: {es-issue}119201[#119201])
59+
* Fix `ReplaceMissingFieldsWithNull` {es-pull}125764[#125764] (issues: {es-issue}126036[#126036], {es-issue}121754[#121754], {es-issue}126030[#126030])
60+
* Fix a bug in TOP {es-pull}121552[#121552]
61+
* Fix async stop sometimes not properly collecting result {es-pull}121843[#121843] (issue: {es-issue}121249[#121249])
62+
* Fix attribute set equals {es-pull}118823[#118823]
63+
* Fix double lookup failure on ESQL {es-pull}115616[#115616] (issue: {es-issue}111398[#111398])
64+
* Fix queries with document level security on lookup indexes {es-pull}120617[#120617] (issue: {es-issue}120509[#120509])
65+
* Fix writing for LOOKUP status {es-pull}119296[#119296] (issue: {es-issue}119086[#119086])
66+
* Implicit numeric casting for CASE/GREATEST/LEAST {es-pull}122601[#122601] (issue: {es-issue}121890[#121890])
67+
* Lazy collection copying during node transform {es-pull}124424[#124424]
68+
* Limit memory usage of `fold` {es-pull}118602[#118602]
69+
* Limit size of query {es-pull}117898[#117898]
70+
* Make `numberOfChannels` consistent with layout map by removing duplicated `ChannelSet` {es-pull}125636[#125636]
71+
* Reduce iteration complexity for plan traversal {es-pull}123427[#123427]
72+
* Remove redundant sorts from execution plan {es-pull}121156[#121156]
73+
* Use a must boolean statement when pushing down to Lucene when scoring is also needed {es-pull}124001[#124001] (issue: {es-issue}123967[#123967])
74+
75+
Health::
76+
* Do not recommend increasing `max_shards_per_node` {es-pull}120458[#120458]
77+
78+
ILM+SLM::
79+
* [8.x] Add missing timeouts to rest-api-spec SLM APIs {es-pull}119447[#119447]
80+
81+
Indices APIs::
82+
* Fix NPE in rolling over unknown target and return 404 {es-pull}125352[#125352]
83+
* Include hidden indices in `DeprecationInfoAction` {es-pull}118035[#118035] (issue: {es-issue}118020[#118020])
84+
* Preventing `ConcurrentModificationException` when updating settings for more than one index {es-pull}126077[#126077]
85+
* Updates the deprecation info API to not warn about system indices and data streams {es-pull}122951[#122951]
86+
* [8.18] Avoid hoarding cluster state references during rollover {es-pull}124266[#124266]
87+
88+
Inference::
89+
* [Inference API] Put back legacy EIS URL setting {es-pull}121207[#121207]
90+
91+
Infra/Core::
92+
* Epoch Millis Rounding Down and Not Up 2 {es-pull}118353[#118353]
93+
* Fix system data streams to be restorable from a snapshot {es-pull}124651[#124651] (issue: {es-issue}89261[#89261])
94+
* Have create index return a bad request on poor formatting {es-pull}123761[#123761]
95+
* Include data streams when converting an existing resource to a system resource {es-pull}121392[#121392]
96+
* System Index Migration Failure Results in a Non-Recoverable State {es-pull}122326[#122326]
97+
* System data streams are not being upgraded in the feature migration API {es-pull}123926[#123926]
98+
* Wrap jackson exception on malformed json string {es-pull}114445[#114445] (issue: {es-issue}114142[#114142])
99+
100+
Infra/Logging::
101+
* Move `SlowLogFieldProvider` instantiation to node construction {es-pull}117949[#117949]
102+
103+
Infra/Plugins::
104+
* Remove unnecessary entitlement {es-pull}120959[#120959]
105+
* Restrict agent entitlements to the system classloader unnamed module {es-pull}120546[#120546]
106+
107+
Ingest Node::
108+
* Fix geoip databases index access after system feature migration {es-pull}121196[#121196]
109+
* Fix geoip databases index access after system feature migration (again) {es-pull}122938[#122938]
110+
* Fix geoip databases index access after system feature migration (take 3) {es-pull}124604[#124604]
111+
112+
Machine Learning::
113+
* Add `ElasticInferenceServiceCompletionServiceSettings` {es-pull}123155[#123155]
114+
* Add enterprise license check to inference action for semantic text fields {es-pull}122293[#122293]
115+
* Avoid potentially throwing calls to Task#getDescription in model download {es-pull}124527[#124527]
116+
* Change format for Unified Chat {es-pull}121396[#121396]
117+
* Fix `AlibabaCloudSearchCompletionAction` not accepting `ChatCompletionInputs` {es-pull}125023[#125023]
118+
* Fix get all inference endponts not returning multiple endpoints sharing model deployment {es-pull}121821[#121821]
119+
* Fix serialising the inference update request {es-pull}122278[#122278]
120+
* Fixing bedrock event executor terminated cache issue {es-pull}118177[#118177] (issue: {es-issue}117916[#117916])
121+
* Fixing bug setting index when parsing Google Vertex AI results {es-pull}117287[#117287]
122+
* Retry on streaming errors {es-pull}123076[#123076]
123+
* Set Connect Timeout to 5s {es-pull}123272[#123272]
124+
* Set default similarity for Cohere model to cosine {es-pull}125370[#125370] (issue: {es-issue}122878[#122878])
125+
* Updating Inference Update API documentation to have the correct PUT method {es-pull}121048[#121048]
126+
* [Inference API] Fix output stream ordering in `InferenceActionProxy` {es-pull}124225[#124225]
127+
128+
Mapping::
129+
* Avoid serializing empty `_source` fields in mappings {es-pull}122606[#122606]
130+
* Fix realtime get of nested fields with synthetic source {es-pull}119575[#119575] (issue: {es-issue}119553[#119553])
131+
* Merge field mappers when updating mappings with [subobjects:false] {es-pull}120370[#120370] (issue: {es-issue}120216[#120216])
132+
* Merge template mappings properly during validation {es-pull}124784[#124784] (issue: {es-issue}123372[#123372])
133+
* Tweak `copy_to` handling in synthetic `_source` to account for nested objects {es-pull}120974[#120974] (issue: {es-issue}120831[#120831])
134+
135+
Ranking::
136+
* Fix LTR query feature with phrases (and two-phase) queries {es-pull}125103[#125103]
137+
138+
Search::
139+
* Catch and handle disconnect exceptions in search {es-pull}115836[#115836]
140+
* Fix leak in `DfsQueryPhase` and introduce search disconnect stress test {es-pull}116060[#116060] (issue: {es-issue}115056[#115056])
141+
* Handle long overflow in dates {es-pull}124048[#124048] (issue: {es-issue}112483[#112483])
142+
* Handle search timeout in `SuggestPhase` {es-pull}122357[#122357] (issue: {es-issue}122186[#122186])
143+
* In this pr, a 400 error is returned when _source / _seq_no / _feature / _nested_path / _field_names is requested, rather a 5xx {es-pull}117229[#117229]
144+
* Load `FieldInfos` from store if not yet initialised through a refresh on `IndexShard` {es-pull}125650[#125650] (issue: {es-issue}125483[#125483])
145+
* Re-enable parallel collection for field sorted top hits {es-pull}125916[#125916]
146+
* Skip fetching _inference_fields field in legacy semantic_text format {es-pull}121720[#121720]
147+
* Support indices created in ESv6 and updated in ESV7 using different LuceneCodecs as archive in current version. {es-pull}125389[#125389]
148+
* [8.x] Test/107515 `RestoreTemplateWithMatchOnlyTextMapperIT` {es-pull}120898[#120898]
149+
* [8.x] fix/SearchStatesIt_failures {es-pull}117729[#117729]
150+
* `CrossClusterIT` `testCancel` failure {es-pull}117750[#117750] (issue: {es-issue}108061[#108061])
151+
152+
Snapshot/Restore::
153+
* Fork post-snapshot-delete cleanup off master thread {es-pull}122731[#122731]
154+
* This PR fixes a bug whereby partial snapshots of system datastreams could be used to restore system features. {es-pull}124931[#124931]
155+
* Use the system index descriptor in the snapshot blob cache cleanup task {es-pull}120937[#120937] (issue: {es-issue}120518[#120518])
156+
157+
Suggesters::
158+
* Return an empty suggestion when suggest phase times out {es-pull}122575[#122575] (issue: {es-issue}122548[#122548])
159+
160+
Transform::
161+
* If the Transform is configured to write to an alias as its destination index, when the delete_dest_index parameter is set to true, then the Delete API will now delete the write index backing the alias {es-pull}122074[#122074] (issue: {es-issue}121913[#121913])
162+
163+
Vector Search::
164+
* Apply default k for knn query eagerly {es-pull}118774[#118774]
165+
* Fix `bbq_hnsw` merge file cleanup on random IO exceptions {es-pull}119691[#119691] (issue: {es-issue}119392[#119392])
166+
* Knn vector rescoring to sort score docs {es-pull}122653[#122653] (issue: {es-issue}119711[#119711])
167+
* Return appropriate error on null dims update instead of npe {es-pull}125716[#125716]
168+
169+
Watcher::
170+
* Watcher history index has too many indexed fields - {es-pull}117701[#117701] (issue: {es-issue}71479[#71479])
171+
172+
[[deprecation-8.18.0]]
173+
[float]
174+
=== Deprecations
175+
176+
Indices APIs::
177+
* Increase the frozen indices deprecation level to `CRITICAL` {es-pull}119879[#119879]
178+
179+
Infra/Core::
180+
* Add deprecation warning to `TransportHandshaker` {es-pull}123188[#123188]
181+
182+
Infra/REST API::
183+
* Enhancement/v7 critical deprecation logging {es-pull}118298[#118298]
184+
185+
[[enhancement-8.18.0]]
186+
[float]
187+
=== Enhancements
188+
189+
Authentication::
190+
* Allow `SSHA-256` for API key credential hash {es-pull}120997[#120997]
191+
192+
Authorization::
193+
* Allow kibana_system user to manage .reindexed-v8-internal.alerts indices {es-pull}118959[#118959]
194+
* Do not fetch reserved roles from native store when Get Role API is called {es-pull}121971[#121971]
195+
* Make reserved built-in roles queryable {es-pull}117581[#117581]
196+
* [Security Solution] allows `kibana_system` user to manage .reindexed-v8-* Security Solution indices {es-pull}119054[#119054]
197+
198+
CCS::
199+
* Resolve/cluster allows querying for cluster info only (no index expression required) {es-pull}119898[#119898]
200+
201+
Data streams::
202+
* Add action to create index from a source index {es-pull}118890[#118890]
203+
* Add index and reindex request settings to speed up reindex {es-pull}119780[#119780]
204+
* Add rest endpoint for `create_from_source_index` {es-pull}119250[#119250]
205+
* Add sanity check to `ReindexDatastreamIndexAction` {es-pull}120231[#120231]
206+
* Adding a migration reindex cancel API {es-pull}118291[#118291]
207+
* Adding get migration reindex status {es-pull}118267[#118267]
208+
* Consistent mapping for OTel log and event bodies {es-pull}120547[#120547]
209+
* Filter deprecated settings when making dest index {es-pull}120163[#120163]
210+
* Ignore closed indices for reindex {es-pull}120244[#120244]
211+
* Improve how reindex data stream index action handles api blocks {es-pull}120084[#120084]
212+
* Initial work on `ReindexDatastreamIndexAction` {es-pull}116996[#116996]
213+
* Make `requests_per_second` configurable to throttle reindexing {es-pull}120207[#120207]
214+
* Optimized index sorting for OTel logs {es-pull}119504[#119504]
215+
* Reindex data stream indices on different nodes {es-pull}125171[#125171]
216+
* Report Deprecated Indices That Are Flagged To Ignore Migration Reindex As A Warning {es-pull}120629[#120629]
217+
* Retry ILM async action after reindexing data stream {es-pull}124149[#124149]
218+
* [8.x] Update data stream deprecations warnings to new format and filter sea… {es-pull}119097[#119097]
219+
220+
Distributed::
221+
* Metrics for incremental bulk splits {es-pull}116765[#116765]
222+
223+
Downsampling::
224+
* Improve downsample performance by buffering docids and do bulk processing {es-pull}124477[#124477]
225+
* Improve rolling up metrics {es-pull}124739[#124739]
226+
227+
EQL::
228+
* Add support for partial shard results {es-pull}116388[#116388]
229+
* Optional named arguments for function in map {es-pull}118619[#118619]
230+
231+
ES|QL::
232+
* Add ES|QL cross-cluster query telemetry collection {es-pull}119474[#119474]
233+
* Add a `LicenseAware` interface for licensed Nodes {es-pull}118931[#118931] (issue: {es-issue}117405[#117405])
234+
* Add a `PostAnalysisAware,` distribute verification {es-pull}119798[#119798]
235+
* Add a standard deviation aggregating function: STD_DEV {es-pull}116531[#116531]
236+
* Add cluster level reduction {es-pull}117731[#117731]
237+
* Add nulls support to Categorize {es-pull}117655[#117655]
238+
* Async search responses have CCS metadata while searches are running {es-pull}117265[#117265]
239+
* Backport Term query for ES|QL to 8.x {es-pull}118135[#118135]
240+
* Backport scoring support in ES|QL to 8.x branch {es-pull}117747[#117747]
241+
* Check for early termination in Driver {es-pull}118188[#118188]
242+
* Do not serialize `EsIndex` in plan {es-pull}119580[#119580]
243+
* ESQL - Remove restrictions for disjunctions in full text functions {es-pull}118544[#118544]
244+
* ESQL - enabling scoring with METADATA `_score` {es-pull}113120[#113120]
245+
* ESQL Add esql hash function {es-pull}117989[#117989]
246+
* ESQL Support IN operator for Date nanos {es-pull}119772[#119772] (issue: {es-issue}118578[#118578])
247+
* ESQL: CATEGORIZE as a `BlockHash` {es-pull}114317[#114317]
248+
* ESQL: Enterprise license enforcement for CCS {es-pull}118102[#118102]
249+
* ES|QL: Partial result on demand for async queries {es-pull}118122[#118122]
250+
* Enable KQL function as a tech preview {es-pull}119730[#119730]
251+
* Enable LOOKUP JOIN in non-snapshot builds {es-pull}121193[#121193] (issue: {es-issue}121185[#121185])
252+
* Enable node-level reduction by default {es-pull}119621[#119621]
253+
* Enable physical plan verification {es-pull}118114[#118114]
254+
* Esql - Support date nanos in date extract function {es-pull}120727[#120727] (issue: {es-issue}110000[#110000])
255+
* Esql - support date nanos in date format function {es-pull}120143[#120143] (issue: {es-issue}109994[#109994])
256+
* Esql Support date nanos on date diff function {es-pull}120645[#120645] (issue: {es-issue}109999[#109999])
257+
* Esql bucket function for date nanos {es-pull}118474[#118474] (issue: {es-issue}118031[#118031])
258+
* Esql compare nanos and millis {es-pull}118027[#118027] (issue: {es-issue}116281[#116281])
259+
* Esql implicit casting for date nanos {es-pull}118697[#118697] (issue: {es-issue}118476[#118476])
260+
* Extend `TranslationAware` to all pushable expressions {es-pull}120192[#120192]
261+
* Hash functions {es-pull}118938[#118938]
262+
* Implement a `MetricsAware` interface {es-pull}121074[#121074]
263+
* LOOKUP JOIN using field-caps for field mapping {es-pull}117246[#117246]
264+
* Lookup join on multiple join fields not yet supported {es-pull}118858[#118858]
265+
* Move scoring in ES|QL out of snapshot {es-pull}120354[#120354]
266+
* Optimize ST_EXTENT_AGG for `geo_shape` and `cartesian_shape` {es-pull}119889[#119889]
267+
* Push down `StartsWith` and `EndsWith` functions to Lucene {es-pull}123381[#123381] (issue: {es-issue}123067[#123067])
268+
* Push down filter passed lookup join {es-pull}118410[#118410]
269+
* Resume Driver on cancelled or early finished {es-pull}120020[#120020]
270+
* Reuse child `outputSet` inside the plan where possible {es-pull}124611[#124611]
271+
* Rewrite TO_UPPER/TO_LOWER comparisons {es-pull}118870[#118870] (issue: {es-issue}118304[#118304])
272+
* ST_EXTENT_AGG optimize envelope extraction from doc-values for cartesian_shape {es-pull}118802[#118802]
273+
* Smarter field caps with subscribable listener {es-pull}116755[#116755]
274+
* Support some stats on aggregate_metric_double {es-pull}120343[#120343] (issue: {es-issue}110649[#110649])
275+
* Take named parameters for identifier and pattern out of snapshot {es-pull}121850[#121850]
276+
* Term query for ES|QL {es-pull}117359[#117359]
277+
* Update grammar to rely on `indexPattern` instead of identifier in join target {es-pull}120494[#120494]
278+
* `_score` should not be a reserved attribute in ES|QL {es-pull}118435[#118435] (issue: {es-issue}118460[#118460])
279+
280+
Engine::
281+
* Enhance add-block API to flush and add 'verified' metadata {es-pull}119743[#119743]
282+
283+
Experiences::
284+
* Integrate IBM watsonx to Inference API for re-ranking task {es-pull}117176[#117176]
285+
286+
Geo::
287+
* Optimize indexing points with index and doc values set to true {es-pull}120271[#120271]
288+
289+
ILM+SLM::
290+
* Add a `replicate_for` option to the ILM `searchable_snapshot` action {es-pull}119003[#119003]
291+
292+
Indices APIs::
293+
* Add `remove_index_block` arg to `_create_from` api {es-pull}120548[#120548]
294+
* Remove index blocks by default in `create_from` {es-pull}120643[#120643]
295+
* introduce new categories for deprecated resources in deprecation API {es-pull}120505[#120505]
296+
297+
Inference::
298+
* [8.18][Inference API] Rename `model_id` prop to model in EIS sparse inference request body {es-pull}122398[#122398]
299+
* [8.x] Add version prefix to Inference Service API path {es-pull}117696[#117696]
300+
* [8.x] Update sparse text embeddings API route for Inference Service {es-pull}118369[#118369]
301+
* [Elastic Inference Service] Add ElasticInferenceService Unified ChatCompletions Integration {es-pull}118871[#118871]
302+
303+
Infra/CLI::
304+
* Ignore _JAVA_OPTIONS {es-pull}124843[#124843]
305+
* Strengthen encryption for elasticsearch-keystore tool to AES 256 {es-pull}119749[#119749]
306+
307+
Infra/Core::
308+
* Improve size limiting string message {es-pull}122427[#122427]
309+
* Return unique deprecation for old indices with incompatible date formats {es-pull}124597[#124597]
310+
311+
Infra/REST API::
312+
* A new query parameter `?include_source_on_error` was added for create / index, update and bulk REST APIs to control
313+
if to include the document source in the error response in case of parsing errors. The default value is `true`. {es-pull}120725[#120725]
314+
315+
Ingest Node::
316+
* Optimize `IngestCtxMap` construction {es-pull}120833[#120833]
317+
* Optimize `IngestDocMetadata` `isAvailable` {es-pull}120753[#120753]
318+
* Optimize `IngestDocument` `FieldPath` allocation {es-pull}120573[#120573]
319+
* Optimize some per-document hot paths in the geoip processor {es-pull}120824[#120824]
320+
* Returning ignored fields in the simulate ingest API {es-pull}117214[#117214]
321+
322+
Logs::
323+
* Add LogsDB option to route on sort fields {es-pull}116687[#116687]
324+
* Add a new index setting to skip recovery source when synthetic source is enabled {es-pull}114618[#114618]
325+
* Configure index sorting through index settings for logsdb {es-pull}118968[#118968] (issue: {es-issue}118686[#118686])
326+
* Optimize loading mappings when determining synthetic source usage and whether host.name can be sorted on. {es-pull}120055[#120055]
327+
328+
Machine Learning::
329+
* Add Inference Unified API for chat completions for OpenAI {es-pull}117589[#117589]
330+
* Add Jina AI API to do inference for Embedding and Rerank models {es-pull}118652[#118652]
331+
* Add enterprise license check for Inference API actions {es-pull}119893[#119893]
332+
* Adding chunking settings to `IbmWatsonxService` {es-pull}114914[#114914]
333+
* Adding default endpoint for Elastic Rerank {es-pull}117939[#117939]
334+
* Adding endpoint creation validation for all task types to remaining services {es-pull}115020[#115020]
335+
* Check for presence of error object when validating streaming responses from integrations in the inference API {es-pull}118375[#118375]
336+
* Ignore failures from renormalizing buckets in read-only index {es-pull}118674[#118674]
337+
* Inference duration and error metrics {es-pull}115876[#115876]
338+
* Migrate stream to core error parsing {es-pull}120722[#120722]
339+
* Remove all mentions of eis and gateway and deprecate flags that do {es-pull}116692[#116692]
340+
* Remove deprecated sort from reindex operation within dataframe analytics procedure {es-pull}117606[#117606]
341+
* Retry on `ClusterBlockException` on transform destination index {es-pull}118194[#118194]
342+
343+
Mapping::
344+
* Add Optional Source Filtering to Source Loaders {es-pull}113827[#113827]
345+
346+
Network::
347+
* Allow http unsafe buffers by default {es-pull}116115[#116115]
348+
* Http stream activity tracker and exceptions handling {es-pull}119564[#119564]
349+
* Remove HTTP content copies {es-pull}117303[#117303]
350+
* `ConnectTransportException` returns retryable BAD_GATEWAY {es-pull}118681[#118681] (issue: {es-issue}118320[#118320])
351+
352+
Ranking::
353+
* Set default reranker for text similarity reranker to Elastic reranker {es-pull}120551[#120551]
354+
355+
Search::
356+
* Add match support for `semantic_text` fields {es-pull}117839[#117839]
357+
* Add support for `sparse_vector` queries against `semantic_text` fields {es-pull}118617[#118617]
358+
* Add support for knn vector queries on `semantic_text` fields {es-pull}119011[#119011]
359+
* Adding linear retriever to support weighted sums of sub-retrievers {es-pull}120222[#120222]
360+
* Feat: add a user-configurable timeout parameter to the `_resolve/cluster` API {es-pull}120542[#120542]
361+
* Make semantic text part of the text family {es-pull}119792[#119792]
362+
* Only aggregations require at least one shard request {es-pull}115314[#115314]
363+
* Prevent data nodes from sending stack traces to coordinator when `error_trace=false` {es-pull}118266[#118266]
364+
* Propagate status codes from shard failures appropriately {es-pull}118016[#118016] (issue: {es-issue}118482[#118482])
365+
366+
Snapshot/Restore::
367+
* Add IMDSv2 support to `repository-s3` {es-pull}117748[#117748] (issue: {es-issue}105135[#105135])
368+
369+
Store::
370+
* Abort pending deletion on `IndicesService` close {es-pull}123569[#123569]
371+
372+
TSDB::
373+
* Increase field limit for OTel metrics to 10 000 {es-pull}120591[#120591]
374+
375+
Transform::
376+
* Add support for `extended_stats` {es-pull}120340[#120340]
377+
* Auto-migrate `max_page_search_size` {es-pull}119348[#119348]
378+
* Create upgrade mode {es-pull}117858[#117858]
379+
* Wait while index is blocked {es-pull}119542[#119542]
380+
* [Deprecation] Add `transform_ids` to outdated index {es-pull}120821[#120821]
381+
382+
Vector Search::
383+
* Even better(er) binary quantization {es-pull}117994[#117994]
384+
* Speed up bit compared with floats or bytes script operations {es-pull}117199[#117199]
385+
386+
[[feature-8.18.0]]
387+
[float]
388+
=== New features
389+
390+
CRUD::
391+
* Metrics for indexing failures due to version conflicts {es-pull}119067[#119067]
392+
393+
ES|QL::
394+
* ESQL - Add Match function options {es-pull}120360[#120360]
395+
* ESQL - Allow full text functions disjunctions for non-full text functions {es-pull}120291[#120291]
396+
* ESQL: Enable async get to support formatting {es-pull}111104[#111104] (issue: {es-issue}110926[#110926])
397+
* Expand type compatibility for match function and operator {es-pull}117555[#117555]
398+
* ST_EXTENT aggregation {es-pull}117451[#117451] (issue: {es-issue}104659[#104659])
399+
* Support ST_ENVELOPE and related (ST_XMIN, ST_XMAX, ST_YMIN, ST_YMAX) functions {es-pull}116964[#116964] (issue: {es-issue}104875[#104875])
400+
401+
Highlighting::
402+
* Add Highlighter for Semantic Text Fields {es-pull}118064[#118064]
403+
404+
Infra/Core::
405+
* Infrastructure for assuming cluster features in the next major version {es-pull}118143[#118143]
406+
407+
Machine Learning::
408+
* ES|QL categorize with multiple groupings {es-pull}118173[#118173]
409+
* Support mTLS for the Elastic Inference Service integration inside the inference API {es-pull}119679[#119679]
410+
* [Inference API] Add node-local rate limiting for the inference API {es-pull}120400[#120400]
411+
412+
Mapping::
413+
* Add option to store `sparse_vector` outside `_source` {es-pull}117917[#117917]
414+
* Release semantic_text as a GA feature {es-pull}124670[#124670]
415+
416+
Ranking::
417+
* Add a generic `rescorer` retriever based on the search request's rescore functionality {es-pull}118585[#118585] (issue: {es-issue}118327[#118327])
418+
419+
Relevance::
420+
* Add Multi-Field Support for Semantic Text Fields {es-pull}120128[#120128]
421+
422+
Vector Search::
423+
* Add new experimental `rank_vectors` mapping for late-interaction second order ranking {es-pull}118804[#118804]
424+
* KNN vector rescoring for quantized vectors {es-pull}116663[#116663]
425+
* Mark bbq indices as GA and add rolling upgrade integration tests {es-pull}121105[#121105]
426+
* [8.x] Add new experimental `rank_vectors` mapping for late-interaction second order ranking {es-pull}119601[#119601]
427+
428+
[[upgrade-8.18.0]]
429+
[float]
430+
=== Upgrades
431+
432+
Infra/Core::
433+
* Bump major version for feature migration system indices {es-pull}117243[#117243]
434+
* Permanently switch from Java SecurityManager to Entitlements. The Java SecurityManager has been deprecated since Java 17, and it is now completely disabled in Java 24. In order to retain an similar level of protection, Elasticsearch implemented its own protection mechanism, Entitlements. Starting with this version, Entitlements will permanently replace the Java SecurityManager. {es-pull}125073[#125073]
435+
* Update ASM 9.7 -> 9.7.1 to support JDK 24 {es-pull}118094[#118094]
436+
437+
Machine Learning::
438+
* Automatically rollover legacy .ml-anomalies indices {es-pull}120885[#120885]
439+
* Automatically rollover legacy ml indices {es-pull}120405[#120405]
440+
* Change the auditor to write via an alias {es-pull}120064[#120064]
441+
* Check if the anomaly results index has been rolled over {es-pull}125404[#125404]
442+
* Update minimum supported snapshot version for Machine Learning jobs to 8.3.0 {es-pull}118166[#118166]
443+
444+
Packaging::
445+
* Update bundled JDK to Java 24 {es-pull}125159[#125159]
446+
447+
Search::
448+
* Upgrade to Lucene 9.12.1 {es-pull}118300[#118300]
449+
450+
Watcher::
451+
* Script for migrating `.watches` and `.triggered_watches` indices {es-pull}120371[#120371]
452+
8453

‎docs/reference/release-notes/highlights.asciidoc

+7
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,13 @@ Also fix https://github.com/elastic/elasticsearch/issues/121185
6363

6464
{es-pull}121193[#121193]
6565

66+
[discrete]
67+
[[release_semantic_text_as_ga_feature]]
68+
=== Release semantic_text as a GA feature
69+
semantic_text is now an official GA (generally available) feature! This field type allows you to easily set up and perform semantic search with minimal ramp up time.
70+
71+
{es-pull}124670[#124670]
72+
6673
// end::notable-highlights[]
6774

6875

0 commit comments

Comments
 (0)
Please sign in to comment.