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.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ default-members = [
version = "0.3.1"

[workspace.package]
version = "0.10.1"
version = "0.11.0"
edition = "2024"
rust-version = "1.90"
authors = ["Josh Rotenberg <josh.rotenberg@redis.com>"]
Expand Down
6 changes: 6 additions & 0 deletions crates/redisctl-core/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.11.0](https://github.com/redis-developer/redisctl/compare/redisctl-core-v0.10.1...redisctl-core-v0.11.0) - 2026-03-20

### Fixed

- *(auth)* support Redis Cloud secret env var alias ([#913](https://github.com/redis-developer/redisctl/pull/913))

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

### Added
Expand Down
11 changes: 11 additions & 0 deletions crates/redisctl-mcp/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.11.0](https://github.com/redis-developer/redisctl/compare/redisctl-mcp-v0.10.1...redisctl-mcp-v0.11.0) - 2026-03-20

### Added

- *(mcp)* cluster-aware connections + client_name ([#906](https://github.com/redis-developer/redisctl/pull/906))

### Fixed

- *(auth)* support Redis Cloud secret env var alias ([#913](https://github.com/redis-developer/redisctl/pull/913))
- *(mcp)* preserve raw tool denies in synthesized policy ([#912](https://github.com/redis-developer/redisctl/pull/912))

## [0.10.1](https://github.com/redis-developer/redisctl/compare/redisctl-mcp-v0.10.0...redisctl-mcp-v0.10.1) - 2026-03-19

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/redisctl-mcp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ tower-mcp = { version = "0.8.2", features = ["http", "oauth", "dynamic-tools"] }
schemars = "1.2"

# Internal crates
redisctl-core = { version = "0.10.1", path = "../redisctl-core" }
redisctl-core = { version = "0.11.0", path = "../redisctl-core" }

# External API clients (optional, gated by features)
redis-cloud = { workspace = true, optional = true }
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.11.0](https://github.com/redis-developer/redisctl/compare/redisctl-v0.10.1...redisctl-v0.11.0) - 2026-03-20

### Fixed

- *(auth)* support Redis Cloud secret env var alias ([#913](https://github.com/redis-developer/redisctl/pull/913))

### Other

- *(readme)* fix MCP policy example ([#915](https://github.com/redis-developer/redisctl/pull/915))

## [0.10.1](https://github.com/redis-developer/redisctl/compare/redisctl-v0.10.0...redisctl-v0.10.1) - 2026-03-19

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion crates/redisctl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ path = "src/main.rs"


[dependencies]
redisctl-core = { version = "0.10.1", path = "../redisctl-core" }
redisctl-core = { version = "0.11.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