skill-family-harness-node 0.8.3 → 0.8.4

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,21 @@
1
1
  # Changelog
2
2
 
3
+ <!-- release-skill:changelog:start version=0.8.4 locale=en baseline=sha256:dfb053d7719d3c7cb5b7d8dbe7a2349597696614651ef4ae04451c34cd7bbc02 -->
4
+ ## [0.8.4] - 2026-08-24
5
+
6
+ Lockstep Foundation 0.8.4 version update with no new Harness mechanism or public API.
7
+
8
+ ### Changed
9
+
10
+ - Moves the package version to 0.8.4 together with Contracts and Engineering Kit.
11
+ - Keeps all 21 Harness capabilities and public exports unchanged; source-authority receipt validation belongs to Contracts.
12
+
13
+ ### Upgrade Notes
14
+
15
+ Consumers must pin all three Foundation packages to exactly 0.8.4. No Harness API migration is required.
16
+ <!-- release-skill:changelog:end version=0.8.4 locale=en -->
17
+
18
+
3
19
  <!-- release-skill:changelog:start version=0.8.3 locale=en baseline=sha256:449943bedf3698888fec4dcb09a0460f337b9406d5258946a3d3ffcd23143b8d -->
4
20
  ## [0.8.3] - 2026-08-23
5
21
 
@@ -1,5 +1,21 @@
1
1
  # 变更日志
2
2
 
3
+ <!-- release-skill:changelog:start version=0.8.4 locale=zh-CN baseline=sha256:e8d7be87a26ef296ee4ae27e2325ac8ff1dc33fc69e5f4a65520656f9860bb91 -->
4
+ ## [0.8.4] - 2026-08-24
5
+
6
+ 随 Foundation 0.8.4 锁步升版;Harness 不新增机制或公共 API。
7
+
8
+ ### 变更
9
+
10
+ - 包版本与 Contracts、Engineering Kit 一同升至 0.8.4。
11
+ - 21 项 Harness 能力与公共导出保持不变;source-authority receipt 校验归 Contracts。
12
+
13
+ ### 升级说明
14
+
15
+ 消费者必须把三个 Foundation 包精确锁定到 0.8.4;Harness API 无需迁移。
16
+ <!-- release-skill:changelog:end version=0.8.4 locale=zh-CN -->
17
+
18
+
3
19
  <!-- release-skill:changelog:start version=0.8.3 locale=zh-CN baseline=sha256:b84695a286aca7c1a9f90844f8682cde07d32276cebc11583568bc5ef11753fc -->
4
20
  ## [0.8.3] - 2026-08-23
5
21
 
package/README.md CHANGED
@@ -4,28 +4,23 @@
4
4
 
5
5
  # skill-family-harness-node
6
6
 
7
- <!-- release-skill:release-version: 0.8.3 -->
7
+ <!-- release-skill:release-version: 0.8.4 -->
8
8
 
9
9
  The **single default Node implementation** of the Contracts mechanism protocol. This is a thin runtime: it only implements the mechanism protocol, introduces no business semantics, and does not provide a second-language implementation.
10
10
 
11
11
  <!-- release-skill:managed:start id=latest-release -->
12
- **0.8.3** (2026-08-23)
12
+ **0.8.4** (2026-08-24)
13
13
 
14
- Path containment now tolerates one exact anchor-removal race while preserving fail-closed escape checks.
14
+ Lockstep Foundation 0.8.4 version update with no new Harness mechanism or public API.
15
15
 
16
16
  **Changed**
17
17
 
18
- - A second ENOENT and every non-ENOENT failure remain closed; symlink swaps, out-of-root targets, and all existing containment checks remain rejected.
19
- - Keeps the hook private to the paths module test surface and adds no public export, general retry policy, lock layer, ledger, or runner.
20
- - Moves the package version to 0.8.3 together with Contracts and Engineering Kit.
21
-
22
- **Fixed**
23
-
24
- - When realpath of the selected existing anchor fails with ENOENT because another process removed it, resolveContained recomputes the deepest existing ancestor exactly once.
18
+ - Moves the package version to 0.8.4 together with Contracts and Engineering Kit.
19
+ - Keeps all 21 Harness capabilities and public exports unchanged; source-authority receipt validation belongs to Contracts.
25
20
 
26
21
  **Upgrade Notes**
27
22
 
28
- Consumers must pin all three Foundation packages to exactly 0.8.3. Concurrent lock acquisition can now survive the current owner removing the selected lock-file anchor; no Harness API migration is required.
23
+ Consumers must pin all three Foundation packages to exactly 0.8.4. No Harness API migration is required.
29
24
  <!-- release-skill:managed:end id=latest-release -->
30
25
 
31
26
  ## Problem It Solves
@@ -39,14 +34,14 @@ The Harness consumes `skill-family-contracts` (a workspace dependency), reusing
39
34
  ## Installation and Minimal Example
40
35
 
41
36
  ```sh
42
- npm install skill-family-harness-node@0.8.3
37
+ npm install skill-family-harness-node@0.8.4
43
38
  npm info skill-family-harness-node --help
44
39
  ```
45
40
 
46
41
  The minimal example shows validating a contract document inside Node:
