Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions crates/redis-cloud/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.7](https://github.com/redis-developer/redisctl/compare/redis-cloud-v0.7.6...redis-cloud-v0.7.7) - 2026-01-23

### Fixed

- handle rate limits (429) and processing-completed state in task polling ([#587](https://github.com/redis-developer/redisctl/pull/587))

## [0.7.6](https://github.com/redis-developer/redisctl/compare/redis-cloud-v0.7.5...redis-cloud-v0.7.6) - 2026-01-23

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion crates/redis-cloud/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "redis-cloud"
version = "0.7.6"
version = "0.7.7"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/redisctl-mcp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.3](https://github.com/redis-developer/redisctl/compare/redisctl-mcp-v0.1.2...redisctl-mcp-v0.1.3) - 2026-01-23

### Other

- updated the following local packages: redis-cloud

## [0.1.2](https://github.com/redis-developer/redisctl/compare/redisctl-mcp-v0.1.1...redisctl-mcp-v0.1.2) - 2026-01-23

### Added
Expand Down
4 changes: 2 additions & 2 deletions crates/redisctl-mcp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "redisctl-mcp"
version = "0.1.2"
version = "0.1.3"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand All @@ -18,7 +18,7 @@ schemars = "0.8"

# Internal crates
redisctl-config = { version = "0.2.2", path = "../redisctl-config" }
redis-cloud = { version = "0.7.6", path = "../redis-cloud" }
redis-cloud = { version = "0.7.7", path = "../redis-cloud" }
redis-enterprise = { version = "0.7.4", path = "../redis-enterprise" }

# Redis client for direct database connections
Expand Down
10 changes: 10 additions & 0 deletions crates/redisctl/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.8](https://github.com/redis-developer/redisctl/compare/redisctl-v0.7.7...redisctl-v0.7.8) - 2026-01-23

### Added

- add one-shot cost-report export command ([#595](https://github.com/redis-developer/redisctl/pull/595))

### Fixed

- handle rate limits (429) and processing-completed state in task polling ([#587](https://github.com/redis-developer/redisctl/pull/587))

## [0.7.7](https://github.com/redis-developer/redisctl/compare/redisctl-v0.7.6...redisctl-v0.7.7) - 2026-01-23

### Other
Expand Down
6 changes: 3 additions & 3 deletions crates/redisctl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "redisctl"
version = "0.7.7"
version = "0.7.8"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand All @@ -19,9 +19,9 @@ path = "src/main.rs"

[dependencies]
redisctl-config = { version = "0.2.2", path = "../redisctl-config" }
redis-cloud = { version = "0.7.6", path = "../redis-cloud", features = ["tower-integration"] }
redis-cloud = { version = "0.7.7", path = "../redis-cloud", features = ["tower-integration"] }
redis-enterprise = { version = "0.7.4", path = "../redis-enterprise", features = ["tower-integration"] }
redisctl-mcp = { version = "0.1.2", path = "../redisctl-mcp", optional = true }
redisctl-mcp = { version = "0.1.3", path = "../redisctl-mcp", optional = true }
files-sdk = { workspace = true, optional = true }

# CLI dependencies
Expand Down
Loading