|
1 | 1 | # simple-remote-ssh |
2 | 2 |
|
| 3 | +## 0.2.0 |
| 4 | + |
| 5 | +### Minor Changes |
| 6 | + |
| 7 | +- add auto complete mode with test code |
| 8 | + |
3 | 9 | ## 0.1.3 |
4 | 10 |
|
5 | 11 | ### Patch Changes |
6 | 12 |
|
7 | | -- 8a321a2: # 🧪 Test Infrastructure Improvements |
| 13 | +- 8a321a2: # 🧪 Test Infrastructure Improvements |
8 | 14 |
|
9 | | - ## ✅ Testing Enhancements |
| 15 | + ## ✅ Testing Enhancements |
10 | 16 |
|
11 | | - ### Complete Unit Test Suite |
| 17 | + ### Complete Unit Test Suite |
12 | 18 |
|
13 | | - - **SSH Host Types**: Comprehensive type validation tests |
14 | | - - **Config Management**: Full coverage for host CRUD operations |
15 | | - - **Environment Isolation**: Fixed test interference issues |
| 19 | + - **SSH Host Types**: Comprehensive type validation tests |
| 20 | + - **Config Management**: Full coverage for host CRUD operations |
| 21 | + - **Environment Isolation**: Fixed test interference issues |
16 | 22 |
|
17 | | - ### Development Experience |
| 23 | + ### Development Experience |
18 | 24 |
|
19 | | - - **Build-free Testing**: Direct TypeScript execution with `tsx` |
20 | | - - **Fast Feedback**: No compilation step needed for unit tests |
21 | | - - **Reliable Tests**: All 15 tests passing consistently |
| 25 | + - **Build-free Testing**: Direct TypeScript execution with `tsx` |
| 26 | + - **Fast Feedback**: No compilation step needed for unit tests |
| 27 | + - **Reliable Tests**: All 15 tests passing consistently |
22 | 28 |
|
23 | | - ### Technical Improvements |
| 29 | + ### Technical Improvements |
24 | 30 |
|
25 | | - - **Environment Isolation**: Fixed config path resolution for test independence |
26 | | - - **Test Reliability**: Each test runs in isolated temporary directory |
27 | | - - **Better Assertions**: More flexible and accurate test validations |
| 31 | + - **Environment Isolation**: Fixed config path resolution for test independence |
| 32 | + - **Test Reliability**: Each test runs in isolated temporary directory |
| 33 | + - **Better Assertions**: More flexible and accurate test validations |
28 | 34 |
|
29 | | - ## 🛠️ Infrastructure |
| 35 | + ## 🛠️ Infrastructure |
30 | 36 |
|
31 | | - - Added Vitest configuration with TypeScript support |
32 | | - - Configured test scripts for different scenarios |
33 | | - - Added comprehensive test fixtures and utilities |
| 37 | + - Added Vitest configuration with TypeScript support |
| 38 | + - Configured test scripts for different scenarios |
| 39 | + - Added comprehensive test fixtures and utilities |
34 | 40 |
|
35 | | - This release improves development workflow and code quality without changing user-facing functionality. |
| 41 | + This release improves development workflow and code quality without changing user-facing functionality. |
36 | 42 |
|
37 | 43 | ## 0.1.2 |
38 | 44 |
|
39 | 45 | ### Patch Changes |
40 | 46 |
|
41 | | -- github url update and config fix |
| 47 | +- github url update and config fix |
42 | 48 |
|
43 | 49 | ## 0.1.1 |
44 | 50 |
|
45 | 51 | ### Patch Changes |
46 | 52 |
|
47 | | -- e499e1f: # 🎉 Simple Remote SSH v0.1.0 - Initial Release |
| 53 | +- e499e1f: # 🎉 Simple Remote SSH v0.1.0 - Initial Release |
48 | 54 |
|
49 | | - ## ✨ Key Features |
| 55 | + ## ✨ Key Features |
50 | 56 |
|
51 | | - ### SSH Host Management |
| 57 | + ### SSH Host Management |
52 | 58 |
|
53 | | - - **Add Host**: `simple-ssh add` - Interactive host information input |
54 | | - - **List Hosts**: `simple-ssh list` - View saved host list |
55 | | - - **Edit Host**: `simple-ssh edit <hostname>` - Modify host information |
56 | | - - **Remove Host**: `simple-ssh remove <hostname>` - Delete host |
| 59 | + - **Add Host**: `simple-ssh add` - Interactive host information input |
| 60 | + - **List Hosts**: `simple-ssh list` - View saved host list |
| 61 | + - **Edit Host**: `simple-ssh edit <hostname>` - Modify host information |
| 62 | + - **Remove Host**: `simple-ssh remove <hostname>` - Delete host |
57 | 63 |
|
58 | | - ### SSH Connection |
| 64 | + ### SSH Connection |
59 | 65 |
|
60 | | - - **Interactive Connection**: `simple-ssh` - Select and connect to host |
61 | | - - **Direct Connection**: `simple-ssh connect <hostname>` - Connect directly to specific host |
62 | | - - **Connection Options**: Username and port override support |
| 66 | + - **Interactive Connection**: `simple-ssh` - Select and connect to host |
| 67 | + - **Direct Connection**: `simple-ssh connect <hostname>` - Connect directly to specific host |
| 68 | + - **Connection Options**: Username and port override support |
63 | 69 |
|
64 | | - ### Authentication Methods |
| 70 | + ### Authentication Methods |
65 | 71 |
|
66 | | - - **SSH Key File**: Secure key-based authentication |
67 | | - - **Password**: Interactive password input on connection |
68 | | - - **Default SSH Settings**: Use system default SSH configuration |
| 72 | + - **SSH Key File**: Secure key-based authentication |
| 73 | + - **Password**: Interactive password input on connection |
| 74 | + - **Default SSH Settings**: Use system default SSH configuration |
69 | 75 |
|
70 | | - ### Additional Features |
| 76 | + ### Additional Features |
71 | 77 |
|
72 | | - - **Tag System**: Host categorization and management |
73 | | - - **Description Field**: Per-host notes |
74 | | - - **Colorful UI**: Intuitive user interface |
| 78 | + - **Tag System**: Host categorization and management |
| 79 | + - **Description Field**: Per-host notes |
| 80 | + - **Colorful UI**: Intuitive user interface |
75 | 81 |
|
76 | | - ## 🚀 Installation & Usage |
| 82 | + ## 🚀 Installation & Usage |
77 | 83 |
|
78 | | - ```bash |
79 | | - # Global installation |
80 | | - npm install -g simple-remote-ssh |
| 84 | + ```bash |
| 85 | + # Global installation |
| 86 | + npm install -g simple-remote-ssh |
81 | 87 |
|
82 | | - # Usage |
83 | | - simple-ssh --help |
84 | | - ``` |
| 88 | + # Usage |
| 89 | + simple-ssh --help |
| 90 | + ``` |
85 | 91 |
|
86 | | - ## 💾 Configuration File |
| 92 | + ## 💾 Configuration File |
87 | 93 |
|
88 | | - Host information is securely stored in `~/.ssh-easy/config.json`. |
| 94 | + Host information is securely stored in `~/.ssh-easy/config.json`. |
0 commit comments