@twin.org/node 0.9.1-next.10 → 0.9.1-next.11

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.
@@ -561,7 +561,8 @@
561
561
  "completeFailed": "Failed to complete processing task \"{id}\" with type \"{type}\" with status \"{status}\"",
562
562
  "dispatchFailed": "Failed to dispatch task \"{taskId}\" with type \"{taskType}\"",
563
563
  "stateChangeCallbackFailed": "The state change callback failed for task \"{id}\" with type \"{type}\" and status \"{status}\"",
564
- "taskFinishedProcessingFailed": "Failed to finalise background task processing for task \"{id}\" with method \"{type}\""
564
+ "taskFinishedProcessingFailed": "Failed to finalise background task processing for task \"{id}\" with method \"{type}\"",
565
+ "executionTimeout": "Task \"{id}\" with type \"{type}\" exceeded its execution timeout of {timeout} ms and has been marked as failed"
565
566
  },
566
567
  "s3BlobStorageConnector": {
567
568
  "bucketCreateFailed": "Creating bucket \"{bucket}\" failed",
@@ -1101,6 +1102,9 @@
1101
1102
  "proofNotFound": "The proof with the Id \"{notFoundId}\" was not found",
1102
1103
  "createProofFailed": "Creating the immutable proof failed"
1103
1104
  },
1105
+ "immutableProofTask": {
1106
+ "taskNotarizationFailed": "The notarization for proof \"{proofId}\" failed after {elapsedMs}ms, the task will not be retried as the notarization may already be on the ledger"
1107
+ },
1104
1108
  "fileLoggingConnector": {
1105
1109
  "maxFileSizeTooSmall": "The maximum file size of {maxFileSizeBytes} bytes is below the minimum of {minimum} bytes, use 0 to disable rotation"
1106
1110
  },
@@ -1451,6 +1455,12 @@
1451
1455
  "pushSubscriptionNotFoundOnTeardown": "Push subscription not found for consumerPid \"{consumerPid}\" during teardown — treating as no-op",
1452
1456
  "pushSubscriptionNotFoundForActivity": "Push subscription not found for outbound activity (consumerPid: {consumerPid})"
1453
1457
  },
1458
+ "immutableProofService": {
1459
+ "taskRecordRemoveFailed": "Removing the completed task record for proof \"{proofId}\" failed, the record will be removed when its retention expires"
1460
+ },
1461
+ "immutableProofTask": {
1462
+ "taskEngineStopFailed": "Stopping the task engine for proof \"{proofId}\" failed, the task result is unaffected"
1463
+ },
1454
1464
  "policyNegotiationAdminPointService": {
1455
1465
  "sendTerminateFailed": "Failed to send terminate to consumer for negotiation id: \"{id}\", correlation id: \"{correlationId}\""
1456
1466
  },
@@ -2672,9 +2682,11 @@
2672
2682
  "bootstrapping": "Bootstrapping component type \"{className}\" with instance type \"{instanceType}\"",
2673
2683
  "componentsStarting": "Components are starting",
2674
2684
  "componentsComplete": "Components have started",
2685
+ "componentsSummary": "Components started in {totalMs}ms, slowest: {slowestComponents}",
2675
2686
  "componentsStopping": "Components are stopping",
2676
2687
  "componentsStopped": "Components have stopped",
2677
2688
  "componentStarting": "Starting component type \"{className}\" with instance type \"{instanceType}\"",
2689
+ "componentStarted": "Started component type \"{className}\" with instance type \"{instanceType}\" in {elapsedMs}ms",
2678
2690
  "componentStopping": "Stopping component type \"{className}\" with instance type \"{instanceType}\""
2679
2691
  },
2680
2692
  "fileStateStorage": {
@@ -2798,6 +2810,11 @@
2798
2810
  "dataspaceDataPlaneSocketRoutes": {
2799
2811
  "activityLogStatusConnected": "Web Socket Connected: Socket Id: \"{socketId}\"",
2800
2812
  "activityLogStatusDisconnected": "Web Socket disconnected: Socket Id: \"{socketId}\""
2813
+ },
2814
+ "immutableProofTask": {
2815
+ "taskEngineStarted": "The proof task engine started for proof \"{proofId}\" in {elapsedMs}ms",
2816
+ "taskVerifiableCredentialCreated": "The verifiable credential for proof \"{proofId}\" was created in {elapsedMs}ms",
2817
+ "taskNotarizationComplete": "The notarization for proof \"{proofId}\" completed in {elapsedMs}ms, total task time {totalElapsedMs}ms"
2801
2818
  }
2802
2819
  },
2803
2820
  "codeLists": {
package/docs/changelog.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.9.1-next.11](https://github.com/iotaledger/twin-node/compare/node-v0.9.1-next.10...node-v0.9.1-next.11) (2026-07-24)
4
+
5
+
6
+ ### Features
7
+
8
+ * migration options ([#293](https://github.com/iotaledger/twin-node/issues/293)) ([91acc88](https://github.com/iotaledger/twin-node/commit/91acc881f665be0177b2e895e2810dd4d6145105))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/node-core bumped from 0.9.1-next.10 to 0.9.1-next.11
16
+
3
17
  ## [0.9.1-next.10](https://github.com/iotaledger/twin-node/compare/node-v0.9.1-next.9...node-v0.9.1-next.10) (2026-07-21)
4
18
 
5
19
 
@@ -18654,6 +18654,15 @@
18654
18654
  "Policy Administration Point"
18655
18655
  ],
18656
18656
  "parameters": [
18657
+ {
18658
+ "name": "type",
18659
+ "description": "The type of policy to filter by.",
18660
+ "in": "query",
18661
+ "required": false,
18662
+ "schema": {
18663
+ "type": "string"
18664
+ }
18665
+ },
18657
18666
  {
18658
18667
  "name": "assigner",
18659
18668
  "description": "The assigner to filter by.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/node",
3
- "version": "0.9.1-next.10",
3
+ "version": "0.9.1-next.11",
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.1-next.10"
17
+ "@twin.org/node-core": "0.9.1-next.11"
18
18
  },
19
19
  "bugs": {
20
20
  "url": "git+https://github.com/iotaledger/twin-node/issues"