File tree 3 files changed +8
-5
lines changed
grafana-plugin-sdk-macros
3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
30
30
APIs for working with arrow arrays differs between the two crates.
31
31
Users who are just using the simple ` Field::set_values ` method or the various
32
32
` IntoField ` / ` IntoOptField ` traits should not be affected.
33
+ - Bump itertools dependency to 0.14.0
34
+ - Bump thiserror dependency to 2.0.11
35
+ - Bump tracing-serde dependency to 0.2.0
33
36
34
37
## [ 0.5.0] - 2024-09-17
35
38
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ syn = { version = "2.0.18", features = ["full"] }
20
20
grafana-plugin-sdk = { path = " ../grafana-plugin-sdk" }
21
21
http = " 1.0.0"
22
22
serde = { version = " 1.0.164" , features = [" derive" ] }
23
- thiserror = " 1 .0.40 "
23
+ thiserror = " 2 .0.11 "
24
24
tokio = { version = " 1.28.2" , features = [" rt-multi-thread" ] }
25
25
trybuild = " 1.0.80"
26
26
Original file line number Diff line number Diff line change @@ -9,21 +9,21 @@ repository = "https://github.com/grafana/grafana-plugin-sdk-rust"
9
9
description = " SDK for building Grafana backend plugins."
10
10
11
11
[dependencies ]
12
- arrow = { version = " 53.0 .0" , default-features = false , features = [" ipc" ] }
12
+ arrow = { version = " 54.2 .0" , default-features = false , features = [" ipc" ] }
13
13
cfg-if = " 1.0.0"
14
14
chrono = " 0.4.26"
15
15
futures-core = " 0.3.28"
16
16
futures-util = " 0.3.28"
17
17
grafana-plugin-sdk-macros = { version = " 0.5.0" , path = " ../grafana-plugin-sdk-macros" }
18
18
http = " 1.0.0"
19
- itertools = " 0.13 .0"
19
+ itertools = " 0.14 .0"
20
20
num-traits = " 0.2.15"
21
21
prost = " 0.13.2"
22
22
reqwest_lib = { package = " reqwest" , version = " 0.12.7" , optional = true }
23
23
serde = { version = " 1.0.164" , features = [" derive" ] }
24
24
serde_json = { version = " 1.0.96" , features = [" float_roundtrip" , " raw_value" ] }
25
25
serde_with = " 3.0.0"
26
- thiserror = " 1 .0.40 "
26
+ thiserror = " 2 .0.11 "
27
27
time = { version = " 0.3.22" , features = [" formatting" , " macros" ] }
28
28
tokio = { version = " 1.28.2" , features = [" rt-multi-thread" ] }
29
29
tokio-stream = { version = " 0.1.14" , features = [" net" ] }
@@ -32,7 +32,7 @@ tonic-health = "0.12.2"
32
32
tracing = " 0.1.37"
33
33
tracing-core = " 0.1.31"
34
34
tracing-log = " 0.2.0"
35
- tracing-serde = " 0.1.3 "
35
+ tracing-serde = " 0.2.0 "
36
36
tracing-subscriber = { version = " 0.3.17" , features = [
37
37
" env-filter" ,
38
38
" json" ,
You can’t perform that action at this time.
0 commit comments