Skip to content

Commit b5dba8a

Browse files
Release remote SSH 0.3.1
1 parent 294ecfb commit b5dba8a

5 files changed

Lines changed: 12 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.3.1
4+
5+
- Fixed stdio lifecycle handling so async SSH tool calls return results reliably when stdin closes.
6+
37
## 0.3.0
48

59
- Added conversational SSH connection management with `remote_add_host`.

plugins/remote-ssh/.codex-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "remote-ssh",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "Enterprise-grade Remote SSH tools for Codex with host policies, audit logging, and safe file operations.",
55
"author": {
66
"name": "Zain Technologies LTD",

plugins/remote-ssh/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.3.1
4+
5+
- Fixed stdio lifecycle handling so async SSH tool calls return results reliably when stdin closes.
6+
37
## 0.3.0
48

59
- Added conversational SSH connection management with `remote_add_host`.

plugins/remote-ssh/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zaintechnologiesltd/codex-remote-ssh",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "Enterprise-grade Remote SSH MCP tools for OpenAI Codex.",
55
"license": "MIT",
66
"author": {

plugins/remote-ssh/scripts/remote-ssh-mcp.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const os = require("node:os");
77
const path = require("node:path");
88
const readline = require("node:readline");
99

10-
const SERVER_VERSION = "0.3.0";
10+
const SERVER_VERSION = "0.3.1";
1111
const PROTOCOL_VERSION = "2024-11-05";
1212
const DEFAULT_MAX_OUTPUT_BYTES = 1024 * 1024;
1313
const DEFAULT_CONNECT_TIMEOUT_SECONDS = 15;
@@ -607,9 +607,7 @@ function startServer() {
607607
}
608608
});
609609

610-
rl.on("close", () => {
611-
process.exit(0);
612-
});
610+
rl.on("close", () => {});
613611
}
614612

615613
if (require.main === module) {

0 commit comments

Comments
 (0)