Skip to content

Commit 79dc135

Browse files
author
elasticsearchmachine
committed
Forward port release notes for v8.17.1
1 parent dc66c15 commit 79dc135

File tree

3 files changed

+97
-6
lines changed

3 files changed

+97
-6
lines changed

docs/reference/release-notes.asciidoc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
This section summarizes the changes in each release.
88

99
* <<release-notes-8.18.0>>
10+
* <<release-notes-8.17.1>>
1011
* <<release-notes-8.17.0>>
12+
* <<release-notes-8.16.3>>
1113
* <<release-notes-8.16.2>>
1214
* <<release-notes-8.16.1>>
1315
* <<release-notes-8.16.0>>
@@ -81,7 +83,9 @@ This section summarizes the changes in each release.
8183
--
8284

8385
include::release-notes/8.18.0.asciidoc[]
86+
include::release-notes/8.17.1.asciidoc[]
8487
include::release-notes/8.17.0.asciidoc[]
88+
include::release-notes/8.16.3.asciidoc[]
8589
include::release-notes/8.16.2.asciidoc[]
8690
include::release-notes/8.16.1.asciidoc[]
8791
include::release-notes/8.16.0.asciidoc[]
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
[[release-notes-8.17.1]]
2+
== {es} version 8.17.1
3+
4+
Also see <<breaking-changes-8.17,Breaking changes in 8.17>>.
5+
6+
[[bug-8.17.1]]
7+
[float]
8+
=== Bug fixes
9+
10+
Aggregations::
11+
* Fix moving function linear weighted avg {es-pull}118435[#118435] (issue: {es-issue}113751[#113751])
12+
13+
CCS::
14+
* Resolve/cluster should mark remotes as not connected when a security exception is thrown {es-pull}119793[#119793]
15+
16+
Data streams::
17+
* Add missing traces ilm policy for OTel traces data streams {es-pull}119449[#119449]
18+
19+
Downsampling::
20+
* Handle `index.mapping.ignore_malformed` in downsampling {es-pull}119134[#119134] (issue: {es-issue}119075[#119075])
21+
* Support flattened field with downsampling {es-pull}118816[#118816] (issue: {es-issue}116319[#116319])
22+
23+
ES|QL::
24+
* Allow DATE_PARSE to read the timezones {es-pull}118603[#118603] (issue: {es-issue}117680[#117680])
25+
* Fix ESQL async get while task is being cancelled {es-pull}119897[#119897]
26+
* Fix RLIKE folding with (unsupported) case insensitive pattern {es-pull}118454[#118454]
27+
28+
ILM+SLM::
29+
* Add missing timeouts to rest-api-spec ILM APIs {es-pull}118837[#118837]
30+
* Add missing timeouts to rest-api-spec SLM APIs {es-pull}118958[#118958]
31+
32+
Infra/Node Lifecycle::
33+
* Add missing timeouts to rest-api-spec shutdown APIs {es-pull}118921[#118921]
34+
35+
Infra/REST API::
36+
* Add missing parameter to `xpack.info` rest-api-spec {es-pull}118954[#118954]
37+
38+
Ingest Node::
39+
* Add missing timeouts to rest-api-spec ingest APIs {es-pull}118844[#118844]
40+
* Expose BwC enrich cache setting in plugin {es-pull}119131[#119131]
41+
* Fixing `GetDatabaseConfigurationAction` response serialization {es-pull}119233[#119233]
42+
43+
License::
44+
* Remove unsupported timeout from rest-api-spec license API {es-pull}118919[#118919]
45+
46+
Machine Learning::
47+
* Fix loss of context in the inference API for streaming APIs {es-pull}118999[#118999] (issue: {es-issue}119000[#119000])
48+
* Fix spike detection for short spikes at the tail of the data {es-pull}119637[#119637]
49+
* Fix timeout ingesting an empty string into a `semantic_text` field {es-pull}117840[#117840]
50+
* [Inference API] Fix bug checking for e5 or reranker default IDs {es-pull}119797[#119797]
51+
52+
Search::
53+
* ESQL: `connect_transport_exception` should be thrown instead of `verification_exception` when ENRICH-ing if remote is disconnected {es-pull}119750[#119750]
54+
* Fix: do not let `_resolve/cluster` hang if remote is unresponsive {es-pull}119516[#119516]
55+
* Handle exceptions in query phase can match {es-pull}117469[#117469] (issue: {es-issue}104994[#104994])
56+
57+
[[enhancement-8.17.1]]
58+
[float]
59+
=== Enhancements
60+
61+
Authorization::
62+
* Improve handling of nested fields in index reader wrappers {es-pull}118757[#118757]
63+
64+
Data streams::
65+
* Add mapping for `event_name` for OTel logs {es-pull}119495[#119495]
66+
67+
Monitoring::
68+
* Addition of `tier_preference`, `creation_date` and `version` fields in Elasticsearch monitoring template {es-pull}117851[#117851]
69+
70+
[[feature-8.17.1]]
71+
[float]
72+
=== New features
73+
74+
Logs::
75+
* Make logsdb general available {es-pull}118559[#118559]
76+
77+

docs/reference/release-notes/highlights.asciidoc

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,23 @@ Other versions:
3232

3333
endif::[]
3434

35-
// The notable-highlights tag marks entries that
36-
// should be featured in the Stack Installation and Upgrade Guide:
3735
// tag::notable-highlights[]
38-
// [discrete]
39-
// === Heading
40-
//
41-
// Description.
36+
37+
[discrete]
38+
[[add_new_experimental_rank_vectors_mapping_for_late_interaction_second_order_ranking]]
39+
=== Add new experimental `rank_vectors` mapping for late-interaction second order ranking
40+
Late-interaction models are powerful rerankers. While their size and overall cost doesn't lend itself for HNSW indexing, utilizing them as second order reranking can provide excellent boosts in relevance. The new `rank_vectors` mapping allows for rescoring over new and novel multi-vector late-interaction models like ColBERT or ColPali.
41+
42+
{es-pull}118804[#118804]
43+
44+
[discrete]
45+
[[8_x_add_new_experimental_rank_vectors_mapping_for_late_interaction_second_order_ranking]]
46+
=== [8.x] Add new experimental `rank_vectors` mapping for late-interaction second order ranking
47+
Backports the following commits to 8.x: - Add new experimental
48+
rank_vectors mapping for late-interaction second order ranking (#118804)
49+
50+
{es-pull}119601[#119601]
51+
4252
// end::notable-highlights[]
4353

4454

0 commit comments

Comments
 (0)