@guandata/guanwf 0.1.833 → 0.1.834

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
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## @guandata/guanwf 0.1.834 - 2026-09-17
4
+
5
+ - `schedule set --failure-strategy` 改为已废弃的兼容参数,仅接受 `CONTINUE`;显式传 `END` 会在本地校验阶段失败且不发送写请求,节点失败后的后继调度由 `FAILURE` / `ALL` 连线决定。
6
+ - 同步共享鉴权与环境识别更新,支持内部 OAuth2 应用认证环境的服务域识别。
7
+
3
8
  ## @guandata/guanwf 0.1.833 - 2026-09-09
4
9
 
5
10
  - DSL 新增节点类型、依赖类型和更新模式等类型化常量,同时保留已有字符串写法的兼容性。
package/README.md CHANGED
@@ -48,6 +48,11 @@ guanwf install-skill
48
48
 
49
49
  ## 版本更新
50
50
 
51
+ ### @guandata/guanwf 0.1.834
52
+
53
+ - `schedule set --failure-strategy` 仅接受 `CONTINUE`,显式传 `END` 会在本地校验阶段失败;后继调度改由 `FAILURE` / `ALL` 连线决定。
54
+ - 同步共享鉴权与环境识别更新,支持识别内部 OAuth2 应用认证环境。
55
+
51
56
  ### @guandata/guanwf 0.1.833
52
57
 
53
58
  - DSL 提供节点类型、依赖类型和更新模式等类型化常量,并兼容已有字符串写法。
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@guandata/guanwf",
3
- "version": "0.1.833",
3
+ "version": "0.1.834",
4
4
  "description": "观远工作流数据流编辑工具 - 创建、编辑、导出、预览、保存数据流",
5
5
  "bin": {
6
6
  "guanwf": "bin/run.js"
@@ -38,7 +38,6 @@
38
38
  "node": ">=14"
39
39
  },
40
40
  "publishConfig": {
41
- "registry": "https://registry.npmjs.org/",
42
- "access": "public"
41
+ "registry": "https://registry.npmjs.org/"
43
42
  }
44
43
  }
@@ -359,8 +359,8 @@ guanwf schedule disable --dir <workdir> --confirm # 下线
359
359
  ```
360
360
 
361
361
  - crontab 是 Quartz 6/7 段表达式(秒 分 时 日 月 周 [年]),如 `0 30 6 * * ?` 每天 06:30。
362
- - `set` 可选 `--failure-strategy CONTINUE|END`(默认 CONTINUE)、
363
- `--warning NONE|SUCCESS|FAILURE|ALL`(默认 FAILURE)、`--start/--end` 生效区间、
362
+ - `--failure-strategy` 是已废弃的兼容参数,仅接受 `CONTINUE`;新离线开发固定提交 `CONTINUE`,失败后的调度行为由节点间 `FAILURE` / `ALL` 连线配置。
363
+ - `set` 可选 `--warning NONE|SUCCESS|FAILURE|ALL`(默认 FAILURE)、`--start/--end` 生效区间、
364
364
  `--auto-cancel-queued`(上一批未跑完时自动取消堆积实例)。
365
365
  - 已有调度时未指定的参数保留现状;事件调度使用 `guanwf schedule event get/set/disable`。
366
366
 
@@ -433,7 +433,7 @@ guanwf schedule disable --dir <workdir> --confirm
433
433
  ```
434
434
 
435
435
  - crontab 为 Quartz 表达式(秒 分 时 日 月 周 [年]),服务端校验合法性。
436
- - `--failure-strategy CONTINUE|END`:某作业失败后,无依赖关系的其他分支是否继续(默认 CONTINUE)。
436
+ - `--failure-strategy`:已废弃的兼容参数,仅接受 `CONTINUE`。新离线开发固定提交 `failureStrategy=CONTINUE`;节点失败后的后继调度由 `FAILURE` / `ALL` 连线决定,显式传 `END` 会在本地校验阶段失败且不发送写请求。
437
437
  - `--warning NONE|SUCCESS|FAILURE|ALL`:告警时机(默认 FAILURE)。
438
438
  - `--auto-cancel-queued`:上一批未跑完时自动取消堆积的排队实例(长链路编排建议开启)。
439
439
  - 已有调度时未指定的参数保留现状;只调度主工作流,被编排的作业自身不要再配调度