47
42
 
48
43
  ```js
49
- // Run from an empty directory: npm install skill-family-harness-node@0.8.3
44
+ // Run from an empty directory: npm install skill-family-harness-node@0.8.4
50
45
  import { validateContractDocument } from "skill-family-harness-node";
51
46
 
52
47
  const document = {
package/README.zh-CN.md CHANGED
@@ -5,28 +5,23 @@
5
5
 
6
6
  # skill-family-harness-node
7
7
 
8
- <!-- release-skill:release-version: 0.8.3 -->
8
+ <!-- release-skill:release-version: 0.8.4 -->
9
9
 
10
10
  Contracts 机制协议的**唯一默认 Node 实现**。这是一个薄运行时(thin runtime):只实现机制协议,不引入业务语义,不做第二语言实现。
11
11
 
12
12
  <!-- release-skill:managed:start id=latest-release -->
13
- **0.8.3** (2026-08-23)
13
+ **0.8.4** (2026-08-24)
14
14
 
15
- 路径收容现在可处理一次精确的锚点并发删除,同时保持越界检查失败关闭。
15
+ 随 Foundation 0.8.4 锁步升版;Harness 不新增机制或公共 API。
16
16
 
17
17
  **变更**
18
18
 
19
- - 第二次 ENOENT 与所有非 ENOENT 错误仍失败关闭;符号链接替换、根目录外目标和既有收容检查仍全部拒绝。
20
- - 测试钩子只留在 paths 模块的测试表面,不新增公共导出、通用重试策略、锁层、账本或 runner
21
- - 包版本与 Contracts、Engineering Kit 一同升至 0.8.3。
22
-
23
- **修复**
24
-
25
- - 当另一进程删除已选锚点,导致该锚点的 realpath 返回 ENOENT 时,resolveContained 仅重新计算一次最深既存祖先。
19
+ - 包版本与 Contracts、Engineering Kit 一同升至 0.8.4。
20
+ - 21 Harness 能力与公共导出保持不变;source-authority receipt 校验归 Contracts
26
21
 
27
22
  **升级说明**
28
23
 
29
- 消费者必须把三个 Foundation 包精确锁定到 0.8.3。并发获取锁时,即使当前持有者删除已选锁文件锚点,也能完成一次安全重求;Harness API 无需迁移。
24
+ 消费者必须把三个 Foundation 包精确锁定到 0.8.4;Harness API 无需迁移。
30
25
  <!-- release-skill:managed:end id=latest-release -->
31
26
 
32
27
  ## 解决的问题
@@ -40,14 +35,14 @@ Harness 消费 `skill-family-contracts`(工作区依赖),复用其方言
40
35
  ## 安装和最小示例
41
36
 
42
37
  ```sh
43
- npm install skill-family-harness-node@0.8.3
38
+ npm install skill-family-harness-node@0.8.4
44
39
  npm info skill-family-harness-node --help
45
40
  ```
46
41
 
47
42
  最小示例演示在 Node 内校验一份契约文档:
48
43
 
49
44
  ```js
50
- // 从空目录运行:npm install skill-family-harness-node@0.8.3
45
+ // 从空目录运行:npm install skill-family-harness-node@0.8.4
51
46
  import { validateContractDocument } from "skill-family-harness-node";
52
47
 
53
48
  const document = {
package/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "dependencies": {
11
11
  "@pnpm/lockfile.fs": "1001.1.35",
12
12
  "ipaddr.js": "2.5.0",
13
- "skill-family-contracts": "0.8.3",
13
+ "skill-family-contracts": "0.8.4",
14
14
  "yaml": "2.9.0"
15
15
  },
16
16
  "description": "Thin Node.js mechanism runtime for Skill Family engineering contracts.",
@@ -45,7 +45,7 @@
45
45
  "url": "https://github.com/ifoohoo/skill-family-harness-node.git"
46
46
  },
47
47
  "type": "module",
48
- "version": "0.8.3",
48
+ "version": "0.8.4",
49
49
  "scripts": {
50
50
  "check": "node --test",
51
51
  "test": "node --test"
@@ -0,0 +1,17 @@
1
+ version: 0.8.4
2
+ date: 2026-08-24
3
+ locales:
4
+ en:
5
+ summary: Lockstep Foundation 0.8.4 version update with no new Harness mechanism or public API.
6
+ changes:
7
+ changed:
8
+ - Moves the package version to 0.8.4 together with Contracts and Engineering Kit.
9
+ - Keeps all 21 Harness capabilities and public exports unchanged; source-authority receipt validation belongs to Contracts.
10
+ upgradeNotes: Consumers must pin all three Foundation packages to exactly 0.8.4. No Harness API migration is required.
11
+ zh-CN:
12
+ summary: 随 Foundation 0.8.4 锁步升版;Harness 不新增机制或公共 API。
13
+ changes:
14
+ changed:
15
+ - 包版本与 Contracts、Engineering Kit 一同升至 0.8.4。
16
+ - 21 项 Harness 能力与公共导出保持不变;source-authority receipt 校验归 Contracts。
17
+ upgradeNotes: 消费者必须把三个 Foundation 包精确锁定到 0.8.4;Harness API 无需迁移。