Skip to content

Commit e50cf77

Browse files
chore: release (#480)
1 parent 7ceefbd commit e50cf77

File tree

9 files changed

+77
-11
lines changed

9 files changed

+77
-11
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/redis-cloud/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.7.2](https://github.com/joshrotenberg/redisctl/compare/redis-cloud-v0.7.1...redis-cloud-v0.7.2) - 2025-12-09
11+
12+
### Added
13+
14+
- *(cloud)* add task list, database flush, and available-versions commands ([#477](https://github.com/joshrotenberg/redisctl/pull/477))
15+
- *(cloud)* add cost-report API support (Beta) ([#479](https://github.com/joshrotenberg/redisctl/pull/479))
16+
- add user agent header to HTTP requests ([#473](https://github.com/joshrotenberg/redisctl/pull/473))
17+
- *(redis-cloud)* add tracing instrumentation to API client ([#452](https://github.com/joshrotenberg/redisctl/pull/452))
18+
- Add optional Tower service integration to API clients ([#447](https://github.com/joshrotenberg/redisctl/pull/447))
19+
20+
### Fixed
21+
22+
- *(release)* improve Homebrew formula auto-update ([#433](https://github.com/joshrotenberg/redisctl/pull/433))
23+
1024
## [0.7.1](https://github.com/joshrotenberg/redisctl/compare/redis-cloud-v0.7.0...redis-cloud-v0.7.1) - 2025-10-29
1125

1226
### Added

crates/redis-cloud/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "redis-cloud"
3-
version = "0.7.1"
3+
version = "0.7.2"
44
edition.workspace = true
55
authors.workspace = true
66
license.workspace = true

crates/redis-enterprise/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.7.0](https://github.com/joshrotenberg/redisctl/compare/redis-enterprise-v0.6.4...redis-enterprise-v0.7.0) - 2025-12-09
11+
12+
### Added
13+
14+
- add user agent header to HTTP requests ([#473](https://github.com/joshrotenberg/redisctl/pull/473))
15+
- *(enterprise)* add database watch command for real-time status monitoring ([#458](https://github.com/joshrotenberg/redisctl/pull/458))
16+
- *(redis-enterprise)* add stats streaming with --follow flag ([#455](https://github.com/joshrotenberg/redisctl/pull/455))
17+
- Add optional Tower service integration to API clients ([#447](https://github.com/joshrotenberg/redisctl/pull/447))
18+
- add database upgrade command for Redis version upgrades ([#442](https://github.com/joshrotenberg/redisctl/pull/442))
19+
20+
### Fixed
21+
22+
- *(redis-enterprise)* remove non-existent database action methods ([#443](https://github.com/joshrotenberg/redisctl/pull/443))
23+
- *(release)* improve Homebrew formula auto-update ([#433](https://github.com/joshrotenberg/redisctl/pull/433))
24+
1025
## [0.6.4](https://github.com/joshrotenberg/redisctl/compare/redis-enterprise-v0.6.3...redis-enterprise-v0.6.4) - 2025-10-29
1126

1227
### Added

crates/redis-enterprise/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "redis-enterprise"
3-
version = "0.6.4"
3+
version = "0.7.0"
44
edition.workspace = true
55
authors.workspace = true
66
license.workspace = true

crates/redisctl-config/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.0](https://github.com/joshrotenberg/redisctl/compare/redisctl-config-v0.1.1...redisctl-config-v0.2.0) - 2025-12-09
11+
12+
### Added
13+
14+
- *(cli)* add tower-resilience integration framework ([#459](https://github.com/joshrotenberg/redisctl/pull/459))
15+
1016
## [0.1.1](https://github.com/joshrotenberg/redisctl/compare/redisctl-config-v0.1.0...redisctl-config-v0.1.1) - 2025-10-29
1117

1218
### Added

crates/redisctl-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "redisctl-config"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
edition = "2024"
55
authors = ["Josh Rotenberg <[email protected]>"]
66
license = "MIT OR Apache-2.0"

crates/redisctl/CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,37 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.7.0](https://github.com/joshrotenberg/redisctl/compare/redisctl-v0.6.6...redisctl-v0.7.0) - 2025-12-09
11+
12+
### Added
13+
14+
- *(cli)* integrate jmespath-extensions for enhanced query capabilities ([#482](https://github.com/joshrotenberg/redisctl/pull/482))
15+
- *(cli)* add tower-resilience integration framework ([#459](https://github.com/joshrotenberg/redisctl/pull/459))
16+
- *(cloud)* add task list, database flush, and available-versions commands ([#477](https://github.com/joshrotenberg/redisctl/pull/477))
17+
- *(cloud)* add cost-report API support (Beta) ([#479](https://github.com/joshrotenberg/redisctl/pull/479))
18+
- add user agent header to HTTP requests ([#473](https://github.com/joshrotenberg/redisctl/pull/473))
19+
- *(enterprise)* add database watch command for real-time status monitoring ([#458](https://github.com/joshrotenberg/redisctl/pull/458))
20+
- *(enterprise)* improve stats streaming UX with Ctrl+C handling ([#457](https://github.com/joshrotenberg/redisctl/pull/457))
21+
- *(redis-enterprise)* add stats streaming with --follow flag ([#455](https://github.com/joshrotenberg/redisctl/pull/455))
22+
- add first-class parameters to major create commands ([#449](https://github.com/joshrotenberg/redisctl/pull/449))
23+
- add database upgrade command for Redis version upgrades ([#442](https://github.com/joshrotenberg/redisctl/pull/442))
24+
- [**breaking**] improve CLI help text accuracy and add comprehensive test coverage ([#444](https://github.com/joshrotenberg/redisctl/pull/444))
25+
- add payment-method commands to CLI ([#439](https://github.com/joshrotenberg/redisctl/pull/439))
26+
- make --config-file take precedence over environment variables ([#438](https://github.com/joshrotenberg/redisctl/pull/438))
27+
28+
### Fixed
29+
30+
- upgrade indicatif to 0.18 to resolve RUSTSEC-2025-0119 ([#474](https://github.com/joshrotenberg/redisctl/pull/474))
31+
- *(release)* improve Homebrew formula auto-update ([#433](https://github.com/joshrotenberg/redisctl/pull/433))
32+
33+
### Other
34+
35+
- *(redisctl)* add async_utils unit tests ([#472](https://github.com/joshrotenberg/redisctl/pull/472))
36+
- split cli.rs into cloud.rs and enterprise.rs modules ([#454](https://github.com/joshrotenberg/redisctl/pull/454))
37+
- update presentation materials with first-class parameters feature ([#450](https://github.com/joshrotenberg/redisctl/pull/450))
38+
- add comprehensive CLI test coverage ([#448](https://github.com/joshrotenberg/redisctl/pull/448))
39+
- add comprehensive CLI tests with assert_cmd ([#435](https://github.com/joshrotenberg/redisctl/pull/435))
40+
1041
## [0.6.6](https://github.com/joshrotenberg/redisctl/compare/redisctl-v0.6.5...redisctl-v0.6.6) - 2025-10-29
1142

1243
### Added

crates/redisctl/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "redisctl"
3-
version = "0.6.6"
3+
version = "0.7.0"
44
edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
@@ -18,9 +18,9 @@ path = "src/main.rs"
1818

1919

2020
[dependencies]
21-
redisctl-config = { version = "0.1.1", path = "../redisctl-config" }
22-
redis-cloud = { version = "0.7.1", path = "../redis-cloud", features = ["tower-integration"] }
23-
redis-enterprise = { version = "0.6.4", path = "../redis-enterprise", features = ["tower-integration"] }
21+
redisctl-config = { version = "0.2.0", path = "../redisctl-config" }
22+
redis-cloud = { version = "0.7.2", path = "../redis-cloud", features = ["tower-integration"] }
23+
redis-enterprise = { version = "0.7.0", path = "../redis-enterprise", features = ["tower-integration"] }
2424
files-sdk = { workspace = true, optional = true }
2525

2626
# CLI dependencies

0 commit comments

Comments
 (0)