Skip to content
2 changes: 2 additions & 0 deletions docs/reference/release-notes.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

This section summarizes the changes in each release.

* <<release-notes-8.4.3>>
* <<release-notes-8.4.2>>
* <<release-notes-8.4.1>>
* <<release-notes-8.4.0>>
Expand All @@ -31,6 +32,7 @@ This section summarizes the changes in each release.

--

include::release-notes/8.4.3.asciidoc[]
include::release-notes/8.4.2.asciidoc[]
include::release-notes/8.4.1.asciidoc[]
include::release-notes/8.4.0.asciidoc[]
Expand Down
25 changes: 25 additions & 0 deletions docs/reference/release-notes/8.4.3.asciidoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[[release-notes-8.4.3]]
== {es} version 8.4.3

coming[8.4.3]

Also see <<breaking-changes-8.4,Breaking changes in 8.4>>.

[[bug-8.4.3]]
[float]
=== Bug fixes

Infra/Core::
* Fix file permission errors to avoid repeated error save loops on Windows {es-pull}90271[#90271] (issue: {es-issue}90222[#90222])

Ingest Node::
* Prevent serialization errors in the nodes stats API {es-pull}90319[#90319] (issue: {es-issue}77973[#77973])

[[regression-8.4.3]]
[float]
=== Regressions

Ranking::
* Ensure `cross_fields` always uses valid term statistics {es-pull}90314[#90314]


14 changes: 13 additions & 1 deletion docs/reference/release-notes/highlights.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ from 250ms to 30ms.
=== Minimum conditions for the rollover API and ILM actions
The rollover API and ILM actions now support minimum conditions for rollover.

Minimum conditions prevent rollover from occuring until they are met. That is, an index
Minimum conditions prevent rollover from occurring until they are met. That is, an index
will rollover once one or more max conditions are satisfied and all min conditions are satisfied.

As an example, the following ILM policy would roll an index over if it is at least 7 days old or
Expand Down Expand Up @@ -125,6 +125,18 @@ the original documents, it's good enough for features like reindexing data.

{es-pull}85649[#85649]

[discrete]
[[errors_with_cross_fields_query_type]]
=== Errors with the `cross_fields` query type
The {es} 8.4.2 release introduced a bug that may fail queries using the
`cross_fields` type at search time with an error message containing
`totalTermFreq must be at least docFreq`. If you run queries that use
the
{ref}/query-dsl-multi-match-query.html#type-cross-fields[`cross_fields` type],
we strongly recommend upgrading to 8.4.3 to avoid hitting this bug.

{es-pull}90314[#90314]

// end::notable-highlights[]