@twin.org/node 0.10.1-next.2 → 0.10.1-next.3

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.
@@ -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}\"",
@@ -1612,7 +1615,8 @@
1612
1615
  "node": {
1613
1616
  "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
1617
  "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."
1618
+ "deprecatedEnvVarNoReplacement": "The environment variable \"{key}\" is deprecated and no longer has any effect. This variable will be removed in a future release.",
1619
+ "nativeModuleUnavailable": "The native module \"{specifier}\" could not be loaded, the pure JavaScript implementation will be used instead: {error}"
1616
1620
  },
1617
1621
  "common": {
1618
1622
  "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,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [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)
4
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **node:** Synchronize repo versions
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.2 to 0.10.1-next.3
16
+
3
17
  ## [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
18
 
5
19
 
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.3",
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.3"
18
18
  },
19
19
  "bugs": {
20
20
  "url": "git+https://github.com/iotaledger/twin-node/issues"