@twin.org/node 0.9.4-next.5 → 0.9.5-next.1
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 +19 -7
- package/docs/changelog.md +42 -65
- package/package.json +2 -2
package/dist/locales/en.json
CHANGED
|
@@ -380,6 +380,7 @@
|
|
|
380
380
|
"invalidEntityProperty": "The entity value of \"{value}\" does not match the type \"{type}\" for property \"{property}\"",
|
|
381
381
|
"invalidOptional": "The entity property \"{property}\" of type \"{type}\" is not optional, but no value has been provided",
|
|
382
382
|
"invalidEntityKeys": "The entity had additional properties that are not in the schema, \"{keys}\"",
|
|
383
|
+
"maxLengthExceeded": "The entity property \"{property}\" has a length of {length} which exceeds the maximum length of {maxLength}",
|
|
383
384
|
"versionMustBeGreaterThanOrEqualZero": "Property \"entitySchema.version\" must be an integer >= 0, but got {version}",
|
|
384
385
|
"multipleVersionProperties": "The schema has more than one property with isVersion set, only one is allowed",
|
|
385
386
|
"versionPropertyMustBeInteger": "The version property \"{property}\" has type \"{type}\" but must be of type integer"
|
|
@@ -489,7 +490,11 @@
|
|
|
489
490
|
"componentStartFailed": "Failed to start component type \"{className}\" with instance type \"{instanceType}\"",
|
|
490
491
|
"componentStopFailed": "Failed to stop component type \"{className}\" with instance type \"{instanceType}\"",
|
|
491
492
|
"instanceTypeNotFound": "Instance type not found for \"{type}\"",
|
|
492
|
-
"instanceTypeNotFoundWithFeatures": "Instance type not found for \"{type}\" with features \"{features}\""
|
|
493
|
+
"instanceTypeNotFoundWithFeatures": "Instance type not found for \"{type}\" with features \"{features}\"",
|
|
494
|
+
"facadeFactoryUnknown": "The facades \"{facades}\" cannot be applied because there is no factory with the type name \"{factoryTypeName}\"",
|
|
495
|
+
"facadeUnknown": "The facade \"{facadeName}\" is not registered, so it cannot be applied to the \"{factoryTypeName}\" factory",
|
|
496
|
+
"facadeOnFacadeFactory": "The facade \"{facadeName}\" cannot be applied to the \"{factoryTypeName}\" factory, as it is the factory the facades themselves are resolved from",
|
|
497
|
+
"facadeExcludeTypeInvalid": "The exclude type \"{excludeType}\" for the facade \"{facadeName}\" on the \"{factoryTypeName}\" factory is not a valid regular expression"
|
|
493
498
|
},
|
|
494
499
|
"fileStateStorage": {
|
|
495
500
|
"failedLoading": "Failed to load file state storage from \"{filename}\"",
|
|
@@ -508,7 +513,11 @@
|
|
|
508
513
|
},
|
|
509
514
|
"healthService": {
|
|
510
515
|
"componentHealthCheckFailed": "Health check failed for component \"{className}\"",
|
|
511
|
-
"applicationHealthCheckTaskFailed": "Application health check background task failed"
|
|
516
|
+
"applicationHealthCheckTaskFailed": "Application health check background task failed",
|
|
517
|
+
"invalidExcludeCloneComponent": "The exclude clone component pattern \"{pattern}\" is not a valid regular expression"
|
|
518
|
+
},
|
|
519
|
+
"applicationHealthTask": {
|
|
520
|
+
"engineNotStarted": "Application health engine is not started"
|
|
512
521
|
},
|
|
513
522
|
"nftAttestationConnector": {
|
|
514
523
|
"attestingFailed": "Attesting the data failed",
|
|
@@ -1460,7 +1469,8 @@
|
|
|
1460
1469
|
"metricValueWriter": {
|
|
1461
1470
|
"flushFailed": "Failed to flush metric values to storage",
|
|
1462
1471
|
"invalidMetricOperation": "The operation \"{operation}\" is not valid for metric \"{id}\" of type \"{type}\"",
|
|
1463
|
-
"trimFailed": "Failed to trim the metric
|
|
1472
|
+
"trimFailed": "Failed to trim the history of metric \"{id}\" to its retention cap",
|
|
1473
|
+
"trimPassFailed": "The interval trim of the metric histories failed",
|
|
1464
1474
|
"intervalWriteFailed": "The interval write of the pending metric values failed"
|
|
1465
1475
|
},
|
|
1466
1476
|
"openTelemetryTelemetryConnector": {
|
|
@@ -1597,7 +1607,8 @@
|
|
|
1597
1607
|
},
|
|
1598
1608
|
"backgroundTaskService": {
|
|
1599
1609
|
"maxSystemWorkerCountReached": "The maximum system worker count of {maxSystemWorkerCount} has been reached, can not create any more worker for task type \"{type}\" (consecutive blocks: {count})",
|
|
1600
|
-
"taskClaimRetained": "Task \"{id}\" with type \"{type}\" ran but could not be finalised, it is held until restart so it is not processed twice"
|
|
1610
|
+
"taskClaimRetained": "Task \"{id}\" with type \"{type}\" ran but could not be finalised, it is held until restart so it is not processed twice",
|
|
1611
|
+
"taskRequeueFailed": "Task \"{id}\" with type \"{type}\" could not be returned to pending after its worker was torn down"
|
|
1601
1612
|
},
|
|
1602
1613
|
"dataspaceControlPlaneService": {
|
|
1603
1614
|
"catalogDatasetHasNoOffers": "Dataset has no Offers (odrl:hasPolicy) in Federated Catalogue",
|
|
@@ -1656,7 +1667,7 @@
|
|
|
1656
1667
|
"sweepParkedTotal": "{totalParked} proof(s) are currently parked and require operator investigation"
|
|
1657
1668
|
},
|
|
1658
1669
|
"immutableProofTask": {
|
|
1659
|
-
"taskEngineStopFailed": "Stopping the task engine
|
|
1670
|
+
"taskEngineStopFailed": "Stopping the proof task worker engine failed, a new engine will be started for the next task"
|
|
1660
1671
|
},
|
|
1661
1672
|
"gmailEmailConnector": {
|
|
1662
1673
|
"consentRequired": "Mailbox requires OAuth consent before it can be polled",
|
|
@@ -2550,7 +2561,8 @@
|
|
|
2550
2561
|
"start": "Processing task \"{id}\" with type \"{type}\"",
|
|
2551
2562
|
"complete": "Completed processing task \"{id}\" with type \"{type}\" with status \"{status}\" in {duration} ms",
|
|
2552
2563
|
"initialisingWorker": "Initialising worker for task type \"{type}\"",
|
|
2553
|
-
"shutdownWorker": "Shutting down worker for task type \"{type}\""
|
|
2564
|
+
"shutdownWorker": "Shutting down worker for task type \"{type}\"",
|
|
2565
|
+
"taskRequeued": "Task \"{id}\" with type \"{type}\" has no worker running it and has been returned to pending"
|
|
2554
2566
|
},
|
|
2555
2567
|
"s3BlobStorageConnector": {
|
|
2556
2568
|
"bucketCreating": "Creating bucket \"{bucket}\"",
|
|
@@ -3129,7 +3141,7 @@
|
|
|
3129
3141
|
"sweepSkippedInFlight": "Skipped sweeping proof \"{proofId}\", a task is already in flight"
|
|
3130
3142
|
},
|
|
3131
3143
|
"immutableProofTask": {
|
|
3132
|
-
"taskEngineStarted": "The proof task engine started
|
|
3144
|
+
"taskEngineStarted": "The proof task worker engine started in {elapsedMs}ms",
|
|
3133
3145
|
"taskVerifiableCredentialCreated": "The verifiable credential for proof \"{proofId}\" was created in {elapsedMs}ms",
|
|
3134
3146
|
"taskNotarizationComplete": "The notarization for proof \"{proofId}\" completed in {elapsedMs}ms, total task time {totalElapsedMs}ms"
|
|
3135
3147
|
}
|
package/docs/changelog.md
CHANGED
|
@@ -1,84 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.9.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
### Features
|
|
7
|
-
|
|
8
|
-
* add background task max dispatch count ([f0965a0](https://github.com/iotaledger/twin-node/commit/f0965a004dc0e0a856fc0fe1e58330f84e09aa3b))
|
|
9
|
-
* add outlook connector ([cf7ee0b](https://github.com/iotaledger/twin-node/commit/cf7ee0b73042cb33e693f3677386ca94567bb6e4))
|
|
10
|
-
* remove mutex timeout from logger ([e5a5407](https://github.com/iotaledger/twin-node/commit/e5a540725fa97b523f88589f582501f41b982d5b))
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
### Dependencies
|
|
14
|
-
|
|
15
|
-
* The following workspace dependencies were updated
|
|
16
|
-
* dependencies
|
|
17
|
-
* @twin.org/node-core bumped from 0.9.4-next.4 to 0.9.4-next.5
|
|
18
|
-
|
|
19
|
-
## [0.9.4-next.4](https://github.com/iotaledger/twin-node/compare/node-v0.9.4-next.3...node-v0.9.4-next.4) (2026-09-10)
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
### Features
|
|
23
|
-
|
|
24
|
-
* custom plugin timeout ([#395](https://github.com/iotaledger/twin-node/issues/395)) ([d4a33ba](https://github.com/iotaledger/twin-node/commit/d4a33ba10a54c6dfab0b845b386201ac326df88a))
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
### Dependencies
|
|
28
|
-
|
|
29
|
-
* The following workspace dependencies were updated
|
|
30
|
-
* dependencies
|
|
31
|
-
* @twin.org/node-core bumped from 0.9.4-next.3 to 0.9.4-next.4
|
|
32
|
-
|
|
33
|
-
## [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)
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
### Miscellaneous Chores
|
|
37
|
-
|
|
38
|
-
* **node:** Synchronize repo versions
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
### Dependencies
|
|
42
|
-
|
|
43
|
-
* The following workspace dependencies were updated
|
|
44
|
-
* dependencies
|
|
45
|
-
* @twin.org/node-core bumped from 0.9.4-next.2 to 0.9.4-next.3
|
|
46
|
-
|
|
47
|
-
## [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)
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
### Miscellaneous Chores
|
|
51
|
-
|
|
52
|
-
* **node:** Synchronize repo versions
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
### Dependencies
|
|
56
|
-
|
|
57
|
-
* The following workspace dependencies were updated
|
|
58
|
-
* dependencies
|
|
59
|
-
* @twin.org/node-core bumped from 0.9.4-next.1 to 0.9.4-next.2
|
|
60
|
-
|
|
61
|
-
## [0.9.4-next.1](https://github.com/iotaledger/twin-node/compare/node-v0.9.4-next.0...node-v0.9.4-next.1) (2026-09-07)
|
|
3
|
+
## [0.9.5-next.1](https://github.com/iotaledger/twin-node/compare/node-v0.9.5-next.0...node-v0.9.5-next.1) (2026-09-14)
|
|
62
4
|
|
|
63
5
|
|
|
64
6
|
### Features
|
|
65
7
|
|
|
66
8
|
* add additional env vars ([#328](https://github.com/iotaledger/twin-node/issues/328)) ([6ca8718](https://github.com/iotaledger/twin-node/commit/6ca87184bc4d78829c957ea055d3c281aca6cf9f))
|
|
67
9
|
* add automation ([cfc63b4](https://github.com/iotaledger/twin-node/commit/cfc63b465c139280f696877df21d54dc6a065a7e))
|
|
10
|
+
* add background task max dispatch count ([f0965a0](https://github.com/iotaledger/twin-node/commit/f0965a004dc0e0a856fc0fe1e58330f84e09aa3b))
|
|
68
11
|
* add CLI commands and remove automated bootstrap code ([#69](https://github.com/iotaledger/twin-node/issues/69)) ([6e40933](https://github.com/iotaledger/twin-node/commit/6e40933d8bb820b380e1074fc88feeedca0ef7d9))
|
|
69
12
|
* add cloud soak profile, disabled groups filter, and nightly GHA workflow ([#266](https://github.com/iotaledger/twin-node/issues/266)) ([6e8179c](https://github.com/iotaledger/twin-node/commit/6e8179c2dadbba8a2f0d577b44dc1ed9c8288046))
|
|
70
13
|
* add context id features ([#53](https://github.com/iotaledger/twin-node/issues/53)) ([827adf5](https://github.com/iotaledger/twin-node/commit/827adf52cb87fca53cec52b27e67f7a9dba2c088))
|
|
71
|
-
* add data space connector ([157e8b0](https://github.com/iotaledger/twin-node/commit/157e8b0a76e3a8a63c1991924f7f963eb83e27ae))
|
|
72
14
|
* add dsp sweep vars ([#340](https://github.com/iotaledger/twin-node/issues/340)) ([5487c13](https://github.com/iotaledger/twin-node/commit/5487c13197fcd386206ec37f9f342c55ec5b1176))
|
|
73
15
|
* add extensions support ([476d5a8](https://github.com/iotaledger/twin-node/commit/476d5a864026a2f78e5b02bc9eb81359777a4a45))
|
|
16
|
+
* add immutable proof task worker idle timeout env var ([#409](https://github.com/iotaledger/twin-node/issues/409)) ([12a524e](https://github.com/iotaledger/twin-node/commit/12a524e44d353cbfa690e522c139ec7083baefab))
|
|
74
17
|
* add mutex settings ([#222](https://github.com/iotaledger/twin-node/issues/222)) ([492c55f](https://github.com/iotaledger/twin-node/commit/492c55f67d5f70c2a4a27dfdb2700a644ee87955))
|
|
75
18
|
* add notarization ([#121](https://github.com/iotaledger/twin-node/issues/121)) ([b2a11df](https://github.com/iotaledger/twin-node/commit/b2a11df92c7b5026f73f08a018c0586ebe008e92))
|
|
76
19
|
* add obligation enforcers and multi instance support ([#89](https://github.com/iotaledger/twin-node/issues/89)) ([d81af99](https://github.com/iotaledger/twin-node/commit/d81af99b8c4db6e9a1370b7065bf6d9d222c71ed))
|
|
20
|
+
* add outlook connector ([cf7ee0b](https://github.com/iotaledger/twin-node/commit/cf7ee0b73042cb33e693f3677386ca94567bb6e4))
|
|
77
21
|
* add rights management components ([0fc6293](https://github.com/iotaledger/twin-node/commit/0fc629332db24494bd73003625c7bf3f939a2597))
|
|
78
22
|
* add soak and load test harness for the node server with k6 and memory-growth detection ([#248](https://github.com/iotaledger/twin-node/issues/248)) ([5dc9193](https://github.com/iotaledger/twin-node/commit/5dc91931d448796f4dedbab912c73817a8041b11))
|
|
79
23
|
* add standalone federated catalogue example config and endpoint tests ([#235](https://github.com/iotaledger/twin-node/issues/235)) ([ffb51dd](https://github.com/iotaledger/twin-node/commit/ffb51ddda5188c2f21b8ce65343b39a28f4eee4b))
|
|
80
24
|
* add support for dynamodb connection timeout ([63051b0](https://github.com/iotaledger/twin-node/commit/63051b0d22138079115dfac921e7f0c45eaad34e))
|
|
81
|
-
* add synchronised storage config ([e315869](https://github.com/iotaledger/twin-node/commit/e315869adbffcd7fe5d3ce151dd35f662f6134a9))
|
|
82
25
|
* add tenant override ([#337](https://github.com/iotaledger/twin-node/issues/337)) ([b4ea765](https://github.com/iotaledger/twin-node/commit/b4ea7656e2557c19053365dd5d4af14d0d945cd5))
|
|
83
26
|
* add tracing ([#344](https://github.com/iotaledger/twin-node/issues/344)) ([4fa71cd](https://github.com/iotaledger/twin-node/commit/4fa71cd0eafd7d708df15c8f0a85323fecd05561))
|
|
84
27
|
* add tracing console connector ([#373](https://github.com/iotaledger/twin-node/issues/373)) ([fb36cb8](https://github.com/iotaledger/twin-node/commit/fb36cb8bebc2e8c1b94fa332cead8283ca5d636a))
|
|
@@ -95,6 +38,7 @@
|
|
|
95
38
|
* align node module with dataspace rename and control plane integ… ([#95](https://github.com/iotaledger/twin-node/issues/95)) ([8129868](https://github.com/iotaledger/twin-node/commit/812986886fb5d779dd380956c4e6cc47c2d73530))
|
|
96
39
|
* bootstrap-legacy rename ([#310](https://github.com/iotaledger/twin-node/issues/310)) ([53af8a2](https://github.com/iotaledger/twin-node/commit/53af8a2e797e90bb601416215247cd8649dd6220))
|
|
97
40
|
* configure web server body limits from the environment ([#356](https://github.com/iotaledger/twin-node/issues/356)) ([f196ad3](https://github.com/iotaledger/twin-node/commit/f196ad368559515184e37a99d6876570074ebcd5))
|
|
41
|
+
* custom plugin timeout ([#395](https://github.com/iotaledger/twin-node/issues/395)) ([d4a33ba](https://github.com/iotaledger/twin-node/commit/d4a33ba10a54c6dfab0b845b386201ac326df88a))
|
|
98
42
|
* custom REST paths ([#99](https://github.com/iotaledger/twin-node/issues/99)) ([dcab1b2](https://github.com/iotaledger/twin-node/commit/dcab1b2b23c13b4c9f39c3c1c67284f56e732bd1))
|
|
99
43
|
* dataspace plane path ([#272](https://github.com/iotaledger/twin-node/issues/272)) ([5998eeb](https://github.com/iotaledger/twin-node/commit/5998eeb6fa1392ae753eb6bafeccefa1fb690573))
|
|
100
44
|
* email ingestion ([#379](https://github.com/iotaledger/twin-node/issues/379)) ([12da79d](https://github.com/iotaledger/twin-node/commit/12da79dc9b167e288c555d4f1909a61c190eee4d))
|
|
@@ -105,13 +49,13 @@
|
|
|
105
49
|
* env vars consistency ([1823b7a](https://github.com/iotaledger/twin-node/commit/1823b7aeae5dc7484861534b851080afda64d869))
|
|
106
50
|
* env-prefix option and user-update cli command ([#83](https://github.com/iotaledger/twin-node/issues/83)) ([fc48efa](https://github.com/iotaledger/twin-node/commit/fc48efa7ad72173def048170c3afb5eeb9f1b292))
|
|
107
51
|
* eslint migration to flat config ([080db74](https://github.com/iotaledger/twin-node/commit/080db746390230f78725d214bc957da2efee9eb1))
|
|
108
|
-
* exclude unece codes from open api spec ([16b72f3](https://github.com/iotaledger/twin-node/commit/16b72f37af0d5aa107e5007741690a3fc043153a))
|
|
109
52
|
* expose gasBudget and gasReservationDuration as configurable env vars ([#286](https://github.com/iotaledger/twin-node/issues/286)) ([d678b27](https://github.com/iotaledger/twin-node/commit/d678b27d629930a6ce85eeab9caf89d1187c3461))
|
|
110
53
|
* extend to 7-group weighted mix, fix REST paths + JSON-LD contexts ([#257](https://github.com/iotaledger/twin-node/issues/257)) ([d9f8d55](https://github.com/iotaledger/twin-node/commit/d9f8d55d389a82947b7a0297f44f76f7f6b3ba21))
|
|
111
54
|
* federated catalogue trust mode ([#194](https://github.com/iotaledger/twin-node/issues/194)) ([c18e6fb](https://github.com/iotaledger/twin-node/commit/c18e6fbe0014eb5faf8084d16169d86f3d3b23a6))
|
|
112
55
|
* file logging config ([#287](https://github.com/iotaledger/twin-node/issues/287)) ([a567b25](https://github.com/iotaledger/twin-node/commit/a567b253cbb8b9af872bb0e494c013212f4f55a2))
|
|
113
56
|
* first metrics in the core and app for testing ([#139](https://github.com/iotaledger/twin-node/issues/139)) ([abe17bb](https://github.com/iotaledger/twin-node/commit/abe17bb9a6261dcb7fd46253221182fbb1dc2259))
|
|
114
57
|
* health and url transformer ([#131](https://github.com/iotaledger/twin-node/issues/131)) ([3658903](https://github.com/iotaledger/twin-node/commit/36589036b9bea120880fc395b0d123a89032cf40))
|
|
58
|
+
* health exclude config ([#403](https://github.com/iotaledger/twin-node/issues/403)) ([646024b](https://github.com/iotaledger/twin-node/commit/646024b0ebe0f6f11630da2ab4b48e9ea6c2970b))
|
|
115
59
|
* identity profile information source ([dbb53d1](https://github.com/iotaledger/twin-node/commit/dbb53d145f517070d864f37650a6dbc1f3e9c3a8))
|
|
116
60
|
* immutable proof config ([#307](https://github.com/iotaledger/twin-node/issues/307)) ([9257495](https://github.com/iotaledger/twin-node/commit/92574953329647756aa6ab4cca80b1707e14a33f))
|
|
117
61
|
* immutable proof gate and additional config ([#157](https://github.com/iotaledger/twin-node/issues/157)) ([1d1fbb7](https://github.com/iotaledger/twin-node/commit/1d1fbb7c53525af848761dc25b42e9e676929972))
|
|
@@ -124,13 +68,15 @@
|
|
|
124
68
|
* new tenant auth mechanisms ([#168](https://github.com/iotaledger/twin-node/issues/168)) ([686f111](https://github.com/iotaledger/twin-node/commit/686f1118e79e6f26a8dc72a5e9172584057f4518))
|
|
125
69
|
* organization identifiers ([#203](https://github.com/iotaledger/twin-node/issues/203)) ([1a6b176](https://github.com/iotaledger/twin-node/commit/1a6b1760d9f8e43a769407668426c70e1c8e1aa8))
|
|
126
70
|
* pool env vars ([#331](https://github.com/iotaledger/twin-node/issues/331)) ([338ea61](https://github.com/iotaledger/twin-node/commit/338ea612b37aa4d15971c8a09def47bee9395d0c))
|
|
71
|
+
* publish nightly soak reports as a web-hosted dashboard ([#378](https://github.com/iotaledger/twin-node/issues/378)) ([e6984f9](https://github.com/iotaledger/twin-node/commit/e6984f9183e50b78e10de2124b94e3c22c7306ca))
|
|
127
72
|
* remove dap and darp ([36c3ffb](https://github.com/iotaledger/twin-node/commit/36c3ffb31af65a0e3025859dab675efeee043155))
|
|
73
|
+
* remove mutex timeout from logger ([e5a5407](https://github.com/iotaledger/twin-node/commit/e5a540725fa97b523f88589f582501f41b982d5b))
|
|
74
|
+
* remove old mutex timeouts ([fe6444a](https://github.com/iotaledger/twin-node/commit/fe6444af1a2e53cf6bce8517dbb8352e8b07bb31))
|
|
128
75
|
* remove set-tenant ([#186](https://github.com/iotaledger/twin-node/issues/186)) ([1fc1909](https://github.com/iotaledger/twin-node/commit/1fc1909e6335dea51dfec3bb91fba4badaa9790a))
|
|
129
76
|
* rest metrics ([#341](https://github.com/iotaledger/twin-node/issues/341)) ([ebec573](https://github.com/iotaledger/twin-node/commit/ebec5736bb66adfd97f7d73912bec1ce7392e5f8))
|
|
130
77
|
* rework soak memory-growth verdict to stop flip-flopping on identical code ([#372](https://github.com/iotaledger/twin-node/issues/372)) ([2afa74d](https://github.com/iotaledger/twin-node/commit/2afa74dd4c638cd9542638e2ea4fb34ab7dc1379))
|
|
131
78
|
* separate script directory from exec directory ([f6bb4db](https://github.com/iotaledger/twin-node/commit/f6bb4dbea1f1e200e0640fa154c6997ef99c99b4))
|
|
132
79
|
* silent telemetry and tracing options ([#351](https://github.com/iotaledger/twin-node/issues/351)) ([3a5752f](https://github.com/iotaledger/twin-node/commit/3a5752fc0bf8a028b3ebfc34878524ac799fb81e))
|
|
133
|
-
* support multiple entity and blob storage connectors ([a489f79](https://github.com/iotaledger/twin-node/commit/a489f7907544aef5708d5111e9f72985e1377bae))
|
|
134
80
|
* support public origin and hosting service ([#77](https://github.com/iotaledger/twin-node/issues/77)) ([3b9039f](https://github.com/iotaledger/twin-node/commit/3b9039fcba7f7038c06f8fd6a5ccc9fdbbf535b3))
|
|
135
81
|
* telemetry batching ([#347](https://github.com/iotaledger/twin-node/issues/347)) ([5d5b0a9](https://github.com/iotaledger/twin-node/commit/5d5b0a91396298fe774ae26193b0595875cd118a))
|
|
136
82
|
* telemetry tracing multi ([#357](https://github.com/iotaledger/twin-node/issues/357)) ([b6412ac](https://github.com/iotaledger/twin-node/commit/b6412ac3141a94a0f9f7d1dd391451ac9247e862))
|
|
@@ -148,7 +94,6 @@
|
|
|
148
94
|
* update engine ([4b438e2](https://github.com/iotaledger/twin-node/commit/4b438e22c27d784ee6cc964b7cb4401e9699ab16))
|
|
149
95
|
* update for livez endpoint ([9fc2e6a](https://github.com/iotaledger/twin-node/commit/9fc2e6ade38b3ec9591399a633d02b1e5fe07910))
|
|
150
96
|
* update framework components ([4bee2b9](https://github.com/iotaledger/twin-node/commit/4bee2b9d3651df09b8550a9ed226be1b46031854))
|
|
151
|
-
* update framework core ([8bd769a](https://github.com/iotaledger/twin-node/commit/8bd769a4451f5f1f6be3f115a5e94eeb05bce7f1))
|
|
152
97
|
* update logging retention units in config ([0b9bb69](https://github.com/iotaledger/twin-node/commit/0b9bb696db0722f6b33e37e1ebd1f4d6ffbcf7cc))
|
|
153
98
|
* update rights management ([5c992c6](https://github.com/iotaledger/twin-node/commit/5c992c6b0d72f3eeaa39ee267e096d9a3f477f4e))
|
|
154
99
|
* update rights management components ([176a0d6](https://github.com/iotaledger/twin-node/commit/176a0d611f88360fc845ae233b26ee0b43d7cb23))
|
|
@@ -168,7 +113,39 @@
|
|
|
168
113
|
|
|
169
114
|
* The following workspace dependencies were updated
|
|
170
115
|
* dependencies
|
|
171
|
-
* @twin.org/node-core bumped from 0.9.
|
|
116
|
+
* @twin.org/node-core bumped from 0.9.5-next.0 to 0.9.5-next.1
|
|
117
|
+
|
|
118
|
+
## [0.9.4](https://github.com/iotaledger/twin-node/compare/node-v0.9.4...node-v0.9.4) (2026-09-14)
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
### Features
|
|
122
|
+
|
|
123
|
+
* add auth admin component ([1661e57](https://github.com/iotaledger/twin-node/commit/1661e57a699d5cf9ebde333e3cbc3aaea89d7c9c))
|
|
124
|
+
* add extend engine and server methods ([ec09c7e](https://github.com/iotaledger/twin-node/commit/ec09c7eb882d9f5797f2fd372e96cad1a3716f59))
|
|
125
|
+
* add extend engine and server methods ([0136a6f](https://github.com/iotaledger/twin-node/commit/0136a6f3f4e1a82b1427ee9618b8a17c79bc7fda))
|
|
126
|
+
* add fedcat to openapi ([eac69bd](https://github.com/iotaledger/twin-node/commit/eac69bdf94a22c35fe58e7523d9cf78bdc72eb7b))
|
|
127
|
+
* add updated config vars ([ebe8178](https://github.com/iotaledger/twin-node/commit/ebe81788ce53ddf3d6925a5f2f6dac381f84f06c))
|
|
128
|
+
* improve default options and spec ([b538721](https://github.com/iotaledger/twin-node/commit/b538721902e7f65021d2715148ba59409ccce035))
|
|
129
|
+
* initial commit ([522f1e5](https://github.com/iotaledger/twin-node/commit/522f1e515348f9b1dd1eeb3170b1249e2b0b5371))
|
|
130
|
+
* migrate env config from engine to node ([5da29b8](https://github.com/iotaledger/twin-node/commit/5da29b8d714495308320d237a68e84355bba2b47))
|
|
131
|
+
* node app use JavaScript ([14fe08c](https://github.com/iotaledger/twin-node/commit/14fe08cb760dd885a5dac9056a4d5dbc3d61df64))
|
|
132
|
+
* release to production ([6319a38](https://github.com/iotaledger/twin-node/commit/6319a38490a2c2809622f8acd170cb92bfa06942))
|
|
133
|
+
* release to production ([4f44403](https://github.com/iotaledger/twin-node/commit/4f444039832edce8fae562baa7c900ccdc2181da))
|
|
134
|
+
* release to production ([2d96e37](https://github.com/iotaledger/twin-node/commit/2d96e3737bd9663bc0d1171c2ff2c7f8b2ab01bb))
|
|
135
|
+
* release to production ([#253](https://github.com/iotaledger/twin-node/issues/253)) ([230efd0](https://github.com/iotaledger/twin-node/commit/230efd0f99af6114e707999b4c1a83a391cc1741))
|
|
136
|
+
* release to production ([#300](https://github.com/iotaledger/twin-node/issues/300)) ([4d2b09f](https://github.com/iotaledger/twin-node/commit/4d2b09f92c7815ad3fe48d54eca0972fefc782f7))
|
|
137
|
+
* release to production ([#364](https://github.com/iotaledger/twin-node/issues/364)) ([dbba3db](https://github.com/iotaledger/twin-node/commit/dbba3dbf3d9efb858b0ea28aaf88378964fcf08e))
|
|
138
|
+
* release to production ([#383](https://github.com/iotaledger/twin-node/issues/383)) ([5d29105](https://github.com/iotaledger/twin-node/commit/5d29105355f85011f9a338ba5069162a0b008849))
|
|
139
|
+
* release to production ([#406](https://github.com/iotaledger/twin-node/issues/406)) ([98ba03e](https://github.com/iotaledger/twin-node/commit/98ba03e70eabbdceca9c5cbfaa01ea5076e5b2a7))
|
|
140
|
+
* update dependencies ([9d25f16](https://github.com/iotaledger/twin-node/commit/9d25f16f1d554cd38f3bec28fdf7f8fff892ceaf))
|
|
141
|
+
* update spec generation config ([cff633a](https://github.com/iotaledger/twin-node/commit/cff633a0ffb73ad652d5f1bae653fa91e82dc8ab))
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
### Bug Fixes
|
|
145
|
+
|
|
146
|
+
* adding a condition to verify if the password exists when bootstrapping ([6030a42](https://github.com/iotaledger/twin-node/commit/6030a42bdaf581678d96932fd0b809396bf7b8b0))
|
|
147
|
+
* adding a condition to verify if the password exists when bootstrapping ([c66f396](https://github.com/iotaledger/twin-node/commit/c66f396717394161a7647d1f08b3d87729d96e96))
|
|
148
|
+
* broken docs ([61479fd](https://github.com/iotaledger/twin-node/commit/61479fd618f766d22c5aafec5277e1a89e22b453))
|
|
172
149
|
|
|
173
150
|
## [0.9.3](https://github.com/iotaledger/twin-node/compare/node-v0.9.3...node-v0.9.3) (2026-09-04)
|
|
174
151
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/node",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.5-next.1",
|
|
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.
|
|
17
|
+
"@twin.org/node-core": "0.9.5-next.1"
|
|
18
18
|
},
|
|
19
19
|
"bugs": {
|
|
20
20
|
"url": "git+https://github.com/iotaledger/twin-node/issues"
|