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
10 changes: 5 additions & 5 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.6](https://github.com/redis-developer/redisctl/compare/redis-cloud-v0.7.5...redis-cloud-v0.7.6) - 2026-01-23

### Fixed

- use local README.md for crates to fix sdist build ([#580](https://github.com/redis-developer/redisctl/pull/580))

## [0.7.5](https://github.com/redis-developer/redisctl/compare/redis-cloud-v0.7.4...redis-cloud-v0.7.5) - 2025-12-17

### 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.5"
version = "0.7.6"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
10 changes: 10 additions & 0 deletions crates/redis-enterprise/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.4](https://github.com/redis-developer/redisctl/compare/redis-enterprise-v0.7.3...redis-enterprise-v0.7.4) - 2026-01-23

### Added

- Add Python bindings via PyO3 ([#578](https://github.com/redis-developer/redisctl/pull/578))

### Fixed

- use local README.md for crates to fix sdist build ([#580](https://github.com/redis-developer/redisctl/pull/580))

## [0.7.3](https://github.com/redis-developer/redisctl/compare/redis-enterprise-v0.7.2...redis-enterprise-v0.7.3) - 2026-01-12

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/redis-enterprise/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "redis-enterprise"
version = "0.7.3"
version = "0.7.4"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/redisctl-config/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.2.2](https://github.com/redis-developer/redisctl/compare/redisctl-config-v0.2.1...redisctl-config-v0.2.2) - 2026-01-23

### Added

- *(config)* add database profile type for direct Redis connections ([#566](https://github.com/redis-developer/redisctl/pull/566))

## [0.2.1](https://github.com/redis-developer/redisctl/compare/redisctl-config-v0.2.0...redisctl-config-v0.2.1) - 2025-12-16

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/redisctl-config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "redisctl-config"
version = "0.2.1"
version = "0.2.2"
edition = "2024"
authors = ["Josh Rotenberg <josh@redislabs.com>"]
license = "MIT OR Apache-2.0"
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.1.2](https://github.com/redis-developer/redisctl/compare/redisctl-mcp-v0.1.1...redisctl-mcp-v0.1.2) - 2026-01-23

### Added

- *(mcp)* add --database-url CLI option for direct Redis connections ([#574](https://github.com/redis-developer/redisctl/pull/574))
- *(mcp)* add database tools for direct Redis connections ([#572](https://github.com/redis-developer/redisctl/pull/572))

### Other

- add Python bindings documentation and update CHANGELOGs ([#581](https://github.com/redis-developer/redisctl/pull/581))

## [0.1.1](https://github.com/redis-developer/redisctl/compare/redisctl-mcp-v0.1.0...redisctl-mcp-v0.1.1) - 2026-01-14

### Added
Expand Down
8 changes: 4 additions & 4 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.1"
version = "0.1.2"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand All @@ -17,9 +17,9 @@ rmcp = { version = "0.12", features = ["server", "transport-io", "macros"] }
schemars = "0.8"

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

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

## [Unreleased]

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

### Added

- Add Python bindings via PyO3 ([#578](https://github.com/redis-developer/redisctl/pull/578))
- *(mcp)* add --database-url CLI option for direct Redis connections ([#574](https://github.com/redis-developer/redisctl/pull/574))
- *(mcp)* add database tools for direct Redis connections ([#572](https://github.com/redis-developer/redisctl/pull/572))
- *(config)* add database profile type for direct Redis connections ([#566](https://github.com/redis-developer/redisctl/pull/566))

### Other

- add Python bindings documentation and update CHANGELOGs ([#581](https://github.com/redis-developer/redisctl/pull/581))
- add assert_cmd tests for MCP commands ([#570](https://github.com/redis-developer/redisctl/pull/570))

### Added

- Add Python bindings via PyO3 for `redis-cloud` and `redis-enterprise` libraries ([#578](https://github.com/redis-developer/redisctl/pull/578))
Expand Down
10 changes: 5 additions & 5 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.5"
version = "0.7.6"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand All @@ -18,10 +18,10 @@ path = "src/main.rs"


[dependencies]
redisctl-config = { version = "0.2.1", path = "../redisctl-config" }
redis-cloud = { version = "0.7.5", path = "../redis-cloud", features = ["tower-integration"] }
redis-enterprise = { version = "0.7.3", path = "../redis-enterprise", features = ["tower-integration"] }
redisctl-mcp = { version = "0.1.1", path = "../redisctl-mcp", optional = true }
redisctl-config = { version = "0.2.2", path = "../redisctl-config" }
redis-cloud = { version = "0.7.6", 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 }
files-sdk = { workspace = true, optional = true }

# CLI dependencies
Expand Down
Loading