@twin.org/node 0.10.1-next.3 → 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.
- package/dist/locales/en.json +3 -2
- package/docs/changelog.md +14 -0
- package/package.json +2 -2
package/dist/locales/en.json
CHANGED
|
@@ -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 \"{
|
|
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"
|
|
@@ -301,7 +301,8 @@
|
|
|
301
301
|
"invalidChecksum": "The address contains an invalid checksum in address, \"{bech32}\"",
|
|
302
302
|
"separatorMisused": "The separator character '1' should only be used between hrp and data, \"{bech32}\"",
|
|
303
303
|
"lowerUpper": "The address my use either lowercase or uppercase, \"{bech32}\"",
|
|
304
|
-
"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}\""
|
|
305
306
|
},
|
|
306
307
|
"bip44": {
|
|
307
308
|
"unsupportedKeyType": "The key type \"{keyType}\" is not supported"
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
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
|
+
|
|
3
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)
|
|
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.
|
|
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.
|
|
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"
|