@nexart/cli 0.12.1 → 0.12.2

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,18 @@
1
1
  # @nexart/cli — Changelog
2
2
 
3
+ ## v0.12.2 (2026-06-15) — bump core to `@nexart/ai-execution@^0.23.0`
4
+
5
+ Dependency alignment. No command behavior changes, no breaking changes.
6
+
7
+ - **Bumps** `@nexart/ai-execution` to `^0.23.0`, which adds optional identity
8
+ binding (`snapshot.identity`). The change is additive and PII-safe.
9
+ - **`nexart verify-bundle`** already verifies identity-bound bundles with no code
10
+ change: `snapshot.identity` is sealed snapshot data bound by `certificateHash`,
11
+ and the standalone verifier recomputes over the snapshot exactly as stored — so
12
+ a tampered `snapshot.identity` FAILS integrity, while identity-free bundles
13
+ verify byte-for-byte unchanged.
14
+ - Keeps the SDK-backed `nexart ai` commands on the latest core.
15
+
3
16
  ## v0.12.1 (2026-06-14) — packaging fix for `verify-bundle`
4
17
 
5
18
  Packaging-only fix. No functional changes, no breaking changes, no command
package/README.md CHANGED
@@ -667,7 +667,10 @@ nexart verify-bundle cer.json --public-key node-keys.json --verbose
667
667
  1. **Integrity** — recomputes `certificateHash` from the bundle's evidentiary
668
668
  payload (`bundleType`, `createdAt`, `snapshot`, `version`, and, when present,
669
669
  `context` / `contextSummary` / `policyEvaluation`) and compares it to the
670
- stored value. Canonicalisation is bound to `snapshot.protocolVersion`:
670
+ stored value. The whole `snapshot` is hashed, so an optional
671
+ `snapshot.identity` assertion (v0.23.0+) is bound by `certificateHash` and
672
+ tampering with it FAILS — no special-casing in the verifier. Canonicalisation
673
+ is bound to `snapshot.protocolVersion`:
671
674
  - `1.2.0` → **nexart-v1** (NexArt's original canonical JSON)
672
675
  - `1.3.0` → **jcs-v1** (RFC 8785 JSON Canonicalization Scheme)
673
676
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexart/cli",
3
- "version": "0.12.1",
3
+ "version": "0.12.2",
4
4
  "description": "NexArt CLI — Code Mode and AI execution certification",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -29,7 +29,7 @@
29
29
  "author": "NexArt",
30
30
  "license": "MIT",
31
31
  "dependencies": {
32
- "@nexart/ai-execution": "^0.22.0",
32
+ "@nexart/ai-execution": "^0.23.0",
33
33
  "@nexart/codemode-sdk": "^1.12.0",
34
34
  "yargs": "^17.7.2"
35
35
  },