8.0.0.asciidoc 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711
  1. [[release-notes-8.0.0]]
  2. == {es} version 8.0.0
  3. The following list are changes in 8.0.0 as compared to 7.17.0, and combines
  4. release notes from the 8.0.0-alpha1, -alpha2, -beta1, -rc1 and -rc2 releases.
  5. Also see <<breaking-changes-8.0,Breaking changes in 8.0>>.
  6. [[known-issues-8.0.0]]
  7. [float]
  8. === Known issues
  9. * If you installed {es} from an archive on an aarch64 platform like Linux ARM or macOS M1, the
  10. `elastic` user password and {kib} enrollment token are not generated
  11. automatically when starting your node for the first time.
  12. +
  13. --
  14. After the node starts, generate the `elastic` password with the
  15. <<reset-password,`bin/elasticsearch-reset-password`>> tool:
  16. [source,bash]
  17. ----
  18. bin/elasticsearch-reset-password -u elastic
  19. ----
  20. Then, create an enrollment token for {kib} with the
  21. <<create-enrollment-token,`bin/elasticsearch-create-enrollment-token`>> tool:
  22. [source,bash]
  23. ----
  24. bin/elasticsearch-create-enrollment-token -s kibana
  25. ----
  26. --
  27. [[breaking-8.0.0]]
  28. [float]
  29. === Breaking changes
  30. Aggregations::
  31. * Percentiles aggregation: disallow specifying same percentile values twice {es-pull}52257[#52257] (issue: {es-issue}51871[#51871])
  32. * Remove adjacency matrix setting {es-pull}46327[#46327] (issues: {es-issue}46257[#46257], {es-issue}46324[#46324])
  33. * Remove `MovingAverage` pipeline aggregation {es-pull}39328[#39328]
  34. * Remove deprecated `_time` and `_term` sort orders {es-pull}39450[#39450]
  35. * Remove deprecated date histo interval {es-pull}75000[#75000]
  36. Allocation::
  37. * Require single data nodes to respect disk watermarks {es-pull}73737[#73737] (issues: {es-issue}55805[#55805], {es-issue}73733[#73733])
  38. * Remove `include_relocations` setting {es-pull}47717[#47717] (issues: {es-issue}46079[#46079], {es-issue}47443[#47443])
  39. Analysis::
  40. * Cleanup versioned deprecations in analysis {es-pull}41560[#41560] (issue: {es-issue}41164[#41164])
  41. * Remove preconfigured `delimited_payload_filter` {es-pull}43686[#43686] (issues: {es-issue}41560[#41560], {es-issue}43684[#43684])
  42. Authentication::
  43. * Always add file and native realms unless explicitly disabled {es-pull}69096[#69096] (issue: {es-issue}50892[#50892])
  44. * Do not set a NameID format in Policy by default {es-pull}44090[#44090] (issue: {es-issue}40353[#40353])
  45. * Make order setting mandatory for Realm config {es-pull}51195[#51195] (issue: {es-issue}37614[#37614])
  46. CCR::
  47. * Avoid auto following leader system indices in CCR {es-pull}72815[#72815] (issue: {es-issue}67686[#67686])
  48. Cluster Coordination::
  49. * Remove join timeout {es-pull}60873[#60873] (issue: {es-issue}60872[#60872])
  50. * Remove node filters for voting config exclusions {es-pull}55673[#55673] (issues: {es-issue}47990[#47990], {es-issue}50836[#50836])
  51. * Remove support for delaying state recovery pending master {es-pull}53845[#53845] (issue: {es-issue}51806[#51806])
  52. Distributed::
  53. * Remove synced flush {es-pull}50882[#50882] (issues: {es-issue}50776[#50776], {es-issue}50835[#50835])
  54. * Remove the `cluster.remote.connect` setting {es-pull}54175[#54175] (issue: {es-issue}53924[#53924])
  55. Engine::
  56. * Force merge should reject requests with `only_expunge_deletes` and `max_num_segments` set {es-pull}44761[#44761] (issue: {es-issue}43102[#43102])
  57. * Remove per-type indexing stats {es-pull}47203[#47203] (issue: {es-issue}41059[#41059])
  58. * Remove translog retention settings {es-pull}51697[#51697] (issue: {es-issue}50775[#50775])
  59. Features/CAT APIs::
  60. * Remove the deprecated `local` parameter for `_cat/indices` {es-pull}64868[#64868] (issue: {es-issue}62198[#62198])
  61. * Remove the deprecated `local` parameter for `_cat/shards` {es-pull}64867[#64867] (issue: {es-issue}62197[#62197])
  62. Features/Features::
  63. * Remove deprecated `._tier` allocation filtering settings {es-pull}73074[#73074] (issue: {es-issue}72835[#72835])
  64. Features/ILM+SLM::
  65. * Add lower bound on `poll_interval` {es-pull}39593[#39593] (issue: {es-issue}39163[#39163])
  66. * Make the ILM `freeze` action a no-op {es-pull}77158[#77158] (issue: {es-issue}70192[#70192])
  67. * Always enforce default tier preference {es-pull}79751[#79751] (issue: {es-issue}76147[#76147])
  68. * Validate that snapshot repository exists for ILM policies at creation/update time {es-pull}78468[#78468] (issues: {es-issue}72957[#72957], {es-issue}77657[#77657])
  69. * Default `cluster.routing.allocation.enforce_default_tier_preference` to `true` {es-pull}79275[#79275] (issues: {es-issue}76147[#76147], {es-issue}79210[#79210])
  70. Features/Indices APIs::
  71. * Change `prefer_v2_templates` parameter to default to true {es-pull}55489[#55489] (issues: {es-issue}53101[#53101], {es-issue}55411[#55411])
  72. * Remove deprecated `_upgrade` API {es-pull}64732[#64732] (issue: {es-issue}21337[#21337])
  73. * Remove local parameter for get field mapping request {es-pull}55100[#55100] (issue: {es-issue}55099[#55099])
  74. * Remove `include_type_name` parameter from REST layer {es-pull}48632[#48632] (issue: {es-issue}41059[#41059])
  75. * Remove the `template` field in index templates {es-pull}49460[#49460] (issue: {es-issue}21009[#21009])
  76. * Remove endpoint for freezing indices {es-pull}78918[#78918] (issues: {es-issue}70192[#70192], {es-issue}77273[#77273])
  77. Features/Watcher::
  78. * Move watcher history to data stream {es-pull}64252[#64252]
  79. Geo::
  80. * Disallow creating `geo_shape` mappings with deprecated parameters {es-pull}70850[#70850] (issue: {es-issue}32039[#32039])
  81. * Remove bounding box query `type` parameter {es-pull}74536[#74536]
  82. Infra/Circuit Breakers::
  83. * Fixed synchronizing inflight breaker with internal variable {es-pull}40878[#40878]
  84. Infra/Core::
  85. * Limit processors by available processors {es-pull}44894[#44894] (issue: {es-issue}44889[#44889])
  86. * Remove `nodes/0` folder prefix from data path {es-pull}42489[#42489]
  87. * Remove `bootstrap.system_call_filter` setting {es-pull}72848[#72848]
  88. * Remove `fixed_auto_queue_size` threadpool type {es-pull}52280[#52280]
  89. * Remove `node.max_local_storage_nodes` {es-pull}42428[#42428] (issue: {es-issue}42426[#42426])
  90. * Remove camel case named date/time formats {es-pull}60044[#60044]
  91. * Remove legacy role settings {es-pull}71163[#71163] (issues: {es-issue}54998[#54998], {es-issue}66409[#66409], {es-issue}71143[#71143])
  92. * Remove `processors` setting {es-pull}45905[#45905] (issue: {es-issue}45855[#45855])
  93. * Remove the `local` parameter of `/_cat/nodes` {es-pull}50594[#50594] (issues: {es-issue}50088[#50088], {es-issue}50499[#50499])
  94. * Remove the listener thread pool {es-pull}53314[#53314] (issue: {es-issue}53049[#53049])
  95. * Remove the node local storage setting {es-pull}54381[#54381] (issue: {es-issue}54374[#54374])
  96. * Remove the `pidfile` setting {es-pull}45940[#45940] (issue: {es-issue}45938[#45938])
  97. * Removes `week_year` date format {es-pull}63384[#63384] (issue: {es-issue}60707[#60707])
  98. * System indices treated as restricted indices {es-pull}74212[#74212] (issue: {es-issue}69298[#69298])
  99. * Remove Joda dependency {es-pull}79007[#79007]
  100. * Remove Joda support from date formatters {es-pull}78990[#78990]
  101. * All system indices are hidden indices {es-pull}79512[#79512]
  102. Infra/Logging::
  103. * Remove slowlog level {es-pull}57591[#57591] (issue: {es-issue}56171[#56171])
  104. Infra/Plugins::
  105. * Remove deprecated basic license feature enablement settings {es-pull}56211[#56211] (issue: {es-issue}54745[#54745])
  106. Infra/REST API::
  107. * Remove content type required setting {es-pull}61043[#61043]
  108. * Remove deprecated endpoints containing `_xpack` {es-pull}48170[#48170] (issue: {es-issue}35958[#35958])
  109. * Remove deprecated endpoints of hot threads API {es-pull}55109[#55109] (issue: {es-issue}52640[#52640])
  110. * Allow parsing Content-Type and Accept headers with version {es-pull}61427[#61427]
  111. Infra/Resiliency::
  112. * Fail node containing ancient closed index {es-pull}44264[#44264] (issues: {es-issue}21830[#21830], {es-issue}41731[#41731], {es-issue}44230[#44230])
  113. Infra/Scripting::
  114. * Consolidate script parsing from object {es-pull}59507[#59507] (issue: {es-issue}59391[#59391])
  115. * Move `script_cache` into _nodes/stats {es-pull}59265[#59265] (issues: {es-issue}50152[#50152], {es-issue}59262[#59262])
  116. * Remove general cache settings {es-pull}59262[#59262] (issue: {es-issue}50152[#50152])
  117. Infra/Settings::
  118. * Change default value of `action.destructive_requires_name` to `true` {es-pull}66908[#66908] (issue: {es-issue}61074[#61074])
  119. * Forbid settings without a namespace {es-pull}45947[#45947] (issues: {es-issue}45905[#45905], {es-issue}45940[#45940])
  120. Ingest::
  121. * Remove default maxmind GeoIP databases from distribution {es-pull}78362[#78362] (issue: {es-issue}68920[#68920])
  122. License::
  123. * Set `xpack.security.enabled` to true for all licenses {es-pull}72300[#72300]
  124. * Enforce license expiration {es-pull}79671[#79671]
  125. Machine Learning::
  126. * Remove deprecated `_xpack` endpoints {es-pull}59870[#59870] (issues: {es-issue}35958[#35958], {es-issue}48170[#48170])
  127. * Remove the ability to update datafeed's `job_id` {es-pull}44752[#44752] (issue: {es-issue}44616[#44616])
  128. * Remove `allow_no_datafeeds` and `allow_no_jobs` parameters from APIs {es-pull}80048[#80048] (issue: {es-issue}60732[#60732])
  129. Mapping::
  130. * Remove `boost` mapping parameter {es-pull}62639[#62639] (issue: {es-issue}62623[#62623])
  131. * Remove support for chained multi-fields {es-pull}42333[#42333] (issues: {es-issue}41267[#41267], {es-issue}41926[#41926])
  132. * Remove support for string in `unmapped_type` {es-pull}45675[#45675]
  133. * Removes typed URLs from mapping APIs {es-pull}41676[#41676]
  134. Network::
  135. * Remove client feature tracking {es-pull}44929[#44929] (issues: {es-issue}31020[#31020], {es-issue}42538[#42538], {es-issue}44667[#44667])
  136. * Remove escape hatch permitting incompatible builds {es-pull}65753[#65753] (issues: {es-issue}65249[#65249], {es-issue}65601[#65601])
  137. Packaging::
  138. * Remove SysV init support {es-pull}51716[#51716] (issue: {es-issue}51480[#51480])
  139. * Remove support for `JAVA_HOME` {es-pull}69149[#69149] (issue: {es-issue}55820[#55820])
  140. * Remove no-jdk distributions {es-pull}76896[#76896] (issue: {es-issue}65109[#65109])
  141. * Require Java 17 for running Elasticsearch {es-pull}79873[#79873]
  142. Recovery::
  143. * Remove dangling index auto import functionality {es-pull}59698[#59698] (issue: {es-issue}48366[#48366])
  144. Reindex::
  145. * Reindex from Remote encoding {es-pull}41007[#41007] (issue: {es-issue}40303[#40303])
  146. * Reindex remove outer level size {es-pull}43373[#43373] (issues: {es-issue}24344[#24344], {es-issue}41894[#41894])
  147. Rollup::
  148. * `RollupStart` endpoint should return OK if job already started {es-pull}41502[#41502] (issues: {es-issue}35928[#35928], {es-issue}39845[#39845])
  149. Search::
  150. * Decouple shard allocation awareness from search and get requests {es-pull}45735[#45735] (issue: {es-issue}43453[#43453])
  151. * Fix range query on date fields for number inputs {es-pull}63692[#63692] (issue: {es-issue}63680[#63680])
  152. * Make fuzziness reject illegal values earlier {es-pull}33511[#33511]
  153. * Make remote cluster resolution stricter {es-pull}40419[#40419] (issue: {es-issue}37863[#37863])
  154. * Parse empty first line in msearch request body as action metadata {es-pull}41011[#41011] (issue: {es-issue}39841[#39841])
  155. * Remove `CommonTermsQuery` and `cutoff_frequency` param {es-pull}42654[#42654] (issue: {es-issue}37096[#37096])
  156. * Remove `type` query {es-pull}47207[#47207] (issue: {es-issue}41059[#41059])
  157. * Remove `use_field_mapping` format option for docvalue fields {es-pull}55622[#55622]
  158. * Remove deprecated `SimpleQueryStringBuilder` parameters {es-pull}57200[#57200]
  159. * Remove deprecated `search.remote` settings {es-pull}42381[#42381] (issues: {es-issue}33413[#33413], {es-issue}38556[#38556])
  160. * Remove deprecated sort options: `nested_path` and `nested_filter` {es-pull}42809[#42809] (issue: {es-issue}27098[#27098])
  161. * Remove deprecated vector functions {es-pull}48725[#48725] (issue: {es-issue}48604[#48604])
  162. * Remove support for `_type` in searches {es-pull}68564[#68564] (issues: {es-issue}41059[#41059], {es-issue}68311[#68311])
  163. * Remove support for sparse vectors {es-pull}48781[#48781] (issue: {es-issue}48368[#48368])
  164. * Remove the object format for `indices_boost` {es-pull}55078[#55078]
  165. * Removes type from `TermVectors` APIs {es-pull}42198[#42198] (issue: {es-issue}41059[#41059])
  166. * Removes typed endpoint from search and related APIs {es-pull}41640[#41640]
  167. * Set max allowed size for stored async response {es-pull}74455[#74455] (issue: {es-issue}67594[#67594])
  168. * `indices.query.bool.max_clause_count` now limits all query clauses {es-pull}75297[#75297]
  169. Security::
  170. * Remove obsolete security settings {es-pull}40496[#40496]
  171. * Remove support of creating CA on the fly when generating certificates {es-pull}65590[#65590] (issue: {es-issue}61884[#61884])
  172. * Remove the `id` field from the `InvalidateApiKey` API {es-pull}66671[#66671] (issue: {es-issue}66317[#66317])
  173. * Remove the migrate tool {es-pull}42174[#42174]
  174. * Compress audit logs {es-pull}64472[#64472] (issue: {es-issue}63843[#63843])
  175. * Remove insecure settings {es-pull}46147[#46147] (issue: {es-issue}45947[#45947])
  176. * Remove `kibana_dashboard_only_user` reserved role {es-pull}76507[#76507]
  177. Snapshot/Restore::
  178. * Blob store compress default to `true` {es-pull}40033[#40033]
  179. * Get snapshots support for multiple repositories {es-pull}42090[#42090] (issue: {es-issue}41210[#41210])
  180. * Remove repository stats API {es-pull}62309[#62309] (issue: {es-issue}62297[#62297])
  181. * Remove frozen cache setting leniency {es-pull}71013[#71013] (issue: {es-issue}70341[#70341])
  182. * Adjust snapshot index resolution behavior to be more intuitive {es-pull}79670[#79670] (issue: {es-issue}78320[#78320])
  183. TLS::
  184. * Reject misconfigured/ambiguous SSL server config {es-pull}45892[#45892]
  185. * Remove support for configurable PKCS#11 keystores {es-pull}75404[#75404]
  186. * Remove the client transport profile filter {es-pull}43236[#43236]
  187. [[breaking-java-8.0.0]]
  188. [float]
  189. === Breaking Java changes
  190. Authentication::
  191. * Mandate x-pack REST handler installed {es-pull}71061[#71061] (issue: {es-issue}70523[#70523])
  192. CCR::
  193. * Remove the `CcrClient` {es-pull}42816[#42816]
  194. CRUD::
  195. * Remove types from `BulkRequest` {es-pull}46983[#46983] (issue: {es-issue}41059[#41059])
  196. * Remove `Client.prepareIndex(index, type, id)` method {es-pull}48443[#48443]
  197. Client::
  198. * Remove `SecurityClient` from x-pack {es-pull}42471[#42471]
  199. Features/ILM+SLM::
  200. * Remove the `ILMClient` {es-pull}42817[#42817]
  201. Features/Monitoring::
  202. * Remove `MonitoringClient` from x-pack {es-pull}42770[#42770]
  203. Features/Watcher::
  204. * Remove `WatcherClient` from x-pack {es-pull}42815[#42815]
  205. Infra/Core::
  206. * Remove `XPackClient` from x-pack {es-pull}42729[#42729]
  207. * Remove the transport client {es-pull}42538[#42538]
  208. * Remove transport client from x-pack {es-pull}42202[#42202]
  209. Infra/REST API::
  210. * Copy HTTP headers to `ThreadContext` strictly {es-pull}45945[#45945]
  211. Machine Learning::
  212. * Remove the `MachineLearningClient` {es-pull}43108[#43108]
  213. Mapping::
  214. * Remove type filter from `GetMappings` API {es-pull}47364[#47364] (issue: {es-issue}41059[#41059])
  215. * Remove `type` parameter from `PutMappingRequest.buildFromSimplifiedDef()` {es-pull}50844[#50844] (issue: {es-issue}41059[#41059])
  216. * Remove unused parameter from `MetadataFieldMapper.TypeParser#getDefault()` {es-pull}51219[#51219]
  217. * Remove `type` parameter from `CIR.mapping(type, object...)` {es-pull}50739[#50739] (issue: {es-issue}41059[#41059])
  218. Search::
  219. * Removes types from `SearchRequest` and `QueryShardContext` {es-pull}42112[#42112]
  220. Snapshot/Restore::
  221. * Remove deprecated repository methods {es-pull}42359[#42359] (issue: {es-issue}42213[#42213])
  222. [[deprecation-8.0.0]]
  223. [float]
  224. === Deprecations
  225. Authentication::
  226. * Deprecate setup-passwords tool {es-pull}76902[#76902]
  227. CRUD::
  228. * Remove `indices_segments` 'verbose' parameter {es-pull}78451[#78451] (issue: {es-issue}75955[#75955])
  229. Engine::
  230. * Deprecate setting `max_merge_at_once_explicit` {es-pull}80574[#80574]
  231. Machine Learning::
  232. * Deprecate `estimated_heap_memory_usage_bytes` and replace with `model_size_bytes` {es-pull}80554[#80554]
  233. Monitoring::
  234. * Add deprecation info API entries for deprecated monitoring settings {es-pull}78799[#78799]
  235. * Automatically install monitoring templates at plugin initialization {es-pull}78350[#78350]
  236. * Remove Monitoring ingest pipelines {es-pull}77459[#77459] (issue: {es-issue}50770[#50770])
  237. Search::
  238. * Configure `IndexSearcher.maxClauseCount()` based on node characteristics {es-pull}81525[#81525] (issue: {es-issue}46433[#46433])
  239. Transform::
  240. * Improve transform deprecation messages {es-pull}81847[#81847] (issues: {es-issue}81521[#81521], {es-issue}81523[#81523])
  241. [[feature-8.0.0]]
  242. [float]
  243. === New features
  244. Security::
  245. * Auto-configure TLS for new nodes of new clusters {es-pull}77231[#77231] (issues: {es-issue}75144[#75144], {es-issue}75704[#75704])
  246. Snapshot/Restore::
  247. * Support IAM roles for Kubernetes service accounts {es-pull}81255[#81255] (issue: {es-issue}52625[#52625])
  248. Watcher::
  249. * Use `startsWith` rather than exact matches for Watcher history template names {es-pull}82396[#82396]
  250. [[enhancement-8.0.0]]
  251. [float]
  252. === Enhancements
  253. Analysis::
  254. * Move `reload_analyzers` endpoint to x-pack {es-pull}43559[#43559]
  255. Authentication::
  256. * Reset elastic password CLI tool {es-pull}74892[#74892] (issues: {es-issue}70113[#70113], {es-issue}74890[#74890])
  257. * Autogenerate and print elastic password on startup {es-pull}77291[#77291]
  258. * Enroll Kibana API uses Service Accounts {es-pull}76370[#76370]
  259. * Add `reset-kibana-system-user` tool {es-pull}77322[#77322]
  260. * New CLI tool to reset password for built-in users {es-pull}79709[#79709]
  261. * Auto-configure the `elastic` user password {es-pull}78306[#78306]
  262. Authorization::
  263. * Granting `kibana_system` reserved role access to "all" privileges to `.internal.preview.alerts*` index {es-pull}80889[#80889] (issues: {es-issue}76624[#76624], {es-issue}80746[#80746], {es-issue}116374[#116374])
  264. * Granting `kibana_system` reserved role access to "all" privileges to .preview.alerts* index {es-pull}80746[#80746]
  265. * Granting editor and viewer roles access to alerts-as-data indices {es-pull}81285[#81285]
  266. Cluster Coordination::
  267. * Prevent downgrades from 8.x to 7.x {es-pull}78586[#78586] (issues: {es-issue}42489[#42489], {es-issue}52414[#52414])
  268. * Prevent downgrades from 8.x to 7.x {es-pull}78638[#78638] (issues: {es-issue}42489[#42489], {es-issue}52414[#52414])
  269. * Make `TaskBatcher` less lock-heavy {es-pull}82227[#82227] (issue: {es-issue}77466[#77466])
  270. Data streams::
  271. * Data stream support read and write with custom routing and partition size {es-pull}74394[#74394] (issue: {es-issue}74390[#74390])
  272. EQL::
  273. * Add option for returning results from the tail of the stream {es-pull}64869[#64869] (issue: {es-issue}58646[#58646])
  274. * Introduce case insensitive variant `in~` {es-pull}68176[#68176] (issue: {es-issue}68172[#68172])
  275. * Optimize redundant `toString` {es-pull}71070[#71070] (issue: {es-issue}70681[#70681])
  276. Engine::
  277. * Always use soft-deletes in `InternalEngine` {es-pull}50415[#50415]
  278. * Remove translog retention policy {es-pull}51417[#51417] (issue: {es-issue}50775[#50775])
  279. Features/CAT APIs::
  280. * Remove `size` and add `time` params to `_cat/threadpool` {es-pull}55736[#55736] (issue: {es-issue}54478[#54478])
  281. Features/ILM+SLM::
  282. * Allow for setting the total shards per node in the Allocate ILM action {es-pull}76794[#76794] (issue: {es-issue}76775[#76775])
  283. * Inject migrate action regardless of allocate action {es-pull}79090[#79090] (issue: {es-issue}76147[#76147])
  284. * Make unchanged ILM policy updates into noop {es-pull}82240[#82240] (issue: {es-issue}82065[#82065])
  285. * Avoid unnecessary `LifecycleExecutionState` recalculation {es-pull}81558[#81558] (issues: {es-issue}77466[#77466], {es-issue}79692[#79692])
  286. Features/Indices APIs::
  287. * Batch rollover cluster state updates {es-pull}79945[#79945] (issues: {es-issue}77466[#77466], {es-issue}79782[#79782])
  288. * Reuse `MappingMetadata` instances in Metadata class {es-pull}80348[#80348] (issues: {es-issue}69772[#69772], {es-issue}77466[#77466])
  289. Features/Stats::
  290. * Add bulk stats track the bulk per shard {es-pull}52208[#52208] (issues: {es-issue}47345[#47345], {es-issue}50536[#50536])
  291. Features/Watcher::
  292. * Remove Watcher history clean up from monitoring {es-pull}67154[#67154]
  293. Infra/Core::
  294. * Remove aliases exist action {es-pull}43430[#43430]
  295. * Remove indices exists action {es-pull}43164[#43164]
  296. * Remove types exists action {es-pull}43344[#43344]
  297. * Retain reference to stdout for exceptional cases {es-pull}77460[#77460]
  298. * Check whether stdout is a real console {es-pull}79882[#79882]
  299. * Share int, long, float, double, and byte pages {es-pull}75053[#75053]
  300. * Revert "Deprecate resolution loss on date field (#78921)" {es-pull}79914[#79914] (issue: {es-issue}78921[#78921])
  301. * Add two missing entries to the deprecation information API {es-pull}80290[#80290] (issue: {es-issue}80233[#80233])
  302. * Prevent upgrades to 8.0 without first upgrading to the last 7.x release {es-pull}82321[#82321] (issue: {es-issue}81865[#81865])
  303. Infra/Logging::
  304. * Make Elasticsearch JSON logs ECS compliant {es-pull}47105[#47105] (issue: {es-issue}46119[#46119])
  305. Infra/REST API::
  306. * Allow for field declaration for future compatible versions {es-pull}69774[#69774] (issue: {es-issue}51816[#51816])
  307. * Introduce stability description to the REST API specification {es-pull}38413[#38413]
  308. * Parsing: Validate that fields are not registered twice {es-pull}70243[#70243]
  309. * Support response content-type with versioned media type {es-pull}65500[#65500] (issue: {es-issue}51816[#51816])
  310. * [REST API Compatibility] Typed endpoints for index and get APIs {es-pull}69131[#69131] (issue: {es-issue}54160[#54160])
  311. * [REST API Compatibility] Typed endpoints for put and get mapping and get field mappings {es-pull}71721[#71721] (issues: {es-issue}51816[#51816], {es-issue}54160[#54160])
  312. * [REST API Compatibility] Allow `copy_settings` flag for resize operations {es-pull}75184[#75184] (issues: {es-issue}38514[#38514], {es-issue}51816[#51816])
  313. * [REST API Compatibility] Allow for type in geo shape query {es-pull}74553[#74553] (issues: {es-issue}51816[#51816], {es-issue}54160[#54160])
  314. * [REST API Compatibility] Always return `adjust_pure_negative` value {es-pull}75182[#75182] (issues: {es-issue}49543[#49543], {es-issue}51816[#51816])
  315. * [REST API Compatibility] Clean up x-pack/plugin rest compat tests {es-pull}74701[#74701] (issue: {es-issue}51816[#51816])
  316. * [REST API Compatibility] Do not return `_doc` for empty mappings in template {es-pull}75448[#75448] (issues: {es-issue}51816[#51816], {es-issue}54160[#54160], {es-issue}70966[#70966], {es-issue}74544[#74544])
  317. * [REST API Compatibility] Dummy REST action for `indices.upgrade` API {es-pull}75136[#75136] (issue: {es-issue}51816[#51816])
  318. * [REST API Compatibility] REST Terms vector typed response {es-pull}73117[#73117]
  319. * [REST API Compatibility] Rename `BulkItemResponse.Failure` type field {es-pull}74937[#74937] (issue: {es-issue}51816[#51816])
  320. * [REST API Compatibility] Type metadata for docs used in simulate request {es-pull}74222[#74222] (issues: {es-issue}51816[#51816], {es-issue}54160[#54160])
  321. * [REST API Compatibility] Typed `TermLookups` {es-pull}74544[#74544] (issues: {es-issue}46943[#46943], {es-issue}51816[#51816], {es-issue}54160[#54160])
  322. * [REST API Compatibility] Typed and x-pack graph explore API {es-pull}74185[#74185] (issues: {es-issue}46935[#46935], {es-issue}51816[#51816], {es-issue}54160[#54160])
  323. * [REST API Compatibility] Typed endpoint for bulk API {es-pull}73571[#73571] (issue: {es-issue}51816[#51816])
  324. * [REST API Compatibility] Typed endpoint for multi-get API {es-pull}73878[#73878] (issue: {es-issue}51816[#51816])
  325. * [REST API Compatibility] Typed endpoints for `RestUpdateAction` and `RestDeleteAction` {es-pull}73115[#73115] (issues: {es-issue}51816[#51816], {es-issue}54160[#54160])
  326. * [REST API Compatibility] Typed endpoints for `get_source` API {es-pull}73957[#73957] (issues: {es-issue}46587[#46587], {es-issue}46931[#46931], {es-issue}51816[#51816])
  327. * [REST API Compatibility] Typed endpoints for explain API {es-pull}73901[#73901] (issue: {es-issue}51816[#51816])
  328. * [REST API Compatibility] Typed endpoints for search `_count` API {es-pull}73958[#73958] (issues: {es-issue}42112[#42112], {es-issue}51816[#51816])
  329. * [REST API Compatibility] Typed indexing stats {es-pull}74181[#74181] (issues: {es-issue}47203[#47203], {es-issue}51816[#51816], {es-issue}54160[#54160])
  330. * [REST API Compatibility] Types for percolate query API {es-pull}74698[#74698] (issues: {es-issue}46985[#46985], {es-issue}51816[#51816], {es-issue}54160[#54160], {es-issue}74689[#74689])
  331. * [REST API Compatibility] Validate query typed API {es-pull}74171[#74171] (issues: {es-issue}46927[#46927], {es-issue}51816[#51816], {es-issue}54160[#54160])
  332. * [REST API Compatibility] Voting config exclusion exception message {es-pull}75406[#75406] (issues: {es-issue}51816[#51816], {es-issue}55291[#55291])
  333. * [REST API Compatibility] `MoreLikeThisQuery` with types {es-pull}75123[#75123] (issues: {es-issue}42198[#42198], {es-issue}51816[#51816], {es-issue}54160[#54160])
  334. * [REST API Compatibility] Update and delete by query using size field {es-pull}69606[#69606]
  335. * [REST API Compatibility] Indicies boost in object format {es-pull}74422[#74422] (issues: {es-issue}51816[#51816], {es-issue}55078[#55078])
  336. * [REST API Compatibility] Typed endpoints for search and related endpoints {es-pull}72155[#72155] (issues: {es-issue}51816[#51816], {es-issue}54160[#54160])
  337. * [REST API Compatibility] Allow to use size `-1` {es-pull}75342[#75342] (issues: {es-issue}51816[#51816], {es-issue}69548[#69548], {es-issue}70209[#70209])
  338. * [REST API Compatibility] Ignore `use_field_mapping` option for docvalue {es-pull}74435[#74435] (issue: {es-issue}55622[#55622])
  339. * [REST API Compatibility] `_time` and `_term` sort orders {es-pull}74919[#74919] (issues: {es-issue}39450[#39450], {es-issue}51816[#51816])
  340. * [REST API Compatability] `template` parameter and field on PUT index template {es-pull}71238[#71238] (issues: {es-issue}49460[#49460], {es-issue}51816[#51816], {es-issue}68905[#68905])
  341. * [REST API Compatibility] Make query registration easier {es-pull}75722[#75722] (issue: {es-issue}51816[#51816])
  342. * [REST API Compatibility] Typed query {es-pull}75453[#75453] (issues: {es-issue}47207[#47207], {es-issue}51816[#51816], {es-issue}54160[#54160])
  343. * [REST API Compatibility] Deprecate the use of synced flush {es-pull}75372[#75372] (issues: {es-issue}50882[#50882], {es-issue}51816[#51816])
  344. * [REST API Compatibility] Licence `accept_enterprise` and response changes {es-pull}75479[#75479] (issues: {es-issue}50067[#50067], {es-issue}50735[#50735], {es-issue}51816[#51816], {es-issue}58217[#58217])
  345. Infra/Scripting::
  346. * Update `DeprecationMap` to `DynamicMap` {es-pull}56149[#56149] (issue: {es-issue}52103[#52103])
  347. * Add nio Buffers to Painless {es-pull}79870[#79870] (issue: {es-issue}79867[#79867])
  348. * Restore the scripting general cache {es-pull}79453[#79453] (issue: {es-issue}62899[#62899])
  349. Infra/Settings::
  350. * Fixed inconsistent `Setting.exist()` {es-pull}46603[#46603] (issue: {es-issue}41830[#41830])
  351. * Remove `index.optimize_auto_generated_id` setting (#27583) {es-pull}27600[#27600] (issue: {es-issue}27583[#27583])
  352. * Implement setting deduplication via string interning {es-pull}80493[#80493] (issues: {es-issue}77466[#77466], {es-issue}78892[#78892])
  353. Ingest::
  354. * Add support for `_meta` field to ingest pipelines {es-pull}76381[#76381]
  355. * Remove binary field after attachment processor execution {es-pull}79172[#79172]
  356. * Improving cache lookup to reduce recomputing / searches {es-pull}77259[#77259]
  357. * Extract more standard metadata from binary files {es-pull}78754[#78754] (issue: {es-issue}22339[#22339])
  358. License::
  359. * Add deprecated `accept_enterprise` param to `/_xpack` {es-pull}58220[#58220] (issue: {es-issue}58217[#58217])
  360. * Support `accept_enterprise` param in get license API {es-pull}50067[#50067] (issue: {es-issue}49474[#49474])
  361. * Enforce Transport TLS check on all licenses {es-pull}79602[#79602] (issue: {es-issue}75292[#75292])
  362. Machine Learning::
  363. * The Windows build platform for the {ml} C++ code now uses Visual Studio 2019 {ml-pull}1352[#1352]
  364. * The macOS build platform for the {ml} C++ code is now Mojave running Xcode 11.3.1,
  365. or Ubuntu 20.04 running clang 8 for cross compilation {ml-pull}1429[#1429]
  366. * Add a new application for evaluating PyTorch models. The app depends on LibTorch - the C++ front end to PyTorch - and performs inference on models stored in the TorchScript format {ml-pull}1902[#1902]
  367. * Adding new PUT trained model vocabulary endpoint {es-pull}77387[#77387]
  368. * Creating new PUT model definition part API {es-pull}76987[#76987]
  369. * Add inference time configuration overrides {es-pull}78441[#78441] (issue: {es-issue}77799[#77799])
  370. * Optimize source extraction for `categorize_text` aggregation {es-pull}79099[#79099]
  371. * The Linux build platform for the {ml} C++ code is now CentOS 7 running gcc 10.3. {ml-pull}2028[#2028]
  372. * Make ML indices hidden when the node becomes master {es-pull}77416[#77416] (issue: {es-issue}53674[#53674])
  373. * Add `deployment_stats` to trained model stats {es-pull}80531[#80531]
  374. * The setting `use_auto_machine_memory_percent` now defaults `max_model_memory_limit` {es-pull}80532[#80532] (issue: {es-issue}80415[#80415])
  375. Mapping::
  376. * Sparse vector to throw exception consistently {es-pull}62646[#62646]
  377. * Add support for configuring HNSW parameters {es-pull}79193[#79193] (issue: {es-issue}78473[#78473])
  378. * Extend `dense_vector` to support indexing vectors {es-pull}78491[#78491] (issue: {es-issue}78473[#78473])
  379. Monitoring::
  380. * Add previously removed Monitoring settings back for 8.0 {es-pull}78784[#78784]
  381. * Change Monitoring plugin cluster alerts to not install by default {es-pull}79657[#79657]
  382. * Adding default templates for Metricbeat ECS data {es-pull}81744[#81744]
  383. Network::
  384. * Enable LZ4 transport compression by default {es-pull}76326[#76326] (issue: {es-issue}73497[#73497])
  385. * Improve slow inbound handling to include response type {es-pull}80425[#80425]
  386. Packaging::
  387. * Make the Docker build more re-usable in Cloud {es-pull}50277[#50277] (issues: {es-issue}46166[#46166], {es-issue}49926[#49926])
  388. * Update docker-compose.yml to fix bootstrap check error {es-pull}47650[#47650]
  389. * Allow total memory to be overridden {es-pull}78750[#78750] (issue: {es-issue}65905[#65905])
  390. * Convert repository plugins to modules {es-pull}81870[#81870] (issue: {es-issue}81652[#81652])
  391. Recovery::
  392. * Use Lucene index in peer recovery and resync {es-pull}51189[#51189] (issue: {es-issue}50775[#50775])
  393. * Fix `PendingReplicationActions` submitting lots of `NOOP` tasks to `GENERIC` {es-pull}82092[#82092] (issues: {es-issue}77466[#77466], {es-issue}79837[#79837])
  394. Reindex::
  395. * Make reindexing managed by a persistent task {es-pull}43382[#43382] (issue: {es-issue}42612[#42612])
  396. * Reindex restart from checkpoint {es-pull}46055[#46055] (issue: {es-issue}42612[#42612])
  397. * Reindex search resiliency {es-pull}45497[#45497] (issues: {es-issue}42612[#42612], {es-issue}43187[#43187])
  398. * Reindex v2 rethrottle sliced fix {es-pull}46967[#46967] (issues: {es-issue}42612[#42612], {es-issue}46763[#46763])
  399. * Do not scroll if max docs is less than scroll size (update/delete by query) {es-pull}81654[#81654] (issue: {es-issue}54270[#54270])
  400. Rollup::
  401. * Adds support for `date_nanos` in Rollup Metric and `DateHistogram` Configs {es-pull}59349[#59349] (issue: {es-issue}44505[#44505])
  402. SQL::
  403. * Add text formatting support for multivalue {es-pull}68606[#68606]
  404. * Add xDBC and CLI support. QA CSV specs {es-pull}68966[#68966]
  405. * Export array values through result sets {es-pull}69512[#69512]
  406. * Improve alias resolution in sub-queries {es-pull}67216[#67216] (issue: {es-issue}56713[#56713])
  407. * Improve the optimization of null conditionals {es-pull}71192[#71192]
  408. * Push `WHERE` clause inside subqueries {es-pull}71362[#71362]
  409. * Use Java `String` methods for `LTRIM/RTRIM` {es-pull}57594[#57594]
  410. * QL: Make canonical form take into account children {es-pull}71266[#71266]
  411. * QL: Polish optimizer expression rule declaration {es-pull}71396[#71396]
  412. * QL: Propagate nullability constraints across conjunctions {es-pull}71187[#71187] (issue: {es-issue}70683[#70683])
  413. Search::
  414. * Completely disallow setting negative size in search {es-pull}70209[#70209] (issue: {es-issue}69548[#69548])
  415. * Make `0` as invalid value for `min_children` in `has_child` query {es-pull}41347[#41347]
  416. * Return error when remote indices are locally resolved {es-pull}74556[#74556] (issue: {es-issue}26247[#26247])
  417. * [REST API Compatibility] Nested path and filter sort options {es-pull}76022[#76022] (issues: {es-issue}42809[#42809], {es-issue}51816[#51816])
  418. * [REST API Compatibility] `CommonTermsQuery` and `cutoff_frequency` parameter {es-pull}75896[#75896] (issues: {es-issue}42654[#42654], {es-issue}51816[#51816])
  419. * [REST API Compatibility] Allow first empty line for `_msearch` {es-pull}75886[#75886] (issues: {es-issue}41011[#41011], {es-issue}51816[#51816])
  420. * Node level can match action {es-pull}78765[#78765]
  421. * TSDB: Add time series information to field caps {es-pull}78790[#78790] (issue: {es-issue}74660[#74660])
  422. * Add new kNN search endpoint {es-pull}79013[#79013] (issue: {es-issue}78473[#78473])
  423. * Disallow kNN searches on nested vector fields {es-pull}79403[#79403] (issue: {es-issue}78473[#78473])
  424. * Ensure kNN search respects authorization {es-pull}79693[#79693] (issue: {es-issue}78473[#78473])
  425. * Load kNN vectors format with mmapfs {es-pull}78724[#78724] (issue: {es-issue}78473[#78473])
  426. * Support cosine similarity in kNN search {es-pull}79500[#79500]
  427. * Node level can match action {es-pull}78765[#78765]
  428. * Check nested fields earlier in kNN search {es-pull}80516[#80516] (issue: {es-issue}78473[#78473])
  429. Security::
  430. * Add a tool for creating enrollment tokens {es-pull}74890[#74890]
  431. * Add the Enroll Kibana API {es-pull}72207[#72207]
  432. * Change default hashing algorithm for FIPS 140 {es-pull}55544[#55544]
  433. * Create enrollment token {es-pull}73573[#73573] (issues: {es-issue}71438[#71438], {es-issue}72129[#72129])
  434. * Enroll node API {es-pull}72129[#72129]
  435. * Configure security for the initial node CLI {es-pull}74868[#74868]
  436. * Generate and store password hash for elastic user {es-pull}76276[#76276] (issue: {es-issue}75310[#75310])
  437. * Set elastic password and generate enrollment token {es-pull}75816[#75816] (issue: {es-issue}75310[#75310])
  438. * Add `elasticsearch-enroll-node` tool {es-pull}77292[#77292]
  439. * Default hasher to `PBKDF2_STRETCH` on FIPS mode {es-pull}76274[#76274]
  440. * Add v7 `restCompat` for invalidating API key with the id field {es-pull}78664[#78664] (issue: {es-issue}66671[#66671])
  441. * Print enrollment token on startup {es-pull}78293[#78293]
  442. * Startup check for security implicit behavior change {es-pull}76879[#76879]
  443. * CLI tool to reconfigure nodes to enroll {es-pull}79690[#79690] (issue: {es-issue}7718[#7718])
  444. * Security auto-configuration for packaged installations {es-pull}75144[#75144] (issue: {es-issue}78306[#78306])
  445. Snapshot/Restore::
  446. * Introduce searchable snapshots index setting for cascade deletion of snapshots {es-pull}74977[#74977]
  447. * Unify blob store compress setting {es-pull}39346[#39346] (issue: {es-issue}39073[#39073])
  448. * Add recovery state tracking for searchable snapshots {es-pull}60505[#60505]
  449. * Allow listing older repositories {es-pull}78244[#78244]
  450. * Optimize SLM Policy Queries {es-pull}79341[#79341] (issue: {es-issue}79321[#79321])
  451. TLS::
  452. * Add `ChaCha20` TLS ciphers on Java 12+ {es-pull}42155[#42155]
  453. * Add support for `KeyStore` filters to `ssl-config` {es-pull}75407[#75407]
  454. * Update TLS ciphers and protocols for JDK 11 {es-pull}41808[#41808] (issues: {es-issue}38646[#38646], {es-issue}41385[#41385])
  455. Transform::
  456. * Prevent old beta transforms from starting {es-pull}79712[#79712]
  457. TSDB::
  458. * Automatically add timestamp mapper {es-pull}79136[#79136]
  459. * Create a coordinating node level reader for tsdb {es-pull}79197[#79197]
  460. * Fix TSDB shrink test in multi-version cluster {es-pull}79940[#79940] (issue: {es-issue}79936[#79936])
  461. * Do not allow shadowing metrics or dimensions {es-pull}79757[#79757]
  462. [[bug-8.0.0]]
  463. [float]
  464. === Bug fixes
  465. Aggregations::
  466. * Fix BWC issues for `x_pack/usage` {es-pull}55181[#55181] (issue: {es-issue}54847[#54847])
  467. * Fix `DoubleBounds` null serialization {es-pull}59475[#59475]
  468. * Fix `TopHitsAggregationBuilder` adding duplicate `_score` sort clauses {es-pull}42179[#42179] (issue: {es-issue}42154[#42154])
  469. * Fix `t_test` usage stats {es-pull}54753[#54753] (issue: {es-issue}54744[#54744])
  470. * Throw exception if legacy interval cannot be parsed in `DateIntervalWrapper` {es-pull}41972[#41972] (issue: {es-issue}41970[#41970])
  471. Autoscaling::
  472. * Autoscaling use adjusted total memory {es-pull}80528[#80528] (issue: {es-issue}78750[#78750])
  473. CCR::
  474. * Fix `AutoFollow` version checks {es-pull}73776[#73776] (issue: {es-issue}72935[#72935])
  475. Cluster Coordination::
  476. * Apply cluster states in system context {es-pull}53785[#53785] (issue: {es-issue}53751[#53751])
  477. Data streams::
  478. * Prohibit restoring a data stream alias with a conflicting write data stream {es-pull}81217[#81217] (issue: {es-issue}80976[#80976])
  479. Distributed::
  480. * Introduce `?wait_for_active_shards=index-setting` {es-pull}67158[#67158] (issue: {es-issue}66419[#66419])
  481. * Fixes to task result index mapping {es-pull}50359[#50359] (issue: {es-issue}50248[#50248])
  482. Features/CAT APIs::
  483. * Fix cat recovery display of bytes fields {es-pull}40379[#40379] (issue: {es-issue}40335[#40335])
  484. Features/ILM+SLM::
  485. * Ensuring that the `ShrinkAction` does not hang if total shards per node is too low {es-pull}76732[#76732] (issue: {es-issue}44070[#44070])
  486. * Less verbose serialization of snapshot failure in SLM metadata {es-pull}80942[#80942] (issue: {es-issue}77466[#77466])
  487. Features/Indices APIs::
  488. * Fix `ComposableIndexTemplate` equals when `composed_of` is null {es-pull}80864[#80864]
  489. Features/Java High Level REST Client::
  490. * The Java High Level Rest Client (HLRC) has been removed and replaced by a new
  491. {es} Java client. For migration steps, refer to
  492. {java-api-client}/migrate-hlrc.html[Migrate from the High Level Rest Client].
  493. Geo::
  494. * Preprocess polygon rings before processing it for decomposition {es-pull}59501[#59501] (issues: {es-issue}54441[#54441], {es-issue}59386[#59386])
  495. Infra/Core::
  496. * Add searchable snapshot cache folder to `NodeEnvironment` {es-pull}66297[#66297] (issue: {es-issue}65725[#65725])
  497. * CLI tools: Write errors to stderr instead of stdout {es-pull}45586[#45586] (issue: {es-issue}43260[#43260])
  498. * Precompute `ParsedMediaType` for XContentType {es-pull}67409[#67409]
  499. * Prevent stack overflow in rounding {es-pull}80450[#80450]
  500. Infra/Logging::
  501. * Fix NPE when logging null values in JSON {es-pull}53715[#53715] (issue: {es-issue}46702[#46702])
  502. * Fix stats in slow logs to be a escaped JSON {es-pull}44642[#44642]
  503. * Populate data stream fields when `xOpaqueId` not provided {es-pull}62156[#62156]
  504. Infra/REST API::
  505. * Do not allow spaces within `MediaType's` parameters {es-pull}64650[#64650] (issue: {es-issue}51816[#51816])
  506. * Handle incorrect header values {es-pull}64708[#64708] (issues: {es-issue}51816[#51816], {es-issue}64689[#64689])
  507. * Ignore media ranges when parsing {es-pull}64721[#64721] (issues: {es-issue}51816[#51816], {es-issue}64689[#64689])
  508. * `RestController` should not consume request content {es-pull}44902[#44902] (issue: {es-issue}37504[#37504])
  509. * Handle exceptions thrown from `RestCompatibleVersionHelper` {es-pull}80253[#80253] (issues: {es-issue}78214[#78214], {es-issue}79060[#79060])
  510. Infra/Scripting::
  511. * Change compound assignment structure to support string concatenation {es-pull}61825[#61825]
  512. * Fixes casting in constant folding {es-pull}61508[#61508]
  513. * Several minor Painless fixes {es-pull}61594[#61594]
  514. * Fix duplicated allow lists upon script engine creation {es-pull}82820[#82820] (issue: {es-issue}82778[#82778])
  515. Infra/Settings::
  516. * Stricter `UpdateSettingsRequest` parsing on the REST layer {es-pull}79227[#79227] (issue: {es-issue}29268[#29268])
  517. * Set Auto expand replica on deprecation log data stream {es-pull}79226[#79226] (issue: {es-issue}78991[#78991])
  518. Ingest::
  519. * Adjust default geoip logging to be less verbose {es-pull}81404[#81404] (issue: {es-issue}81356[#81356])
  520. Machine Learning::
  521. * Add timeout parameter for delete trained models API {es-pull}79739[#79739] (issue: {es-issue}77070[#77070])
  522. * Tone down ML unassigned job notifications {es-pull}79578[#79578] (issue: {es-issue}79270[#79270])
  523. * Use a new annotations index for future annotations {es-pull}79006[#79006] (issue: {es-issue}78439[#78439])
  524. * Set model state compatibility version to 8.0.0 {ml-pull}2139[#2139]
  525. * Check that `total_definition_length` is consistent before starting a deployment {es-pull}80553[#80553]
  526. * Fail inference processor more consistently on certain error types {es-pull}81475[#81475]
  527. * Optimize the job stats call to do fewer searches {es-pull}82362[#82362] (issue: {es-issue}82255[#82255])
  528. Mapping::
  529. * Remove assertions that mappings have one top-level key {es-pull}58779[#58779] (issue: {es-issue}58521[#58521])
  530. Packaging::
  531. * Suppress illegal access in plugin install {es-pull}41620[#41620] (issue: {es-issue}41478[#41478])
  532. Recovery::
  533. * Make shard started response handling only return after the cluster state update completes {es-pull}82790[#82790] (issue: {es-issue}81628[#81628])
  534. SQL::
  535. * Introduce dedicated node for `HAVING` declaration {es-pull}71279[#71279] (issue: {es-issue}69758[#69758])
  536. * Make `RestSqlQueryAction` thread-safe {es-pull}69901[#69901]
  537. Search::
  538. * Check for negative `from` values in search request body {es-pull}54953[#54953] (issue: {es-issue}54897[#54897])
  539. * Fix `VectorsFeatureSetUsage` serialization in BWC mode {es-pull}55399[#55399] (issue: {es-issue}55378[#55378])
  540. * Handle total hits equal to `track_total_hits` {es-pull}37907[#37907] (issue: {es-issue}37897[#37897])
  541. * Improve error msg for CCS request on node without remote cluster role {es-pull}60351[#60351] (issue: {es-issue}59683[#59683])
  542. * Remove unsafe assertion in wildcard field {es-pull}78966[#78966]
  543. Security::
  544. * Allow access to restricted system indices for reserved system roles {es-pull}76845[#76845]
  545. Snapshot/Restore::
  546. * Fix `GET /_snapshot/_all/_all` if there are no repos {es-pull}43558[#43558] (issue: {es-issue}43547[#43547])
  547. * Don't fill stack traces in `SnapshotShardFailure` {es-pull}80009[#80009] (issue: {es-issue}79718[#79718])
  548. * Remove custom metadata if there is nothing to restore {es-pull}81373[#81373] (issues: {es-issue}81247[#81247], {es-issue}82019[#82019])
  549. [[regression-8.0.0]]
  550. [float]
  551. === Regressions
  552. Search::
  553. * Disable numeric sort optimization conditionally {es-pull}78103[#78103]
  554. [[upgrade-8.0.0]]
  555. [float]
  556. === Upgrades
  557. Authentication::
  558. * Upgrade to UnboundID LDAP SDK v6.0.2 {es-pull}79332[#79332]
  559. Infra/Logging::
  560. * Upgrade ECS logging layout to latest version {es-pull}80500[#80500]
  561. Search::
  562. * Upgrade to Lucene 9 {es-pull}81426[#81426]
  563. Security::
  564. * Update to OpenSAML 4 {es-pull}77012[#77012] (issue: {es-issue}71983[#71983])
  565. Snapshot/Restore::
  566. * Upgrade repository-hdfs plugin to Hadoop 3 {es-pull}76897[#76897]