@twin.org/node 0.10.1-next.2 → 0.10.1-next.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.
@@ -212,7 +212,7 @@
212
212
  "factory": {
213
213
  "noUnregister": "There is no {typeName} registered with the name \"{name}\"",
214
214
  "noGet": "The requested {typeName} \"{name}\" does not exist in the factory",
215
- "noCreate": "The requested {typeName} \"{name}\" cannot be created by the factory, with params \"{params}\"",
215
+ "noCreate": "The requested {typeName} \"{name}\" cannot be created by the factory, with params \"{args}\"",
216
216
  "noFacade": "The requested facade \"{name}\" is not registered, so it cannot be applied to the {typeName} factory",
217
217
  "noFacadeOnFacades": "Facades cannot be applied to the facade factory itself",
218
218
  "noFacadeWrap": "The facade \"{name}\" did not return a wrapped instance for the {typeName} factory"
@@ -244,6 +244,9 @@
244
244
  "capacityExceeded": "The payload size of {required} bytes exceeds the maximum capacity of {capacity} bytes for object \"{objectId}\"",
245
245
  "bufferFetchFailed": "Failed to retrieve shared buffer for object \"{objectId}\" from the main thread"
246
246
  },
247
+ "randomHelper": {
248
+ "maxLength": "Requested length \"{length}\" is greater than the maximum of \"{maxLength}\" bytes"
249
+ },
247
250
  "fetchHelper": {
248
251
  "decodingJSON": "Decoding JSON failed for route \"{url}\"",
249
252
  "failureStatusText": "The request to the API failed: \"{statusText}\"",
@@ -298,7 +301,8 @@
298
301
  "invalidChecksum": "The address contains an invalid checksum in address, \"{bech32}\"",
299
302
  "separatorMisused": "The separator character '1' should only be used between hrp and data, \"{bech32}\"",
300
303
  "lowerUpper": "The address my use either lowercase or uppercase, \"{bech32}\"",
301
- "dataTooShort": "The address does not contain enough data to decode, \"{bech32}\""
304
+ "dataTooShort": "The address does not contain enough data to decode, \"{bech32}\"",
305
+ "invalidLength": "The address length is outside the range permitted for bech32, \"{bech32}\""
302
306
  },
303
307
  "bip44": {
304
308
  "unsupportedKeyType": "The key type \"{keyType}\" is not supported"
@@ -1612,7 +1616,8 @@
1612
1616
  "node": {
1613
1617
  "unknownEnvVars": "Unknown environment variable properties [{keys}], they will be ignored. Check for typos in variable names, for custom variables use the {prefix}ENV_ALLOW_LIST.",
1614
1618
  "deprecatedEnvVar": "The environment variable \"{key}\" is deprecated and no longer has any effect, please use {replacements} instead. This variable will be removed in a future release.",
1615
- "deprecatedEnvVarNoReplacement": "The environment variable \"{key}\" is deprecated and no longer has any effect. This variable will be removed in a future release."
1619
+ "deprecatedEnvVarNoReplacement": "The environment variable \"{key}\" is deprecated and no longer has any effect. This variable will be removed in a future release.",
1620
+ "nativeModuleUnavailable": "The native module \"{specifier}\" could not be loaded, the pure JavaScript implementation will be used instead: {error}"
1616
1621
  },
1617
1622
  "common": {
1618
1623
  "devOnlyTool": "This tool is intended to be used for development purposes, it is not recommended for use in production scenarios."
package/docs/changelog.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.10.1-next.4](https://github.com/iotaledger/twin-node/compare/node-v0.10.1-next.3...node-v0.10.1-next.4) (2026-09-21)
4
+
5
+
6
+ ### Features
7
+
8
+ * add immutable proof task worker count env var ([#430](https://github.com/iotaledger/twin-node/issues/430)) ([5926e9f](https://github.com/iotaledger/twin-node/commit/5926e9f10582ee9ced0148aa7da5574741b977f9))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/node-core bumped from 0.10.1-next.3 to 0.10.1-next.4
16
+
17
+ ## [0.10.1-next.3](https://github.com/iotaledger/twin-node/compare/node-v0.10.1-next.2...node-v0.10.1-next.3) (2026-09-21)
18
+
19
+
20
+ ### Miscellaneous Chores
21
+
22
+ * **node:** Synchronize repo versions
23
+
24
+
25
+ ### Dependencies
26
+
27
+ * The following workspace dependencies were updated
28
+ * dependencies
29
+ * @twin.org/node-core bumped from 0.10.1-next.2 to 0.10.1-next.3
30
+
3
31
  ## [0.10.1-next.2](https://github.com/iotaledger/twin-node/compare/node-v0.10.1-next.1...node-v0.10.1-next.2) (2026-09-18)
4
32
 
5
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/node",
3
- "version": "0.10.1-next.2",
3
+ "version": "0.10.1-next.4",
4
4
  "description": "TWIN Node serving APIs using the specified configuration",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,7 +14,7 @@
14
14
  "node": ">=24.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@twin.org/node-core": "0.10.1-next.2"
17
+ "@twin.org/node-core": "0.10.1-next.4"
18
18
  },
19
19
  "bugs": {
20
20
  "url": "git+https://github.com/iotaledger/twin-node/issues"