File tree Expand file tree Collapse file tree 6 files changed +41
-9
lines changed
Expand file tree Collapse file tree 6 files changed +41
-9
lines changed Original file line number Diff line number Diff line change 22
33All notable changes to this project will be documented in this file.
44
5+ ## [ 0.6.2] - 2025-09-22
6+
7+ ### 🐛 Bug Fixes
8+
9+ - ** error-handling** : Improve error messages to include HTTP status codes (#363 )
10+ - Show specific messages like "401 Unauthorized: Invalid username or password"
11+ - Display "404 Not Found: The requested resource does not exist"
12+ - Preserve HTTP status codes through the entire error chain
13+ - Replace generic "Configuration error" with actionable error details
14+
15+ ### 🚀 Features
16+
17+ - ** docker** : Enhance Docker Compose setup with comprehensive redisctl examples (#363 )
18+ - Add extensive examples demonstrating redisctl usage
19+ - Replace curl commands with redisctl equivalents
20+ - Include proper authentication patterns
21+
22+ ## [ 0.6.1] - 2025-09-17
23+
24+ ### 🚀 Features
25+
26+ - Add secure credential storage using OS keyring (#360 )
27+ - Add workflow_dispatch to Docker workflow for manual triggers (#358 )
28+
29+ ### 🐛 Bug Fixes
30+
31+ - Docker workflow version extraction for manual dispatch (#359 )
32+
33+ ### 📚 Documentation
34+
35+ - Reorganize documentation structure for better navigation (#362 )
36+
537## [ 0.6.0] - 2025-09-16
638
739### ✨ Features
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ default-members = [
1212]
1313
1414[workspace .package ]
15- version = " 0.6.0 "
15+ version = " 0.6.2 "
1616edition = " 2024"
1717rust-version = " 1.89"
1818authors = [" Josh Rotenberg <joshrotenberg@gmail.com>" ]
Original file line number Diff line number Diff line change 11[package ]
22name = " redis-cloud"
3- version = " 0.6.1 "
3+ version = " 0.6.2 "
44edition.workspace = true
55authors.workspace = true
66license.workspace = true
Original file line number Diff line number Diff line change 11[package ]
22name = " redis-enterprise"
3- version = " 0.6.1 "
3+ version = " 0.6.2 "
44edition.workspace = true
55authors.workspace = true
66license.workspace = true
Original file line number Diff line number Diff line change 11[package ]
22name = " redisctl"
3- version = " 0.6.1 "
3+ version = " 0.6.2 "
44edition.workspace = true
55authors.workspace = true
66license.workspace = true
@@ -18,8 +18,8 @@ path = "src/main.rs"
1818
1919
2020[dependencies ]
21- redis-cloud = { version = " 0.6.1 " , path = " ../redis-cloud" }
22- redis-enterprise = { version = " 0.6.1 " , path = " ../redis-enterprise" }
21+ redis-cloud = { version = " 0.6.2 " , path = " ../redis-cloud" }
22+ redis-enterprise = { version = " 0.6.2 " , path = " ../redis-enterprise" }
2323
2424# CLI dependencies
2525clap = { workspace = true }
You can’t perform that action at this time.
0 commit comments