Skip to content
Merged
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.

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

## [Unreleased]

## [0.2.0](https://github.com/redis-developer/redisctl/compare/redisctl-core-v0.1.0...redisctl-core-v0.2.0) - 2026-02-28

### Added

- *(cli)* add profile tags for organizing many profiles ([#692](https://github.com/redis-developer/redisctl/pull/692)) ([#705](https://github.com/redis-developer/redisctl/pull/705))

### Other

- add edge case tests for profile config loading ([#696](https://github.com/redis-developer/redisctl/pull/696)) ([#699](https://github.com/redis-developer/redisctl/pull/699))
- add repository and homepage metadata to redisctl-core ([#685](https://github.com/redis-developer/redisctl/pull/685))

## [0.1.0](https://github.com/redis-developer/redisctl/releases/tag/redisctl-core-v0.1.0) - 2026-02-25

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

## [Unreleased]

## [0.4.0](https://github.com/redis-developer/redisctl/compare/redisctl-mcp-v0.3.0...redisctl-mcp-v0.4.0) - 2026-02-28

### Added

- *(mcp)* migrate to tower-mcp 0.7.0 ([#748](https://github.com/redis-developer/redisctl/pull/748))
- *(mcp)* add safety annotations, normalize instructions, add verification tests ([#610](https://github.com/redis-developer/redisctl/pull/610)) ([#746](https://github.com/redis-developer/redisctl/pull/746))
- *(mcp)* add 4 composed Redis diagnostic tools ([#737](https://github.com/redis-developer/redisctl/pull/737)) ([#744](https://github.com/redis-developer/redisctl/pull/744))
- *(mcp)* add 18 write-gated Redis data management tools ([#743](https://github.com/redis-developer/redisctl/pull/743))
- *(mcp)* add profile-based connection support for Redis database tools ([#742](https://github.com/redis-developer/redisctl/pull/742))
- *(mcp)* add 14 Redis read tools for streams, pub/sub, diagnostics, ACL, modules ([#741](https://github.com/redis-developer/redisctl/pull/741))
- *(mcp)* add 27 Fixed/Essentials tier MCP tools ([#734](https://github.com/redis-developer/redisctl/pull/734))
- *(mcp)* add 5 cloud accounts (BYOC) MCP tools ([#733](https://github.com/redis-developer/redisctl/pull/733))
- *(mcp)* add 51 cloud networking MCP tools for VPC, TGW, PSC, PrivateLink ([#732](https://github.com/redis-developer/redisctl/pull/732))
- *(mcp)* add 19 cloud subscription and database MCP tools ([#731](https://github.com/redis-developer/redisctl/pull/731))
- *(mcp)* add ACL write, cost report, and payment method cloud tools ([#730](https://github.com/redis-developer/redisctl/pull/730))
- *(mcp)* add 18 enterprise tools for node actions, RBAC, CRDB, and LDAP ([#715](https://github.com/redis-developer/redisctl/pull/715))
- *(cli)* add profile tags for organizing many profiles ([#692](https://github.com/redis-developer/redisctl/pull/692)) ([#705](https://github.com/redis-developer/redisctl/pull/705))
- *(mcp)* surface credential issues clearly in tool error responses ([#695](https://github.com/redis-developer/redisctl/pull/695)) ([#704](https://github.com/redis-developer/redisctl/pull/704))
- *(mcp)* add profile_create tool for creating profiles via MCP ([#646](https://github.com/redis-developer/redisctl/pull/646)) ([#703](https://github.com/redis-developer/redisctl/pull/703))
- *(cli)* add --connect flag to profile validate for connectivity testing ([#688](https://github.com/redis-developer/redisctl/pull/688))

### Other

- *(mcp)* split redis.rs into server, keys, and structures submodules ([#740](https://github.com/redis-developer/redisctl/pull/740))
- *(mcp)* split enterprise.rs and cloud.rs into domain submodules ([#717](https://github.com/redis-developer/redisctl/pull/717))

## [0.3.0](https://github.com/redis-developer/redisctl/compare/redisctl-mcp-v0.2.0...redisctl-mcp-v0.3.0) - 2026-02-25

### 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.3.0"
version = "0.4.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand All @@ -21,7 +21,7 @@ tower-mcp = { version = "0.7.0", features = ["http", "oauth"] }
schemars = "1.2"

# Internal crates
redisctl-core = { version = "0.1.0", path = "../redisctl-core" }
redisctl-core = { version = "0.2.0", path = "../redisctl-core" }

# External API clients (optional, gated by features)
redis-cloud = { workspace = true, optional = true }
Expand Down
17 changes: 17 additions & 0 deletions crates/redisctl/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.1](https://github.com/redis-developer/redisctl/compare/redisctl-v0.8.0...redisctl-v0.8.1) - 2026-02-28

### Added

- *(cli)* add table output and brief summary for enterprise status ([#714](https://github.com/redis-developer/redisctl/pull/714))
- *(cli)* add cluster health verification commands ([#626](https://github.com/redis-developer/redisctl/pull/626)) ([#713](https://github.com/redis-developer/redisctl/pull/713))
- *(cli)* add profile tags for organizing many profiles ([#692](https://github.com/redis-developer/redisctl/pull/692)) ([#705](https://github.com/redis-developer/redisctl/pull/705))
- *(cli)* preserve profile settings on credential update ([#694](https://github.com/redis-developer/redisctl/pull/694)) ([#702](https://github.com/redis-developer/redisctl/pull/702))
- *(cli)* add profile current command for shell prompt integration ([#693](https://github.com/redis-developer/redisctl/pull/693)) ([#701](https://github.com/redis-developer/redisctl/pull/701))
- *(cli)* add interactive profile init wizard ([#690](https://github.com/redis-developer/redisctl/pull/690)) ([#698](https://github.com/redis-developer/redisctl/pull/698))
- *(cli)* improve profile help and discoverability ([#663](https://github.com/redis-developer/redisctl/pull/663)) ([#689](https://github.com/redis-developer/redisctl/pull/689))
- *(cli)* add --connect flag to profile validate for connectivity testing ([#688](https://github.com/redis-developer/redisctl/pull/688))

### Fixed

- *(cli)* improve error messages for credential and connection failures ([#691](https://github.com/redis-developer/redisctl/pull/691)) ([#700](https://github.com/redis-developer/redisctl/pull/700))

## [0.8.0](https://github.com/redis-developer/redisctl/compare/redisctl-v0.7.7...redisctl-v0.8.0) - 2026-02-25

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


[dependencies]
redisctl-core = { version = "0.1.0", path = "../redisctl-core" }
redisctl-core = { version = "0.2.0", path = "../redisctl-core" }
redis-cloud = { workspace = true, features = ["tower-integration"] }
redis-enterprise = { workspace = true, features = ["tower-integration"] }
files-sdk = { workspace = true, optional = true }
Expand Down
Loading