dsh-mcp-panel 0.6.5 → 0.6.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project are documented in this file.
4
4
 
5
+ ## [0.6.6] - 2026-09-03
6
+
7
+ ### Changed
8
+
9
+ - Runtime `dependencies` entry `@deepseek-ai/dsh-subprocess` moved from `0.1.1-rc.2` to the published `0.1.2-alpha.5` line.
10
+ - Dev pins `@deepseek-ai/cordis-plugin-loader ^1.0.3` / `@deepseek-ai/cordis-plugin-include ^1.0.7` aligned with the `cordis 4.0.2` peer ranges.
11
+
5
12
  ## [0.6.5] - 2026-09-02
6
13
 
7
14
  ### Docs
package/lib/index.js CHANGED
@@ -810,7 +810,7 @@ const INITIALIZE_PROTOCOL_VERSION = "2024-11-05";
810
810
  * advertised version tracks the package version. */
811
811
  const PROBE_CLIENT_INFO = {
812
812
  name: "dsh-mcp-panel",
813
- version: "0.6.5"
813
+ version: "0.6.6"
814
814
  };
815
815
  /** Display cap for server-reported name/version fields in probe details. */
816
816
  const DISPLAY_LIMIT = 80;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-mcp-panel",
3
- "version": "0.6.5",
3
+ "version": "0.6.6",
4
4
  "description": "MCP management console for the official DeepSeek Harness MCP client: /mcp command with health diagnostics and pipeline trial calls, a Settings MCP tab with server CRUD (append-only profile-patch fragments, approval-gated writes with automatic backups), a tool trial console over the official tool pipeline, connection status, reconnect counts and sanitized tool inventory, plus an optional Streamable HTTP probe.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -115,7 +115,7 @@
115
115
  },
116
116
  "peerDependencies": {
117
117
  "@deepseek-ai/cordis": "^4.0.2",
118
- "@deepseek-ai/cordis-plugin-loader": "^1.0.2",
118
+ "@deepseek-ai/cordis-plugin-loader": "^1.0.3",
119
119
  "@deepseek-ai/dsh-commands": ">=0.1.0-rc.8 <0.2.0",
120
120
  "@deepseek-ai/dsh-jobs": ">=0.1.0-rc.8 <0.2.0",
121
121
  "@deepseek-ai/dsh-tools": ">=0.1.0-rc.8 <0.2.0",
@@ -144,13 +144,13 @@
144
144
  "tsdown": "^0.22.14",
145
145
  "typescript": "^7.0.0",
146
146
  "zod": "^4.4.3",
147
- "@deepseek-ai/dsh-subprocess": "0.1.1-rc.2"
147
+ "@deepseek-ai/dsh-subprocess": "0.1.2-alpha.5"
148
148
  },
149
149
  "devDependencies": {
150
150
  "@deepseek-ai/dsh-attachment": "0.1.2-alpha.5",
151
151
  "@deepseek-ai/cordis": "^4.0.2",
152
- "@deepseek-ai/cordis-plugin-include": "1.0.6",
153
- "@deepseek-ai/cordis-plugin-loader": "^1.0.2",
152
+ "@deepseek-ai/cordis-plugin-include": "^1.0.7",
153
+ "@deepseek-ai/cordis-plugin-loader": "^1.0.3",
154
154
  "@deepseek-ai/dsh-agent": "0.1.2-alpha.5",
155
155
  "@deepseek-ai/dsh-app-boot": "0.1.2-alpha.5",
156
156
  "@deepseek-ai/dsh-api-remotes": "0.1.2-alpha.5",
package/src/probe.ts CHANGED
@@ -38,7 +38,7 @@ const INITIALIZE_PROTOCOL_VERSION = '2024-11-05'
38
38
  /** MCP clientInfo facts; protocol constants, not configuration. Exported so the
39
39
  * version-consistency tripwire (`tests/version.spec.ts`) can assert the
40
40
  * advertised version tracks the package version. */
41
- export const PROBE_CLIENT_INFO = { name: 'dsh-mcp-panel', version: '0.6.5' }
41
+ export const PROBE_CLIENT_INFO = { name: 'dsh-mcp-panel', version: '0.6.6' }
42
42
 
43
43
  /** One settled probe: outcome status plus a sanitized one-line detail. */
44
44
  export interface ProbeOutcome {