dsh-mcp-panel 0.6.0 → 0.6.1

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,15 @@
2
2
 
3
3
  All notable changes to this project are documented in this file.
4
4
 
5
+ ## [0.6.1] - 2026-08-27
6
+
7
+ ### Fixed
8
+
9
+ - Declare the web-client inject packages (`@deepseek-ai/dsh-client-connection`,
10
+ `@deepseek-ai/dsh-client-locale`, `@deepseek-ai/dsh-client-runtime`,
11
+ `@deepseek-ai/dsh-client-ui-settings`) as optional peerDependencies so the
12
+ bundle composition is explicit and standalone installs stay clean.
13
+
5
14
  ## [0.6.0] - 2026-08-26
6
15
 
7
16
  ### Added
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.0"
813
+ version: "0.6.1"
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.0",
3
+ "version": "0.6.1",
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",
@@ -120,7 +120,25 @@
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",
122
122
  "@deepseek-ai/dsh-typert-protocol": ">=0.1.0-rc.8 <0.2.0",
123
- "@deepseek-ai/schemastery": "^3.18.0"
123
+ "@deepseek-ai/schemastery": "^3.18.0",
124
+ "@deepseek-ai/dsh-client-connection": ">=0.1.1-rc.2 <0.2.0",
125
+ "@deepseek-ai/dsh-client-locale": ">=0.1.1-rc.2 <0.2.0",
126
+ "@deepseek-ai/dsh-client-runtime": ">=0.1.1-rc.2 <0.2.0",
127
+ "@deepseek-ai/dsh-client-ui-settings": ">=0.1.1-rc.2 <0.2.0"
128
+ },
129
+ "peerDependenciesMeta": {
130
+ "@deepseek-ai/dsh-client-connection": {
131
+ "optional": true
132
+ },
133
+ "@deepseek-ai/dsh-client-locale": {
134
+ "optional": true
135
+ },
136
+ "@deepseek-ai/dsh-client-runtime": {
137
+ "optional": true
138
+ },
139
+ "@deepseek-ai/dsh-client-ui-settings": {
140
+ "optional": true
141
+ }
124
142
  },
125
143
  "dependencies": {
126
144
  "tsdown": "^0.22.14",
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.0' }
41
+ export const PROBE_CLIENT_INFO = { name: 'dsh-mcp-panel', version: '0.6.1' }
42
42
 
43
43
  /** One settled probe: outcome status plus a sanitized one-line detail. */
44
44
  export interface ProbeOutcome {