v7.7.0-alpha.1
Pre-release
Pre-release
v7.6.1-alpha.1...v7.7.0-alpha.1
Highlights
elasticsearch crate now compiles on stable channel! Rust nightly is required only to run doc tests against README.md, which are conditionally included when compiling with nightly.
The read_body()
fn on Response
has been renamed to json
. With the introduction of a read_body_as_text()
fn to read the body as plain text, the function names were overly verbose. The renames to json
and text
better align with what each returns, respectiviely.
Features & Enhancements
- #72 Use text/plain content-type and accept headers for cat APIs (issue: #71)
- #81 Update to 7.7 rest specs
- #85 Add default global HTTP headers (issue: #83)
- #88 Add deprecation warning headers
- #89 Allow elasticsearch to work with rust stable (issue: #87)
Breaking Changes
- #72 Use text/plain content-type and accept headers for cat APIs (issue: #71)
- #84 Rename read_body and read_body_as_text (issue: #74)
Documentation
- #73 Add markdown examples into generated client (issues: #66, #67)
- #82 Add note about tokio runtime (issue: #80)
- #92 Making changes to main and Build error in parsing response (issue: #91). thanks @srikwit 👍