Skip to content

Commit d3af682

Browse files
committed
Release influxdb 0.8.0 and influxdb-derive 0.6.0
1 parent f8c8385 commit d3af682

File tree

4 files changed

+26
-10
lines changed

4 files changed

+26
-10
lines changed

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.8.0] - 2026-02-19
11+
12+
### Added
13+
- Feature for vendored native TLS ([#138](https://github.com/influxdb-rs/influxdb-rust/pull/138))
14+
- Support for version 0.3 of the time crate ([#151](https://github.com/influxdb-rs/influxdb-rust/pull/))
15+
- Support for renaming the time field when using the derive macro ([#162](https://github.com/influxdb-rs/influxdb-rust/pull/162))
16+
17+
### Changed
18+
- The `use-serde` feature was renamed to `serde` ([#146](https://github.com/influxdb-rs/influxdb-rust/pull/))
19+
- The `Error` type has been improved ([#150](https://github.com/influxdb-rs/influxdb-rust/pull/150) and [#139](https://github.com/influxdb-rs/influxdb-rust/pull/139))
20+
- The `InfluxDbWriteable` has become fail-able ([#174](https://github.com/influxdb-rs/influxdb-rust/pull/174))
21+
- `reqwest` has been updated to 0.13 ([#184](https://github.com/influxdb-rs/influxdb-rust/pull/184))
22+
- The MSRV has been increased to 1.71 ([#184](https://github.com/influxdb-rs/influxdb-rust/pull/184))
23+
1024
### Removed
11-
- `<dyn Query>::raw_read_query`, deprecated in 0.5.0, was removed
25+
- Support for any HTTP backend through the `surf` crate ([#168](https://github.com/influxdb-rs/influxdb-rust/pull/168))
26+
- `<dyn Query>::raw_read_query`, deprecated in 0.5.0, was removed ([#169](https://github.com/influxdb-rs/influxdb-rust/pull/169))
27+
- Support for non-UTC date time types ([#174](https://github.com/influxdb-rs/influxdb-rust/pull/174))
1228

1329
## [0.7.2] - 2024-02-14
1430

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Pull requests are always welcome. See [Contributing][__link0] and [Code of Condu
5050
Add the following to your `Cargo.toml`
5151

5252
```toml
53-
influxdb = { version = "0.7.2", features = ["derive"] }
53+
influxdb = { version = "0.8.0", features = ["derive"] }
5454
```
5555

5656
For an example with using Serde deserialization, please refer to [serde_integration][__link4]
@@ -110,17 +110,17 @@ To communicate with InfluxDB, you can choose the HTTP backend to be used configu
110110

111111
* **[hyper][__link5]** (through reqwest, used by default), with [rustls][__link6]
112112
```toml
113-
influxdb = { version = "0.7.2", features = ["derive"] }
113+
influxdb = { version = "0.8.0", features = ["derive"] }
114114
```
115115

116116
* **[hyper][__link7]** (through reqwest), with native TLS (OpenSSL)
117117
```toml
118-
influxdb = { version = "0.7.2", default-features = false, features = ["derive", "serde", "native-tls"] }
118+
influxdb = { version = "0.8.0", default-features = false, features = ["derive", "serde", "native-tls"] }
119119
```
120120

121121
* **[hyper][__link8]** (through reqwest), with vendored native TLS (OpenSSL)
122122
```toml
123-
influxdb = { version = "0.7.2", default-features = false, features = ["derive", "serde", "native-tls-vendored"] }
123+
influxdb = { version = "0.8.0", default-features = false, features = ["derive", "serde", "native-tls-vendored"] }
124124
```
125125

126126
## License
@@ -131,12 +131,12 @@ To communicate with InfluxDB, you can choose the HTTP backend to be used configu
131131
@ 2020-2026 Gero Gerke, msrd0 and [contributors].
132132

133133
[contributors]: https://github.com/influxdb-rs/influxdb-rust/graphs/contributors
134-
[__cargo_doc2readme_dependencies_info]: ggGkYW0CYXSEG_hV_Hhi195rG1bQ50Z796M6G0clIrwU3dD1GxD-fO9UhKvaYXKEGxuf7s5mIUnXG0aItuf7_gNCG97yq-v-QgOpG7Xm07crWXUNYWSBgmhpbmZsdXhkYmUwLjcuMg
134+
[__cargo_doc2readme_dependencies_info]: ggGkYW0CYXSEG_hV_Hhi195rG1bQ50Z796M6G0clIrwU3dD1GxD-fO9UhKvaYXKEG-hU_6NSeZE5G_TGgn7dixaeGy0Dy-9mto5UG92UqbpzHaA3YWSBgmhpbmZsdXhkYmUwLjguMA
135135
[__link0]: https://github.com/influxdb-rs/influxdb-rust/blob/main/CONTRIBUTING.md
136136
[__link1]: https://github.com/influxdb-rs/influxdb-rust/blob/main/CODE_OF_CONDUCT.md
137137
[__link2]: https://github.com/influxdb-rs/influxdb-rust/blob/main/CHANGELOG.md
138138
[__link3]: https://github.com/influxdb-rs/influxdb-rust/blob/main/influxdb/Cargo.toml
139-
[__link4]: https://docs.rs/influxdb/0.7.2/influxdb/?search=integrations::serde_integration
139+
[__link4]: https://docs.rs/influxdb/0.8.0/influxdb/?search=integrations::serde_integration
140140
[__link5]: https://github.com/hyperium/hyper
141141
[__link6]: https://github.com/ctz/rustls
142142
[__link7]: https://github.com/hyperium/hyper

influxdb/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "influxdb"
3-
version = "0.7.2"
3+
version = "0.8.0"
44
authors.workspace = true
55
edition.workspace = true
66
rust-version.workspace = true
@@ -23,7 +23,7 @@ required-features = ["chrono"]
2323
chrono = { version = "0.4.23", features = ["serde"], default-features = false, optional = true }
2424
futures-util = "0.3.17"
2525
http = "1.3.1"
26-
influxdb_derive = { version = "0.5.1", optional = true }
26+
influxdb_derive = { version = "0.6.0", optional = true }
2727
lazy-regex = "3.1"
2828
reqwest = { version = "0.13", features = ["query"], default-features = false }
2929
serde = { version = "1.0.186", optional = true }

influxdb_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "influxdb_derive"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
authors.workspace = true
55
edition.workspace = true
66
rust-version.workspace = true

0 commit comments

Comments
 (0)