Skip to content

Commit

Permalink
Merge branch 'main' into Go-Implement-LastSave
Browse files Browse the repository at this point in the history
  • Loading branch information
Yury-Fridlyand authored Feb 10, 2025
2 parents 167e176 + ab4fc44 commit ede6c11
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/ISSUE_TEMPLATE/task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
8 changes: 4 additions & 4 deletions glide-core/telemetry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }

0 comments on commit ede6c11

Please sign in to comment.