Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dsh-plugins/dsh-ccpg-brand/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dsh-ccpg-brand",
"version": "0.5.1",
"version": "0.6.0",
"private": false,
"type": "module",
"main": "lib/index.js",
Expand Down
2 changes: 1 addition & 1 deletion dsh-plugins/dsh-ccpg-canvasui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dsh-ccpg-canvasui",
"version": "0.5.1",
"version": "0.6.0",
"private": false,
"type": "module",
"main": "lib/index.js",
Expand Down
2 changes: 1 addition & 1 deletion dsh-plugins/dsh-ccpg-document-preview/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dsh-ccpg-document-preview",
"version": "0.5.1",
"version": "0.6.0",
"private": false,
"description": "Shared full-screen document preview for dsh and React applications",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion dsh-plugins/dsh-ccpg-larkauth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dsh-ccpg-larkauth",
"version": "0.5.1",
"version": "0.6.0",
"private": false,
"type": "module",
"main": "lib/index.js",
Expand Down
2 changes: 1 addition & 1 deletion dsh-plugins/dsh-ccpg-llm-guard/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dsh-ccpg-llm-guard",
"version": "0.5.1",
"version": "0.6.0",
"private": false,
"type": "module",
"main": "lib/index.js",
Expand Down
16 changes: 8 additions & 8 deletions dsh-plugins/dsh-ccpg-one/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dsh-ccpg-one",
"version": "0.5.1",
"version": "0.6.0",
"description": "Workflow One - Visual AI workflow orchestrator for DeepSeek Harness (dsh), with multi-agent DAGs, live execution, recovery, and Feishu integration",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -47,13 +47,13 @@
],
"dependencies": {
"dsh-better-sidebar": "0.16.1",
"dsh-ccpg-canvasui": "0.5.1",
"dsh-ccpg-document-preview": "0.5.1",
"dsh-ccpg-larkauth": "0.5.1",
"dsh-ccpg-llm-guard": "0.5.1",
"dsh-ccpg-orchestrator": "0.5.1",
"dsh-ccpg-tools": "0.5.1",
"dsh-ccpg-web": "0.5.1"
"dsh-ccpg-canvasui": "0.6.0",
"dsh-ccpg-document-preview": "0.6.0",
"dsh-ccpg-larkauth": "0.6.0",
"dsh-ccpg-llm-guard": "0.6.0",
"dsh-ccpg-orchestrator": "0.6.0",
"dsh-ccpg-tools": "0.6.0",
"dsh-ccpg-web": "0.6.0"
},
"publishConfig": {
"access": "public",
Expand Down
2 changes: 1 addition & 1 deletion dsh-plugins/dsh-ccpg-orchestrator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dsh-ccpg-orchestrator",
"version": "0.5.1",
"version": "0.6.0",
"private": false,
"type": "module",
"main": "lib/index.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ console.log('system-upgrade tests:');
assert.match(plan.actions[0].title, /更新/);
const calls = [];
const realFetch = globalThis.fetch;
globalThis.fetch = async () => ({ ok: true, json: async () => ({ 'dist-tags': { latest: '0.5.1' } }) });
globalThis.fetch = async () => ({ ok: true, json: async () => ({ 'dist-tags': { latest: '0.6.0' } }) });
try {
await executePlan(plan, {
dshBin: '/fake/dsh',
Expand All @@ -285,7 +285,7 @@ console.log('system-upgrade tests:');
}
const up = calls.find((c) => c[4] === 'up');
assert.ok(up, '在装用户用 up 原地更新');
assert.equal(up[5], `${PACKAGE}@0.5.1`);
assert.equal(up[5], `${PACKAGE}@0.6.0`);
assert.ok(!calls.some((c) => c[4] === 'remove'), 'up 路径不 remove 任何包');
assert.ok(calls.some((c) => c[4] === 'add' && String(c[5] || '').startsWith(SIDEBAR)), '纯净安装兜底:依赖表无 sidebar 时补 add 注册 bundle');
} finally {
Expand Down
2 changes: 1 addition & 1 deletion dsh-plugins/dsh-ccpg-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dsh-ccpg-tools",
"version": "0.5.1",
"version": "0.6.0",
"private": false,
"type": "module",
"main": "lib/index.js",
Expand Down
2 changes: 1 addition & 1 deletion dsh-plugins/dsh-ccpg-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dsh-ccpg-web",
"version": "0.5.1",
"version": "0.6.0",
"private": false,
"type": "module",
"main": "lib/index.js",
Expand Down
Loading