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.

10 changes: 10 additions & 0 deletions crates/redis-cloud/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.5](https://github.com/redis-developer/redisctl/compare/redis-cloud-v0.7.4...redis-cloud-v0.7.5) - 2025-12-17

### Fixed

- correct repository URLs broken by PR #500 ([#506](https://github.com/redis-developer/redisctl/pull/506))

### Other

- update documentation URLs to new hosting location ([#509](https://github.com/redis-developer/redisctl/pull/509))

## [0.7.4](https://github.com/joshrotenberg/redisctl/compare/redis-cloud-v0.7.3...redis-cloud-v0.7.4) - 2025-12-13

### Other
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.4"
version = "0.7.5"
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.2](https://github.com/redis-developer/redisctl/compare/redis-enterprise-v0.7.1...redis-enterprise-v0.7.2) - 2025-12-17

### Fixed

- support JMESPath backtick string literals and improve module upload error ([#511](https://github.com/redis-developer/redisctl/pull/511))

### Other

- update documentation URLs to new hosting location ([#509](https://github.com/redis-developer/redisctl/pull/509))

## [0.7.1](https://github.com/redis-developer/redisctl/compare/redis-enterprise-v0.7.0...redis-enterprise-v0.7.1) - 2025-12-16

### Other
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.1"
version = "0.7.2"
edition.workspace = true
authors.workspace = true
license.workspace = 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.7.3](https://github.com/redis-developer/redisctl/compare/redisctl-v0.7.2...redisctl-v0.7.3) - 2025-12-17

### Added

- add module workflow tools (validate, inspect, package) ([#513](https://github.com/redis-developer/redisctl/pull/513))
- add module name lookup for module get and database create ([#512](https://github.com/redis-developer/redisctl/pull/512))

### Fixed

- support JMESPath backtick string literals and improve module upload error ([#511](https://github.com/redis-developer/redisctl/pull/511))
- correct repository URLs broken by PR #500 ([#506](https://github.com/redis-developer/redisctl/pull/506))

### Other

- update documentation URLs to new hosting location ([#509](https://github.com/redis-developer/redisctl/pull/509))
- release ([#503](https://github.com/redis-developer/redisctl/pull/503))

## [0.7.2](https://github.com/joshrotenberg/redisctl/compare/redisctl-v0.7.1...redisctl-v0.7.2) - 2025-12-13

### Added
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.2"
version = "0.7.3"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand All @@ -19,8 +19,8 @@ path = "src/main.rs"

[dependencies]
redisctl-config = { version = "0.2.1", path = "../redisctl-config" }
redis-cloud = { version = "0.7.4", path = "../redis-cloud", features = ["tower-integration"] }
redis-enterprise = { version = "0.7.1", path = "../redis-enterprise", features = ["tower-integration"] }
redis-cloud = { version = "0.7.5", path = "../redis-cloud", features = ["tower-integration"] }
redis-enterprise = { version = "0.7.2", path = "../redis-enterprise", features = ["tower-integration"] }
files-sdk = { workspace = true, optional = true }

# CLI dependencies
Expand Down
Loading