diff --git a/.github/ISSUE_TEMPLATE/task.yml b/.github/ISSUE_TEMPLATE/task.yml index 2b3d18f8f1..d881db85e9 100644 --- a/.github/ISSUE_TEMPLATE/task.yml +++ b/.github/ISSUE_TEMPLATE/task.yml @@ -16,14 +16,14 @@ body: description: Describe the task in detail placeholder: Describe the task... - - type: checkboxes + - type: textarea attributes: label: Checklist description: Add items to be completed - options: - - label: Task item 1 - - label: Task item 2 - - label: Task item 3 + value: | + 1. + 2. + ... - type: textarea attributes: diff --git a/CHANGELOG.md b/CHANGELOG.md index 7318a7c829..4cebefe2dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,7 @@ * Node: Fix `zrangeWithScores` (disallow `RangeByLex` as it is not supported) ([#2926](https://github.com/valkey-io/valkey-glide/pull/2926)) * Core: improve fix in #2381 ([#2929](https://github.com/valkey-io/valkey-glide/pull/2929)) * Java: Fix `lpopCount` null handling ([#3025](https://github.com/valkey-io/valkey-glide/pull/3025)) +* Core: Fix `opentelemetry` related dependency issue ([#3123](https://github.com/valkey-io/valkey-glide/pull/3123)) #### Operational Enhancements diff --git a/glide-core/telemetry/Cargo.toml b/glide-core/telemetry/Cargo.toml index 5c5015100a..8608eee17d 100644 --- a/glide-core/telemetry/Cargo.toml +++ b/glide-core/telemetry/Cargo.toml @@ -9,10 +9,10 @@ authors = ["Valkey GLIDE Maintainers"] lazy_static = "1" serde = { version = "1", features = ["derive"] } serde_json = "1" -chrono = "0" -futures-util = "0" +chrono = "0.4" +futures-util = "0.3" tokio = { version = "1", features = ["macros", "time"] } url = "2" -opentelemetry = "0" -opentelemetry_sdk = { version = "0", features = ["rt-tokio"] } +opentelemetry = "0.27" +opentelemetry_sdk = { version = "0.27", features = ["rt-tokio"] }