Skip to content

Commit b762713

Browse files
chore: release v0.10.0 (#844)
1 parent ced0daa commit b762713

File tree

6 files changed

+44
-6
lines changed

6 files changed

+44
-6
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ default-members = [
1515
version = "0.3.1"
1616

1717
[workspace.package]
18-
version = "0.9.1"
18+
version = "0.10.0"
1919
edition = "2024"
2020
rust-version = "1.90"
2121
authors = ["Josh Rotenberg <josh.rotenberg@redis.com>"]

crates/redisctl-mcp/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.10.0](https://github.com/redis-developer/redisctl/compare/redisctl-mcp-v0.9.1...redisctl-mcp-v0.10.0) - 2026-03-17
11+
12+
### Added
13+
14+
- *(mcp)* add session-scoped command aliases ([#891](https://github.com/redis-developer/redisctl/pull/891))
15+
- *(mcp)* add if_exists option to redis_ft_create ([#889](https://github.com/redis-developer/redisctl/pull/889))
16+
- *(mcp)* improve bulk_load for JSON seeding + collect_results flag ([#888](https://github.com/redis-developer/redisctl/pull/888))
17+
- *(mcp)* upgrade tower-mcp to 0.8.2 with dynamic prompt skills ([#845](https://github.com/redis-developer/redisctl/pull/845))
18+
- *(mcp)* add RediSearch skill prompts for index optimization workflows ([#843](https://github.com/redis-developer/redisctl/pull/843))
19+
20+
### Fixed
21+
22+
- *(mcp)* place NOSTEM before WEIGHT in FT.CREATE field args ([#879](https://github.com/redis-developer/redisctl/pull/879))
23+
- *(mcp)* serde coercion for numeric params + bulk load/seed tools ([#875](https://github.com/redis-developer/redisctl/pull/875))
24+
- *(mcp)* bail when --oauth is used (not yet implemented) ([#860](https://github.com/redis-developer/redisctl/pull/860))
25+
- *(mcp)* validate enum-like string params in RediSearch tools ([#864](https://github.com/redis-developer/redisctl/pull/864))
26+
- *(mcp)* harden YAML frontmatter parser and add tests ([#868](https://github.com/redis-developer/redisctl/pull/868))
27+
- *(mcp)* validate nx/xx mutual exclusivity in json_set ([#863](https://github.com/redis-developer/redisctl/pull/863))
28+
- *(mcp)* validate non-empty collections in RediSearch tools ([#865](https://github.com/redis-developer/redisctl/pull/865))
29+
- *(mcp)* validate non-empty collections in RedisJSON tools ([#862](https://github.com/redis-developer/redisctl/pull/862))
30+
- *(mcp)* reclassify ft_aliasdel and ft_dictdel as write tier ([#870](https://github.com/redis-developer/redisctl/pull/870))
31+
- *(mcp)* set permissive default on app tracing filter when audit enabled ([#859](https://github.com/redis-developer/redisctl/pull/859))
32+
33+
### Other
34+
35+
- *(mcp)* improve tool descriptions for search and bulk/seed tools ([#880](https://github.com/redis-developer/redisctl/pull/880))
36+
- *(mcp)* extract K/V pair formatting helper in search tools ([#871](https://github.com/redis-developer/redisctl/pull/871))
37+
- *(mcp)* clarify FT.ALTER limitations in query-tuning skill ([#861](https://github.com/redis-developer/redisctl/pull/861))
38+
- *(mcp)* remove unnecessary HashMap clones in main ([#866](https://github.com/redis-developer/redisctl/pull/866))
39+
- *(mcp)* clean up misleading _name param and blanket allow(dead_code) ([#867](https://github.com/redis-developer/redisctl/pull/867))
40+
- *(mcp)* unify static and dynamic prompt registration ([#869](https://github.com/redis-developer/redisctl/pull/869))
41+
1042
## [0.9.1](https://github.com/redis-developer/redisctl/compare/redisctl-mcp-v0.9.0...redisctl-mcp-v0.9.1) - 2026-03-07
1143

1244
### Added

crates/redisctl-mcp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ tower-mcp = { version = "0.8.2", features = ["http", "oauth", "dynamic-tools"] }
2121
schemars = "1.2"
2222

2323
# Internal crates
24-
redisctl-core = { version = "0.9.1", path = "../redisctl-core" }
24+
redisctl-core = { version = "0.10.0", path = "../redisctl-core" }
2525

2626
# External API clients (optional, gated by features)
2727
redis-cloud = { workspace = true, optional = true }

crates/redisctl/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.10.0](https://github.com/redis-developer/redisctl/compare/redisctl-v0.9.1...redisctl-v0.10.0) - 2026-03-17
11+
12+
### Other
13+
14+
- update Cargo.toml dependencies
15+
1016
## [0.9.1](https://github.com/redis-developer/redisctl/compare/redisctl-v0.9.0...redisctl-v0.9.1) - 2026-03-07
1117

1218
### Other

crates/redisctl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ path = "src/main.rs"
1818

1919

2020
[dependencies]
21-
redisctl-core = { version = "0.9.1", path = "../redisctl-core" }
21+
redisctl-core = { version = "0.10.0", path = "../redisctl-core" }
2222
redis-cloud = { workspace = true, features = ["tower-integration"] }
2323
redis-enterprise = { workspace = true, features = ["tower-integration"] }
2424
files-sdk = { workspace = true, optional = true }

0 commit comments

Comments
 (0)