@twin.org/node 0.9.4-next.2 → 0.9.4-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.
- package/dist/locales/en.json +10 -3
- package/docs/changelog.md +14 -0
- package/package.json +2 -2
package/dist/locales/en.json
CHANGED
|
@@ -1427,12 +1427,17 @@
|
|
|
1427
1427
|
"gaugeNoIncDec": "A gauge can not be incremented or decremented",
|
|
1428
1428
|
"maxHistoryMustBePositiveInteger": "The maxHistory option must be a positive integer",
|
|
1429
1429
|
"metricValueTaskFailed": "The metric value background task failed \"{taskId}\"",
|
|
1430
|
-
"backgroundTaskComponentMissing": "The metric values cannot be written as no background task component is available"
|
|
1430
|
+
"backgroundTaskComponentMissing": "The metric values cannot be written as no background task component is available",
|
|
1431
|
+
"metricValueThreadStalled": "No metric value background task has completed for \"{stalledForMs}\" ms, with task \"{taskId}\" outstanding of \"{taskCount}\", so the background thread is being replaced",
|
|
1432
|
+
"metricValueThreadRestartFailed": "The stalled metric value background thread could not be replaced, so no further metric values can be written",
|
|
1433
|
+
"stopFlushFailed": "The final metric value write failed while stopping, so the values the background thread was holding may not have been persisted",
|
|
1434
|
+
"metricValueThreadCheckFailed": "The check for a stalled metric value background thread failed"
|
|
1431
1435
|
},
|
|
1432
1436
|
"metricValueWriter": {
|
|
1433
1437
|
"flushFailed": "Failed to flush metric values to storage",
|
|
1434
1438
|
"invalidMetricOperation": "The operation \"{operation}\" is not valid for metric \"{id}\" of type \"{type}\"",
|
|
1435
|
-
"trimFailed": "Failed to trim the metric history to its retention cap"
|
|
1439
|
+
"trimFailed": "Failed to trim the metric history to its retention cap",
|
|
1440
|
+
"intervalWriteFailed": "The interval write of the pending metric values failed"
|
|
1436
1441
|
},
|
|
1437
1442
|
"openTelemetryTelemetryConnector": {
|
|
1438
1443
|
"metricNotFound": "The metric could not be found \"{notFoundId}\"",
|
|
@@ -1631,7 +1636,9 @@
|
|
|
1631
1636
|
"sendTerminateFailed": "Failed to send terminate to consumer for negotiation id: \"{id}\", correlation id: \"{correlationId}\""
|
|
1632
1637
|
},
|
|
1633
1638
|
"entityStorageTelemetryConnector": {
|
|
1634
|
-
"flushTimeout": "The background thread did not confirm the flush within \"{timeoutMs}\" ms for task \"{taskId}\""
|
|
1639
|
+
"flushTimeout": "The background thread did not confirm the flush within \"{timeoutMs}\" ms for task \"{taskId}\", with \"{taskCount}\" tasks outstanding",
|
|
1640
|
+
"metricValueThreadRestarted": "The stalled metric value background thread was replaced, and the tasks it was given will be processed by the new one",
|
|
1641
|
+
"metricValueTaskStateMissed": "The completion of the metric value background task \"{taskId}\" was never reported, its state is now \"{status}\", so the background thread is treated as working rather than replaced"
|
|
1635
1642
|
}
|
|
1636
1643
|
},
|
|
1637
1644
|
"node": {
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.4-next.3](https://github.com/iotaledger/twin-node/compare/node-v0.9.4-next.2...node-v0.9.4-next.3) (2026-09-09)
|
|
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.9.4-next.2 to 0.9.4-next.3
|
|
16
|
+
|
|
3
17
|
## [0.9.4-next.2](https://github.com/iotaledger/twin-node/compare/node-v0.9.4-next.1...node-v0.9.4-next.2) (2026-09-08)
|
|
4
18
|
|
|
5
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/node",
|
|
3
|
-
"version": "0.9.4-next.
|
|
3
|
+
"version": "0.9.4-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.9.4-next.
|
|
17
|
+
"@twin.org/node-core": "0.9.4-next.3"
|
|
18
18
|
},
|
|
19
19
|
"bugs": {
|
|
20
20
|
"url": "git+https://github.com/iotaledger/twin-node/issues"
|