qa360 1.1.5 → 1.1.7

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.
@@ -374,8 +374,8 @@ export class Phase3Runner {
374
374
  afterAll: result.hooks.afterAll.length
375
375
  }
376
376
  };
377
- // Canonicalize the payload for signing
378
- const canonicalPayload = canonicalize(proofPayload);
377
+ // Canonicalize the payload for signing (must match verification: canonical + newline)
378
+ const canonicalPayload = canonicalize(proofPayload) + '\n';
379
379
  // Sign with Ed25519
380
380
  let signatureValue;
381
381
  let algorithm;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qa360",
3
- "version": "1.1.5",
3
+ "version": "1.1.7",
4
4
  "description": "QA360 Proof CLI - Quality as Cryptographic Proof",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",