@twin.org/node 0.9.2-next.12 → 0.9.2-next.14
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 +4 -0
- package/docs/changelog.md +28 -0
- package/package.json +2 -2
package/dist/locales/en.json
CHANGED
|
@@ -1389,6 +1389,10 @@
|
|
|
1389
1389
|
"openTelemetryTracingConnector": {
|
|
1390
1390
|
"sampleRatioOutOfRange": "The sample ratio \"{sampleRatio}\" must be between 0 and 1"
|
|
1391
1391
|
},
|
|
1392
|
+
"tracingRouteProcessor": {
|
|
1393
|
+
"startSpanFailed": "The span for the request could not be started",
|
|
1394
|
+
"endSpanFailed": "The span for the request could not be ended"
|
|
1395
|
+
},
|
|
1392
1396
|
"tracingRoutes": {
|
|
1393
1397
|
"spanIdMismatch": "The span id in the path \"{pathSpanId}\" does not match the span id in the body \"{bodySpanId}\""
|
|
1394
1398
|
},
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.2-next.14](https://github.com/iotaledger/twin-node/compare/node-v0.9.2-next.13...node-v0.9.2-next.14) (2026-08-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* telemetry batching ([#347](https://github.com/iotaledger/twin-node/issues/347)) ([5d5b0a9](https://github.com/iotaledger/twin-node/commit/5d5b0a91396298fe774ae26193b0595875cd118a))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/node-core bumped from 0.9.2-next.13 to 0.9.2-next.14
|
|
16
|
+
|
|
17
|
+
## [0.9.2-next.13](https://github.com/iotaledger/twin-node/compare/node-v0.9.2-next.12...node-v0.9.2-next.13) (2026-08-18)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* add tracing ([#344](https://github.com/iotaledger/twin-node/issues/344)) ([4fa71cd](https://github.com/iotaledger/twin-node/commit/4fa71cd0eafd7d708df15c8f0a85323fecd05561))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Dependencies
|
|
26
|
+
|
|
27
|
+
* The following workspace dependencies were updated
|
|
28
|
+
* dependencies
|
|
29
|
+
* @twin.org/node-core bumped from 0.9.2-next.12 to 0.9.2-next.13
|
|
30
|
+
|
|
3
31
|
## [0.9.2-next.12](https://github.com/iotaledger/twin-node/compare/node-v0.9.2-next.11...node-v0.9.2-next.12) (2026-08-17)
|
|
4
32
|
|
|
5
33
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/node",
|
|
3
|
-
"version": "0.9.2-next.
|
|
3
|
+
"version": "0.9.2-next.14",
|
|
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.2-next.
|
|
17
|
+
"@twin.org/node-core": "0.9.2-next.14"
|
|
18
18
|
},
|
|
19
19
|
"bugs": {
|
|
20
20
|
"url": "git+https://github.com/iotaledger/twin-node/issues"
|