Releases: influxdb-rs/influxdb-rust
Release v0.0.6
This release brings async
/await
support, thanks to @NeoLegends
Changed
- Rewrite to async / await. Rust 1.39 is now the minimum required Rust version.
Release v0.0.5
This release removes the prefix InfluxDb
of most types in this library and reexports the types under the influxdb::
path. In most cases, you can directly use the types now: e.g. influxdb::Client
vs influxdb::client::InfluxDbClient
.
Added
- Switch to
cargo-readme
for README generation (@senden9) - Contributing Guidelines, Code of Conduct and Issue Templates
Changed
- Removed dependency
itertools
(@mvucenovic) - Replace internal representation in query of
Any
by an enum (@pcpthm) - Remove
InfluxDb
in type names - Replace
ToString
withInto<String>
Fixed
- Fix Crates.io detecting license incorrectly (@mimetypes)
- Don't commit Cargo.lock (@msrd0)
- Fix and Enforce Clippy Lints (@msrd0)
Release v0.0.4
This version is now available under crates.io/crates/influxdb.
Changelog
See the full changelog.
Added
- Possibility to authenticate against a InfluxDb instance (many thanks @valkum)
Disclaimer
As always, this version will run in our production software soon, but your mileage may vary.
Release v0.0.3
This version is now available under crates.io/crates/influxdb.
Changelog
See the full changelog.
Added
- Possibility to run multiple queries in one. See the Integration Tests in
tests/integration_tests.rs
for examples. - Ability to specify Timestamp for write queries
Changed
- You now have to borrow a query when passing it to the
query
method
Disclaimer
As always, this version is running in our production software, but your mileage may vary.
Release v0.0.2
This version is now available under https://crates.io/crates/influxdb.
Changes
- URLEncode Query before sending it to InfluxDB, which caused some empty returns (#5)
- Improved Test Coverage: There's now even more tests verifying correctness of the crate (#5)
- It's no longer necessary to supply a wildcard generic when working with
serde_integration
:client.json_query::<Weather>(query)
instead ofclient.json_query::<Weather, _>(query)
As always, this version is running in our production software, but your mileage may vary.