@aztec/noir-noir_js 4.0.0-nightly.20250907 → 4.0.0-nightly.20260108

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.
@@ -62,7 +62,7 @@ async function generateWitness(compiledProgram, inputs, foreignCallHandler = def
62
62
  return solvedWitness;
63
63
  }
64
64
  catch (err) {
65
- // Typescript types catched errors as unknown or any, so we need to narrow its type to check if it has raw assertion payload.
65
+ // Typescript types caught errors as unknown or any, so we need to narrow its type to check if it has raw assertion payload.
66
66
  if (typeof err === 'object' && err !== null && 'rawAssertionPayload' in err) {
67
67
  throw enrichExecutionError(compiledProgram, err);
68
68
  }
@@ -59,7 +59,7 @@ export async function generateWitness(compiledProgram, inputs, foreignCallHandle
59
59
  return solvedWitness;
60
60
  }
61
61
  catch (err) {
62
- // Typescript types catched errors as unknown or any, so we need to narrow its type to check if it has raw assertion payload.
62
+ // Typescript types caught errors as unknown or any, so we need to narrow its type to check if it has raw assertion payload.
63
63
  if (typeof err === 'object' && err !== null && 'rawAssertionPayload' in err) {
64
64
  throw enrichExecutionError(compiledProgram, err);
65
65
  }
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "contributors": [
4
4
  "The Noir Team <team@noir-lang.org>"
5
5
  ],
6
- "version": "4.0.0-nightly.20250907",
6
+ "version": "4.0.0-nightly.20260108",
7
7
  "packageManager": "yarn@4.5.2",
8
8
  "license": "(MIT OR Apache-2.0)",
9
9
  "type": "module",
@@ -17,9 +17,9 @@
17
17
  "url": "https://github.com/noir-lang/noir/issues"
18
18
  },
19
19
  "dependencies": {
20
- "@aztec/noir-acvm_js": "4.0.0-nightly.20250907",
21
- "@aztec/noir-noirc_abi": "4.0.0-nightly.20250907",
22
- "@aztec/noir-types": "4.0.0-nightly.20250907",
20
+ "@aztec/noir-acvm_js": "4.0.0-nightly.20260108",
21
+ "@aztec/noir-noirc_abi": "4.0.0-nightly.20260108",
22
+ "@aztec/noir-types": "4.0.0-nightly.20260108",
23
23
  "pako": "^2.1.0"
24
24
  },
25
25
  "files": [
@@ -50,19 +50,19 @@
50
50
  "clean": "rm -rf ./lib"
51
51
  },
52
52
  "devDependencies": {
53
- "@types/chai": "^4",
53
+ "@types/chai": "^5",
54
54
  "@types/mocha": "^10.0.10",
55
55
  "@types/node": "^22.13.10",
56
56
  "@types/pako": "^2",
57
57
  "@types/prettier": "^3.0.0",
58
- "chai": "^4.4.1",
59
- "eslint": "^9.28.0",
60
- "eslint-plugin-prettier": "^5.4.1",
61
- "mocha": "^11.5.0",
62
- "prettier": "3.5.3",
58
+ "chai": "^6.2.2",
59
+ "eslint": "^9.39.2",
60
+ "eslint-plugin-prettier": "^5.5.4",
61
+ "mocha": "^11.7.5",
62
+ "prettier": "3.7.4",
63
63
  "ts-node": "^10.9.2",
64
64
  "tsc-multi": "^1.1.0",
65
- "tsx": "^4.19.3",
65
+ "tsx": "^4.21.0",
66
66
  "typescript": "^5.8.3"
67
67
  }
68
68
  }