7.0.0-alpha1.asciidoc 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. [[release-notes-7.0.0-alpha1]]
  2. == 7.0.0-alpha1 release notes
  3. The changes listed below have been released for the first time in Elasticsearch 7.0.0-alpha1.
  4. [[breaking-7.0.0-alpha1]]
  5. [float]
  6. === Breaking changes
  7. Core::
  8. * Tribe node has been removed in favor of Cross-Cluster-Search
  9. Cross-Cluster-Search::
  10. * `http_addresses` has been removed from the <<cluster-remote-info>> API
  11. because it is expensive to fetch and no longer needed by Kibana.
  12. Rest API::
  13. * The Clear Cache API only supports `POST` as HTTP method
  14. * `CircuitBreakingException` was previously mapped to HTTP status code 503 and is now
  15. mapped as HTTP status code 429.
  16. Aggregations::
  17. * The Percentiles and PercentileRanks aggregations now return `null` in the REST response,
  18. instead of `NaN`. This makes it consistent with the rest of the aggregations. Note:
  19. this only applies to the REST response, the java objects continue to return `NaN` (also
  20. consistent with other aggregations)
  21. Suggesters::
  22. * Plugins that register suggesters can now define their own types of suggestions and must
  23. explicitly indicate the type of suggestion that they produce. Existing plugins will
  24. require changes to their plugin registration. See the `custom-suggester` example
  25. plugin {pull}30284[#30284]