@twin.org/node-core 0.0.3-next.4 → 0.0.3-next.40
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/README.md +3 -1
- package/dist/es/builders/engineEnvBuilder.js +443 -126
- package/dist/es/builders/engineEnvBuilder.js.map +1 -1
- package/dist/es/builders/engineServerEnvBuilder.js +89 -32
- package/dist/es/builders/engineServerEnvBuilder.js.map +1 -1
- package/dist/es/builders/extensionsBuilder.js.map +1 -1
- package/dist/es/cli.js +247 -0
- package/dist/es/cli.js.map +1 -0
- package/dist/es/commands/bootstrapLegacy.js +199 -0
- package/dist/es/commands/bootstrapLegacy.js.map +1 -0
- package/dist/es/commands/help.js +85 -0
- package/dist/es/commands/help.js.map +1 -0
- package/dist/es/commands/identityCreate.js +327 -0
- package/dist/es/commands/identityCreate.js.map +1 -0
- package/dist/es/commands/identityImports.js +82 -0
- package/dist/es/commands/identityImports.js.map +1 -0
- package/dist/es/commands/identityVerifiableCredentialCreate.js +146 -0
- package/dist/es/commands/identityVerifiableCredentialCreate.js.map +1 -0
- package/dist/es/commands/identityVerificationMethodCreate.js +228 -0
- package/dist/es/commands/identityVerificationMethodCreate.js.map +1 -0
- package/dist/es/commands/identityVerificationMethodImport.js +126 -0
- package/dist/es/commands/identityVerificationMethodImport.js.map +1 -0
- package/dist/es/commands/nodeSetIdentity.js +64 -0
- package/dist/es/commands/nodeSetIdentity.js.map +1 -0
- package/dist/es/commands/nodeSetTenant.js +68 -0
- package/dist/es/commands/nodeSetTenant.js.map +1 -0
- package/dist/es/commands/tenantCreate.js +139 -0
- package/dist/es/commands/tenantCreate.js.map +1 -0
- package/dist/es/commands/tenantImport.js +97 -0
- package/dist/es/commands/tenantImport.js.map +1 -0
- package/dist/es/commands/tenantUpdate.js +94 -0
- package/dist/es/commands/tenantUpdate.js.map +1 -0
- package/dist/es/commands/userCreate.js +239 -0
- package/dist/es/commands/userCreate.js.map +1 -0
- package/dist/es/commands/userUpdate.js +154 -0
- package/dist/es/commands/userUpdate.js.map +1 -0
- package/dist/es/commands/vaultKeyCreate.js +191 -0
- package/dist/es/commands/vaultKeyCreate.js.map +1 -0
- package/dist/es/commands/vaultKeyImport.js +104 -0
- package/dist/es/commands/vaultKeyImport.js.map +1 -0
- package/dist/es/defaults.js +19 -1
- package/dist/es/defaults.js.map +1 -1
- package/dist/es/index.js +11 -4
- package/dist/es/index.js.map +1 -1
- package/dist/es/models/ICliArgs.js +4 -0
- package/dist/es/models/ICliArgs.js.map +1 -0
- package/dist/es/models/ICliCommand.js +2 -0
- package/dist/es/models/ICliCommand.js.map +1 -0
- package/dist/es/models/ICliCommandDefinition.js +2 -0
- package/dist/es/models/ICliCommandDefinition.js.map +1 -0
- package/dist/es/models/ICliCommandDefinitionParam.js +2 -0
- package/dist/es/models/ICliCommandDefinitionParam.js.map +1 -0
- package/dist/es/models/IEngineEnvironmentVariables.js.map +1 -1
- package/dist/es/models/IEngineServerEnvironmentVariables.js.map +1 -1
- package/dist/es/models/INodeEngineState.js.map +1 -1
- package/dist/es/models/INodeEnvironmentVariables.js.map +1 -1
- package/dist/es/models/INodeOptions.js.map +1 -1
- package/dist/es/models/cliCommandParamType.js +4 -0
- package/dist/es/models/cliCommandParamType.js.map +1 -0
- package/dist/es/models/nodeExtensionInitialiseEngineMethod.js +2 -0
- package/dist/es/models/nodeExtensionInitialiseEngineMethod.js.map +1 -0
- package/dist/es/models/nodeExtensionInitialiseEngineServerMethod.js +2 -0
- package/dist/es/models/nodeExtensionInitialiseEngineServerMethod.js.map +1 -0
- package/dist/es/models/nodeExtensionInitialiseMethod.js +2 -0
- package/dist/es/models/nodeExtensionInitialiseMethod.js.map +1 -0
- package/dist/es/models/nodeExtensionShutdownMethod.js +4 -0
- package/dist/es/models/nodeExtensionShutdownMethod.js.map +1 -0
- package/dist/es/node.js +86 -39
- package/dist/es/node.js.map +1 -1
- package/dist/es/start.js +139 -0
- package/dist/es/start.js.map +1 -0
- package/dist/es/utils.js +12 -22
- package/dist/es/utils.js.map +1 -1
- package/dist/types/builders/engineEnvBuilder.d.ts +64 -1
- package/dist/types/builders/engineServerEnvBuilder.d.ts +11 -2
- package/dist/types/cli.d.ts +56 -0
- package/dist/types/commands/bootstrapLegacy.d.ts +66 -0
- package/dist/types/commands/help.d.ts +23 -0
- package/dist/types/commands/identityCreate.d.ts +39 -0
- package/dist/types/commands/identityImports.d.ts +24 -0
- package/dist/types/commands/identityVerifiableCredentialCreate.d.ts +43 -0
- package/dist/types/commands/identityVerificationMethodCreate.d.ts +47 -0
- package/dist/types/commands/identityVerificationMethodImport.d.ts +31 -0
- package/dist/types/commands/nodeSetIdentity.d.ts +22 -0
- package/dist/types/commands/nodeSetTenant.d.ts +22 -0
- package/dist/types/commands/tenantCreate.d.ts +38 -0
- package/dist/types/commands/tenantImport.d.ts +26 -0
- package/dist/types/commands/tenantUpdate.d.ts +26 -0
- package/dist/types/commands/userCreate.d.ts +51 -0
- package/dist/types/commands/userUpdate.d.ts +40 -0
- package/dist/types/commands/vaultKeyCreate.d.ts +43 -0
- package/dist/types/commands/vaultKeyImport.d.ts +28 -0
- package/dist/types/defaults.d.ts +10 -1
- package/dist/types/index.d.ts +11 -4
- package/dist/types/models/ICliArgs.d.ts +20 -0
- package/dist/types/models/ICliCommand.d.ts +17 -0
- package/dist/types/models/ICliCommandDefinition.d.ts +46 -0
- package/dist/types/models/ICliCommandDefinitionParam.d.ts +35 -0
- package/dist/types/models/IEngineEnvironmentVariables.d.ts +117 -60
- package/dist/types/models/IEngineServerEnvironmentVariables.d.ts +8 -0
- package/dist/types/models/INodeEngineState.d.ts +0 -8
- package/dist/types/models/INodeEnvironmentVariables.d.ts +0 -38
- package/dist/types/models/INodeOptions.d.ts +6 -2
- package/dist/types/models/cliCommandParamType.d.ts +4 -0
- package/dist/types/models/nodeExtensionInitialiseEngineMethod.d.ts +7 -0
- package/dist/types/models/nodeExtensionInitialiseEngineServerMethod.d.ts +8 -0
- package/dist/types/models/nodeExtensionInitialiseMethod.d.ts +8 -0
- package/dist/types/models/nodeExtensionShutdownMethod.d.ts +5 -0
- package/dist/types/node.d.ts +5 -4
- package/dist/types/{server.d.ts → start.d.ts} +4 -2
- package/dist/types/utils.d.ts +6 -8
- package/docs/changelog.md +532 -176
- package/docs/examples.md +99 -1
- package/docs/reference/functions/buildConfiguration.md +1 -1
- package/docs/reference/functions/buildEngineServerConfiguration.md +1 -1
- package/docs/reference/functions/constructCliCommand.md +27 -0
- package/docs/reference/functions/executeCommand.md +29 -0
- package/docs/reference/functions/getEnvDefaults.md +19 -0
- package/docs/reference/functions/getScriptDirectory.md +19 -0
- package/docs/reference/functions/isAuthEntityStorageRequired.md +20 -0
- package/docs/reference/functions/isAutomationRequired.md +20 -0
- package/docs/reference/functions/isBackgroundTasksRequired.md +20 -0
- package/docs/reference/functions/isFederatedCatalogueRequired.md +20 -0
- package/docs/reference/functions/isImmutableProofRequired.md +20 -0
- package/docs/reference/functions/isRightsManagementRequired.md +20 -0
- package/docs/reference/functions/isTaskSchedulerRequired.md +20 -0
- package/docs/reference/functions/isTelemetryRequired.md +20 -0
- package/docs/reference/functions/isTrustRequired.md +20 -0
- package/docs/reference/functions/isUrlTransformerRequired.md +20 -0
- package/docs/reference/functions/parseCommandLineArgs.md +19 -0
- package/docs/reference/functions/processEnvOptions.md +27 -0
- package/docs/reference/functions/registerCommands.md +9 -0
- package/docs/reference/functions/resolvePackageEntryPoint.md +2 -2
- package/docs/reference/functions/run.md +8 -2
- package/docs/reference/functions/start.md +9 -3
- package/docs/reference/functions/substituteEnvOptions.md +25 -0
- package/docs/reference/index.md +26 -13
- package/docs/reference/interfaces/ICacheMetadata.md +3 -3
- package/docs/reference/interfaces/ICliArgs.md +35 -0
- package/docs/reference/interfaces/ICliCommand.md +23 -0
- package/docs/reference/interfaces/ICliCommandDefinition.md +101 -0
- package/docs/reference/interfaces/ICliCommandDefinitionParam.md +65 -0
- package/docs/reference/interfaces/IEngineEnvironmentVariables.md +420 -311
- package/docs/reference/interfaces/IEngineServerEnvironmentVariables.md +545 -368
- package/docs/reference/interfaces/IModuleProtocol.md +3 -3
- package/docs/reference/interfaces/INodeEngineState.md +4 -20
- package/docs/reference/interfaces/INodeEnvironmentVariables.md +551 -450
- package/docs/reference/interfaces/INodeOptions.md +44 -36
- package/docs/reference/interfaces/IProtocolHandlerResult.md +2 -2
- package/docs/reference/type-aliases/CliCommandParamType.md +5 -0
- package/docs/reference/type-aliases/NodeExtensionInitialiseEngineMethod.md +1 -1
- package/docs/reference/type-aliases/NodeExtensionInitialiseEngineServerMethod.md +1 -1
- package/docs/reference/type-aliases/NodeExtensionInitialiseMethod.md +1 -1
- package/docs/reference/type-aliases/NodeExtensionShutdownMethod.md +1 -1
- package/docs/reference/variables/ModuleProtocol.md +5 -5
- package/docs/reference/variables/TRUST_VERIFICATION_METHOD_ID.md +3 -0
- package/docs/reference/variables/URL_TRANSFORMER_ENCRYPTION_KEY_ID.md +3 -0
- package/locales/en.json +600 -30
- package/package.json +10 -6
- package/dist/es/bootstrap.js +0 -366
- package/dist/es/bootstrap.js.map +0 -1
- package/dist/es/identity.js +0 -182
- package/dist/es/identity.js.map +0 -1
- package/dist/es/models/nodeExtensionMethods.js +0 -2
- package/dist/es/models/nodeExtensionMethods.js.map +0 -1
- package/dist/es/models/nodeFeatures.js +0 -21
- package/dist/es/models/nodeFeatures.js.map +0 -1
- package/dist/es/server.js +0 -81
- package/dist/es/server.js.map +0 -1
- package/dist/types/bootstrap.d.ts +0 -68
- package/dist/types/identity.d.ts +0 -14
- package/dist/types/models/nodeExtensionMethods.d.ts +0 -27
- package/dist/types/models/nodeFeatures.d.ts +0 -21
- package/docs/detailed-guide.md +0 -129
- package/docs/reference/functions/bootstrap.md +0 -29
- package/docs/reference/functions/bootstrapAuth.md +0 -35
- package/docs/reference/functions/bootstrapBlobEncryption.md +0 -35
- package/docs/reference/functions/bootstrapImmutableProofMethod.md +0 -35
- package/docs/reference/functions/bootstrapNodeAdminUser.md +0 -35
- package/docs/reference/functions/bootstrapNodeId.md +0 -35
- package/docs/reference/functions/bootstrapSynchronisedStorage.md +0 -35
- package/docs/reference/functions/bootstrapTenantId.md +0 -35
- package/docs/reference/functions/getFeatures.md +0 -19
- package/docs/reference/type-aliases/NodeFeatures.md +0 -5
- package/docs/reference/variables/NodeFeatures.md +0 -25
- package/docs/reference/variables/VC_AUTHENTICATION_VERIFICATION_METHOD_ID.md +0 -3
package/docs/changelog.md
CHANGED
|
@@ -1,395 +1,751 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [0.0.3-next.40](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.39...node-core-v0.0.3-next.40) (2026-05-22)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* endpoints-runner ([#153](https://github.com/iotaledger/twin-node/issues/153)) ([cca42d0](https://github.com/iotaledger/twin-node/commit/cca42d07d6655d401c909308e8b73606fef05248))
|
|
9
|
+
|
|
10
|
+
## [0.0.3-next.39](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.38...node-core-v0.0.3-next.39) (2026-05-21)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* tenant-id in user create and update ([#148](https://github.com/iotaledger/twin-node/issues/148)) ([1143e30](https://github.com/iotaledger/twin-node/commit/1143e30fb0d2056d113367d0c5ea251f07695da1))
|
|
16
|
+
|
|
17
|
+
## [0.0.3-next.38](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.37...node-core-v0.0.3-next.38) (2026-05-20)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* add auth admin component ([1661e57](https://github.com/iotaledger/twin-node/commit/1661e57a699d5cf9ebde333e3cbc3aaea89d7c9c))
|
|
23
|
+
* add automation ([cfc63b4](https://github.com/iotaledger/twin-node/commit/cfc63b465c139280f696877df21d54dc6a065a7e))
|
|
24
|
+
* 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))
|
|
25
|
+
* add context id features ([#53](https://github.com/iotaledger/twin-node/issues/53)) ([827adf5](https://github.com/iotaledger/twin-node/commit/827adf52cb87fca53cec52b27e67f7a9dba2c088))
|
|
26
|
+
* add data space connector ([5a57087](https://github.com/iotaledger/twin-node/commit/5a57087d938265d3a4a812ff7c83d130ea4e103c))
|
|
27
|
+
* add data space connector ([f7a3644](https://github.com/iotaledger/twin-node/commit/f7a364477ec664e333e5ad018795acec6ee61edc))
|
|
28
|
+
* add data space connector ([157e8b0](https://github.com/iotaledger/twin-node/commit/157e8b0a76e3a8a63c1991924f7f963eb83e27ae))
|
|
29
|
+
* add extend engine and server methods ([ec09c7e](https://github.com/iotaledger/twin-node/commit/ec09c7eb882d9f5797f2fd372e96cad1a3716f59))
|
|
30
|
+
* add extend engine and server methods ([0136a6f](https://github.com/iotaledger/twin-node/commit/0136a6f3f4e1a82b1427ee9618b8a17c79bc7fda))
|
|
31
|
+
* add extensions support ([476d5a8](https://github.com/iotaledger/twin-node/commit/476d5a864026a2f78e5b02bc9eb81359777a4a45))
|
|
32
|
+
* add isDefault flag to logging connectors ([358e839](https://github.com/iotaledger/twin-node/commit/358e8394819dab9832d3a9ebfac74b897b7d5f40))
|
|
33
|
+
* add missing export ([e8eb621](https://github.com/iotaledger/twin-node/commit/e8eb6213937a202520b164a9970a891004122b61))
|
|
34
|
+
* add module cache and improve resolution ([482be05](https://github.com/iotaledger/twin-node/commit/482be056c37a598033250ea8a7288a33cf3470b4))
|
|
35
|
+
* add module override for better local import resolution ([ba00d17](https://github.com/iotaledger/twin-node/commit/ba00d17beea0a9a1851c89ad7c6a33256051c818))
|
|
36
|
+
* add notarization ([#121](https://github.com/iotaledger/twin-node/issues/121)) ([b2a11df](https://github.com/iotaledger/twin-node/commit/b2a11df92c7b5026f73f08a018c0586ebe008e92))
|
|
37
|
+
* 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))
|
|
38
|
+
* add rights management ([78fba62](https://github.com/iotaledger/twin-node/commit/78fba62f82afdbe615d55dd90eca8ee70ea62fc0))
|
|
39
|
+
* add rights management components ([0fc6293](https://github.com/iotaledger/twin-node/commit/0fc629332db24494bd73003625c7bf3f939a2597))
|
|
40
|
+
* add support for dynamodb connection timeout ([63051b0](https://github.com/iotaledger/twin-node/commit/63051b0d22138079115dfac921e7f0c45eaad34e))
|
|
41
|
+
* add synchronised storage config ([e315869](https://github.com/iotaledger/twin-node/commit/e315869adbffcd7fe5d3ce151dd35f662f6134a9))
|
|
42
|
+
* add trust and rights management plugin support ([cdeb504](https://github.com/iotaledger/twin-node/commit/cdeb504ee5986a347466162b9afa781645b4a54c))
|
|
43
|
+
* add trust ttl ([#73](https://github.com/iotaledger/twin-node/issues/73)) ([911cee7](https://github.com/iotaledger/twin-node/commit/911cee771bba490143bb1574ca8360f7cf8baa1a))
|
|
44
|
+
* add validate-locales ([1a19dcb](https://github.com/iotaledger/twin-node/commit/1a19dcb005c2f0e3103e290db28c48a3464094cb))
|
|
45
|
+
* add vault prefix configuration ([#75](https://github.com/iotaledger/twin-node/issues/75)) ([1d4afb1](https://github.com/iotaledger/twin-node/commit/1d4afb1b1a8aa60795898eeb9e7f5153c279527d))
|
|
46
|
+
* adding npm and https protocols to load extensions ([#45](https://github.com/iotaledger/twin-node/issues/45)) ([33940b7](https://github.com/iotaledger/twin-node/commit/33940b7e771a0c5af32c18d442deb26a8631fd02))
|
|
47
|
+
* additional options for enabling components ([e13d772](https://github.com/iotaledger/twin-node/commit/e13d7721a0dd7143d456fff246622cbe63dbd0f1))
|
|
48
|
+
* additional route logging env vars ([7152c88](https://github.com/iotaledger/twin-node/commit/7152c887c3ba76778e2d9e68ba57198b8d81d802))
|
|
49
|
+
* additional run options ([c35e5bb](https://github.com/iotaledger/twin-node/commit/c35e5bbb8a80fe6a36628d41f64585b3723d9ad7))
|
|
50
|
+
* additional startup logging ([0740293](https://github.com/iotaledger/twin-node/commit/0740293b366032f2907046603abf587c9c324aff))
|
|
51
|
+
* additional stop interlock ([b3a2757](https://github.com/iotaledger/twin-node/commit/b3a2757325af0e7b258a9f97f1b52e86087e6301))
|
|
52
|
+
* 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))
|
|
53
|
+
* authentication services ([#118](https://github.com/iotaledger/twin-node/issues/118)) ([311a7f8](https://github.com/iotaledger/twin-node/commit/311a7f882db1e50a83e94d2dae32fefc68debb47))
|
|
54
|
+
* bootstrap legacy skip ([469d950](https://github.com/iotaledger/twin-node/commit/469d9505bd0497c271ba291641f63786200cb548))
|
|
55
|
+
* cache the npm root to increase startup speed ([f10ea9e](https://github.com/iotaledger/twin-node/commit/f10ea9e22cc202f320df5fb21507b886c1f7345b))
|
|
56
|
+
* custom REST paths ([#99](https://github.com/iotaledger/twin-node/issues/99)) ([dcab1b2](https://github.com/iotaledger/twin-node/commit/dcab1b2b23c13b4c9f39c3c1c67284f56e732bd1))
|
|
57
|
+
* don't override existing env vars with env files ([ebccac2](https://github.com/iotaledger/twin-node/commit/ebccac297c3156076f17c246a8abd994f8f20e61))
|
|
58
|
+
* env var simplification ([460b0f2](https://github.com/iotaledger/twin-node/commit/460b0f20a73cb482f7443af502f261d5f9d01759))
|
|
59
|
+
* 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))
|
|
60
|
+
* eslint migration to flat config ([080db74](https://github.com/iotaledger/twin-node/commit/080db746390230f78725d214bc957da2efee9eb1))
|
|
61
|
+
* 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))
|
|
62
|
+
* health and url transformer ([#131](https://github.com/iotaledger/twin-node/issues/131)) ([3658903](https://github.com/iotaledger/twin-node/commit/36589036b9bea120880fc395b0d123a89032cf40))
|
|
63
|
+
* improve bootstrapping and shutdown behaviour ([#66](https://github.com/iotaledger/twin-node/issues/66)) ([65b3452](https://github.com/iotaledger/twin-node/commit/65b345240334bfff48b52e136cc486cd7ac7f290))
|
|
64
|
+
* improve default options and spec ([b538721](https://github.com/iotaledger/twin-node/commit/b538721902e7f65021d2715148ba59409ccce035))
|
|
65
|
+
* improve error handling for extensions and logging ([bd84fde](https://github.com/iotaledger/twin-node/commit/bd84fde67e5a9db6ac66730397992401ca52e88c))
|
|
66
|
+
* improve error reporting ([fcd39a1](https://github.com/iotaledger/twin-node/commit/fcd39a18da2a6ce33965a99ca5f2f36f4aba712f))
|
|
67
|
+
* improve node logging ([63d6ea6](https://github.com/iotaledger/twin-node/commit/63d6ea661c2c76985d98addb8d905ad6f0c7f164))
|
|
68
|
+
* improve node logging ([c25b9c6](https://github.com/iotaledger/twin-node/commit/c25b9c6779bdb76f341df072c39b4c2fae4565a3))
|
|
69
|
+
* initial commit ([522f1e5](https://github.com/iotaledger/twin-node/commit/522f1e515348f9b1dd1eeb3170b1249e2b0b5371))
|
|
70
|
+
* migrate env config from engine to node ([5da29b8](https://github.com/iotaledger/twin-node/commit/5da29b8d714495308320d237a68e84355bba2b47))
|
|
71
|
+
* multi-tenant env wiring, trust auto-enable, tenant-token vault key, engine-driven callbackPath ([#128](https://github.com/iotaledger/twin-node/issues/128)) ([0de4d35](https://github.com/iotaledger/twin-node/commit/0de4d356fb2f825afae5469005d475700f510ee4))
|
|
72
|
+
* node app use JavaScript ([14fe08c](https://github.com/iotaledger/twin-node/commit/14fe08cb760dd885a5dac9056a4d5dbc3d61df64))
|
|
73
|
+
* remove dap and darp ([36c3ffb](https://github.com/iotaledger/twin-node/commit/36c3ffb31af65a0e3025859dab675efeee043155))
|
|
74
|
+
* remove unused properties ([d8344b5](https://github.com/iotaledger/twin-node/commit/d8344b5aee5dc1c8104d75fad5093097f6530168))
|
|
75
|
+
* separate script directory from exec directory ([f6bb4db](https://github.com/iotaledger/twin-node/commit/f6bb4dbea1f1e200e0640fa154c6997ef99c99b4))
|
|
76
|
+
* support multiple entity and blob storage connectors ([a489f79](https://github.com/iotaledger/twin-node/commit/a489f7907544aef5708d5111e9f72985e1377bae))
|
|
77
|
+
* support public origin and hosting service ([#77](https://github.com/iotaledger/twin-node/issues/77)) ([3b9039f](https://github.com/iotaledger/twin-node/commit/3b9039fcba7f7038c06f8fd6a5ccc9fdbbf535b3))
|
|
78
|
+
* typescript 6 update ([ce2e3ca](https://github.com/iotaledger/twin-node/commit/ce2e3ca5219587709f7b9cf6c65909b48fba11b5))
|
|
79
|
+
* update background tasks and add fedcat filters ([1fd297e](https://github.com/iotaledger/twin-node/commit/1fd297e29f60b5bb3909638b68e326c5b0e2d77d))
|
|
80
|
+
* update context usage ([2215440](https://github.com/iotaledger/twin-node/commit/2215440801dea3955885b6579ad9b98b7a5d87ea))
|
|
81
|
+
* update dependencies ([aab05b5](https://github.com/iotaledger/twin-node/commit/aab05b552152a208a504fb9a080603f1990d4f79))
|
|
82
|
+
* update dependencies ([6cb3d3a](https://github.com/iotaledger/twin-node/commit/6cb3d3a63f7b976f80074ddecfba034b7e92f919))
|
|
83
|
+
* update dependencies ([9d25f16](https://github.com/iotaledger/twin-node/commit/9d25f16f1d554cd38f3bec28fdf7f8fff892ceaf))
|
|
84
|
+
* update engine ([a40b377](https://github.com/iotaledger/twin-node/commit/a40b37726c3b61c6bb40265ec0006d1071ffac7e))
|
|
85
|
+
* update engine ([4b438e2](https://github.com/iotaledger/twin-node/commit/4b438e22c27d784ee6cc964b7cb4401e9699ab16))
|
|
86
|
+
* update engine dependency ([db290df](https://github.com/iotaledger/twin-node/commit/db290df3b18374f7d86da575c6048657b98c355b))
|
|
87
|
+
* update engine dependency ([3494c31](https://github.com/iotaledger/twin-node/commit/3494c3144fd5ce6d3a9f2936c7890ab36795aeaa))
|
|
88
|
+
* update for livez endpoint ([9fc2e6a](https://github.com/iotaledger/twin-node/commit/9fc2e6ade38b3ec9591399a633d02b1e5fe07910))
|
|
89
|
+
* update framework components ([4bee2b9](https://github.com/iotaledger/twin-node/commit/4bee2b9d3651df09b8550a9ed226be1b46031854))
|
|
90
|
+
* update framework core ([8bd769a](https://github.com/iotaledger/twin-node/commit/8bd769a4451f5f1f6be3f115a5e94eeb05bce7f1))
|
|
91
|
+
* update order of logging ([2161938](https://github.com/iotaledger/twin-node/commit/2161938c969b18e4678459a69090287e5ccdb404))
|
|
92
|
+
* update order of logging ([b295f31](https://github.com/iotaledger/twin-node/commit/b295f315f7c5b611d229d9e5314d414da05828b9))
|
|
93
|
+
* update rights management ([5c992c6](https://github.com/iotaledger/twin-node/commit/5c992c6b0d72f3eeaa39ee267e096d9a3f477f4e))
|
|
94
|
+
* update rights management components ([176a0d6](https://github.com/iotaledger/twin-node/commit/176a0d611f88360fc845ae233b26ee0b43d7cb23))
|
|
95
|
+
* update rights management dependencies ([97ad02e](https://github.com/iotaledger/twin-node/commit/97ad02e4b74cfe5e722f74da2fc2229bbf004c0a))
|
|
96
|
+
* update to latest engine ([00d4974](https://github.com/iotaledger/twin-node/commit/00d4974f9cfb02bf48505cfb4af4a7aba1df4b3d))
|
|
97
|
+
* update to latest engine config ([347386c](https://github.com/iotaledger/twin-node/commit/347386c0609e717dc20c456ad2264c83df793c59))
|
|
98
|
+
* updated context id features ([ef7be07](https://github.com/iotaledger/twin-node/commit/ef7be07d44dccdeacf10f90cb4ffde0303faa6fa))
|
|
99
|
+
* updating linting ([feacd17](https://github.com/iotaledger/twin-node/commit/feacd178bb025bcd29a0ae6e4b8e79f23a989169))
|
|
100
|
+
* use features instead of disableNodeIdentity ([2e6109b](https://github.com/iotaledger/twin-node/commit/2e6109bd1de825e0f5396fc120d99ad7b3929852))
|
|
2
101
|
|
|
3
|
-
|
|
102
|
+
|
|
103
|
+
### Bug Fixes
|
|
104
|
+
|
|
105
|
+
* adding a condition to verify if the password exists when bootstrapping ([6030a42](https://github.com/iotaledger/twin-node/commit/6030a42bdaf581678d96932fd0b809396bf7b8b0))
|
|
106
|
+
* adding a condition to verify if the password exists when bootstrapping ([c66f396](https://github.com/iotaledger/twin-node/commit/c66f396717394161a7647d1f08b3d87729d96e96))
|
|
107
|
+
* bootstrap legacy fails on second run ([c0a4e6d](https://github.com/iotaledger/twin-node/commit/c0a4e6d6f8d1bf385412a22fed2a0974e219abaa))
|
|
108
|
+
* bootstrap vault key skip logic ([#112](https://github.com/iotaledger/twin-node/issues/112)) ([4084368](https://github.com/iotaledger/twin-node/commit/4084368f0762c3a1b8e214ac30f5545297c88ea6))
|
|
109
|
+
* broken docs ([61479fd](https://github.com/iotaledger/twin-node/commit/61479fd618f766d22c5aafec5277e1a89e22b453))
|
|
110
|
+
* improve calculation of execution directory ([106d65d](https://github.com/iotaledger/twin-node/commit/106d65d7ad5524e2e147b681d68f9476c024cfaa))
|
|
111
|
+
* only register DID context keys when nodeIdentityEnabled is true ([#140](https://github.com/iotaledger/twin-node/issues/140)) ([21f1c10](https://github.com/iotaledger/twin-node/commit/21f1c107adbd715518414f7255ead970b809b4b3))
|
|
112
|
+
* org identity verification methods ([18f158b](https://github.com/iotaledger/twin-node/commit/18f158b2f63930e20e94437c17ed43421771a458))
|
|
113
|
+
* pr comments [#1](https://github.com/iotaledger/twin-node/issues/1) ([66e795b](https://github.com/iotaledger/twin-node/commit/66e795b16c372ab131ec1de30085aee90e4dbbd0))
|
|
114
|
+
* synchronised storage construction ([#102](https://github.com/iotaledger/twin-node/issues/102)) ([58b61e9](https://github.com/iotaledger/twin-node/commit/58b61e9a67f499a35bea17e5d2dc6a1efc2cb893))
|
|
115
|
+
* test with latest dependencies ([91123b7](https://github.com/iotaledger/twin-node/commit/91123b71d0e7b51700a5d5452b2a0c9fc5c5256e))
|
|
116
|
+
|
|
117
|
+
## [0.0.3-next.37](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.36...node-core-v0.0.3-next.37) (2026-05-19)
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
### Bug Fixes
|
|
121
|
+
|
|
122
|
+
* only register DID context keys when nodeIdentityEnabled is true ([#140](https://github.com/iotaledger/twin-node/issues/140)) ([21f1c10](https://github.com/iotaledger/twin-node/commit/21f1c107adbd715518414f7255ead970b809b4b3))
|
|
123
|
+
|
|
124
|
+
## [0.0.3-next.36](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.35...node-core-v0.0.3-next.36) (2026-05-12)
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
### Features
|
|
128
|
+
|
|
129
|
+
* don't override existing env vars with env files ([ebccac2](https://github.com/iotaledger/twin-node/commit/ebccac297c3156076f17c246a8abd994f8f20e61))
|
|
130
|
+
* typescript 6 update ([ce2e3ca](https://github.com/iotaledger/twin-node/commit/ce2e3ca5219587709f7b9cf6c65909b48fba11b5))
|
|
131
|
+
|
|
132
|
+
## [0.0.3-next.35](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.34...node-core-v0.0.3-next.35) (2026-05-08)
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
### Features
|
|
136
|
+
|
|
137
|
+
* env var simplification ([460b0f2](https://github.com/iotaledger/twin-node/commit/460b0f20a73cb482f7443af502f261d5f9d01759))
|
|
138
|
+
* multi-tenant env wiring, trust auto-enable, tenant-token vault key, engine-driven callbackPath ([#128](https://github.com/iotaledger/twin-node/issues/128)) ([0de4d35](https://github.com/iotaledger/twin-node/commit/0de4d356fb2f825afae5469005d475700f510ee4))
|
|
139
|
+
|
|
140
|
+
## [0.0.3-next.34](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.33...node-core-v0.0.3-next.34) (2026-05-05)
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
### Features
|
|
144
|
+
|
|
145
|
+
* health and url transformer ([#131](https://github.com/iotaledger/twin-node/issues/131)) ([3658903](https://github.com/iotaledger/twin-node/commit/36589036b9bea120880fc395b0d123a89032cf40))
|
|
146
|
+
|
|
147
|
+
## [0.0.3-next.33](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.32...node-core-v0.0.3-next.33) (2026-04-24)
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
### Features
|
|
151
|
+
|
|
152
|
+
* add automation ([cfc63b4](https://github.com/iotaledger/twin-node/commit/cfc63b465c139280f696877df21d54dc6a065a7e))
|
|
153
|
+
|
|
154
|
+
## [0.0.3-next.32](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.31...node-core-v0.0.3-next.32) (2026-04-16)
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
### Features
|
|
158
|
+
|
|
159
|
+
* add notarization ([#121](https://github.com/iotaledger/twin-node/issues/121)) ([b2a11df](https://github.com/iotaledger/twin-node/commit/b2a11df92c7b5026f73f08a018c0586ebe008e92))
|
|
160
|
+
|
|
161
|
+
## [0.0.3-next.31](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.30...node-core-v0.0.3-next.31) (2026-04-14)
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
### Features
|
|
165
|
+
|
|
166
|
+
* authentication services ([#118](https://github.com/iotaledger/twin-node/issues/118)) ([311a7f8](https://github.com/iotaledger/twin-node/commit/311a7f882db1e50a83e94d2dae32fefc68debb47))
|
|
167
|
+
|
|
168
|
+
## [0.0.3-next.30](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.29...node-core-v0.0.3-next.30) (2026-04-06)
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
### Bug Fixes
|
|
172
|
+
|
|
173
|
+
* bootstrap vault key skip logic ([#112](https://github.com/iotaledger/twin-node/issues/112)) ([4084368](https://github.com/iotaledger/twin-node/commit/4084368f0762c3a1b8e214ac30f5545297c88ea6))
|
|
174
|
+
|
|
175
|
+
## [0.0.3-next.29](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.28...node-core-v0.0.3-next.29) (2026-03-20)
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
### Features
|
|
179
|
+
|
|
180
|
+
* update dependencies ([aab05b5](https://github.com/iotaledger/twin-node/commit/aab05b552152a208a504fb9a080603f1990d4f79))
|
|
181
|
+
|
|
182
|
+
## [0.0.3-next.28](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.27...node-core-v0.0.3-next.28) (2026-03-12)
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
### Bug Fixes
|
|
186
|
+
|
|
187
|
+
* bootstrap legacy fails on second run ([c0a4e6d](https://github.com/iotaledger/twin-node/commit/c0a4e6d6f8d1bf385412a22fed2a0974e219abaa))
|
|
188
|
+
|
|
189
|
+
## [0.0.3-next.27](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.26...node-core-v0.0.3-next.27) (2026-03-09)
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
### Features
|
|
193
|
+
|
|
194
|
+
* bootstrap legacy skip ([469d950](https://github.com/iotaledger/twin-node/commit/469d9505bd0497c271ba291641f63786200cb548))
|
|
195
|
+
|
|
196
|
+
## [0.0.3-next.26](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.25...node-core-v0.0.3-next.26) (2026-03-05)
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
### Bug Fixes
|
|
200
|
+
|
|
201
|
+
* synchronised storage construction ([#102](https://github.com/iotaledger/twin-node/issues/102)) ([58b61e9](https://github.com/iotaledger/twin-node/commit/58b61e9a67f499a35bea17e5d2dc6a1efc2cb893))
|
|
202
|
+
|
|
203
|
+
## [0.0.3-next.25](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.24...node-core-v0.0.3-next.25) (2026-03-04)
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
### Features
|
|
207
|
+
|
|
208
|
+
* custom REST paths ([#99](https://github.com/iotaledger/twin-node/issues/99)) ([dcab1b2](https://github.com/iotaledger/twin-node/commit/dcab1b2b23c13b4c9f39c3c1c67284f56e732bd1))
|
|
209
|
+
|
|
210
|
+
## [0.0.3-next.24](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.23...node-core-v0.0.3-next.24) (2026-03-02)
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
### Features
|
|
214
|
+
|
|
215
|
+
* 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))
|
|
216
|
+
|
|
217
|
+
## [0.0.3-next.23](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.22...node-core-v0.0.3-next.23) (2026-02-26)
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
### Features
|
|
221
|
+
|
|
222
|
+
* update engine ([a40b377](https://github.com/iotaledger/twin-node/commit/a40b37726c3b61c6bb40265ec0006d1071ffac7e))
|
|
223
|
+
|
|
224
|
+
## [0.0.3-next.22](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.21...node-core-v0.0.3-next.22) (2026-02-23)
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
### Features
|
|
228
|
+
|
|
229
|
+
* cache the npm root to increase startup speed ([f10ea9e](https://github.com/iotaledger/twin-node/commit/f10ea9e22cc202f320df5fb21507b886c1f7345b))
|
|
230
|
+
* update engine ([4b438e2](https://github.com/iotaledger/twin-node/commit/4b438e22c27d784ee6cc964b7cb4401e9699ab16))
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
### Bug Fixes
|
|
234
|
+
|
|
235
|
+
* test with latest dependencies ([91123b7](https://github.com/iotaledger/twin-node/commit/91123b71d0e7b51700a5d5452b2a0c9fc5c5256e))
|
|
236
|
+
|
|
237
|
+
## [0.0.3-next.21](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.20...node-core-v0.0.3-next.21) (2026-02-13)
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
### Features
|
|
241
|
+
|
|
242
|
+
* 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))
|
|
243
|
+
|
|
244
|
+
## [0.0.3-next.20](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.19...node-core-v0.0.3-next.20) (2026-02-06)
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
### Features
|
|
248
|
+
|
|
249
|
+
* update dependencies ([6cb3d3a](https://github.com/iotaledger/twin-node/commit/6cb3d3a63f7b976f80074ddecfba034b7e92f919))
|
|
250
|
+
|
|
251
|
+
## [0.0.3-next.19](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.18...node-core-v0.0.3-next.19) (2026-02-05)
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
### Miscellaneous Chores
|
|
255
|
+
|
|
256
|
+
* **node-core:** Synchronize repo versions
|
|
257
|
+
|
|
258
|
+
## [0.0.3-next.18](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.17...node-core-v0.0.3-next.18) (2026-02-04)
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
### Features
|
|
262
|
+
|
|
263
|
+
* 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))
|
|
264
|
+
|
|
265
|
+
## [0.0.3-next.17](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.16...node-core-v0.0.3-next.17) (2026-02-02)
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
### Features
|
|
269
|
+
|
|
270
|
+
* update rights management ([5c992c6](https://github.com/iotaledger/twin-node/commit/5c992c6b0d72f3eeaa39ee267e096d9a3f477f4e))
|
|
271
|
+
|
|
272
|
+
## [0.0.3-next.16](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.15...node-core-v0.0.3-next.16) (2026-01-28)
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
### Features
|
|
276
|
+
|
|
277
|
+
* remove dap and darp ([36c3ffb](https://github.com/iotaledger/twin-node/commit/36c3ffb31af65a0e3025859dab675efeee043155))
|
|
278
|
+
|
|
279
|
+
## [0.0.3-next.15](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.14...node-core-v0.0.3-next.15) (2026-01-26)
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
### Features
|
|
283
|
+
|
|
284
|
+
* support public origin and hosting service ([#77](https://github.com/iotaledger/twin-node/issues/77)) ([3b9039f](https://github.com/iotaledger/twin-node/commit/3b9039fcba7f7038c06f8fd6a5ccc9fdbbf535b3))
|
|
285
|
+
* update context usage ([2215440](https://github.com/iotaledger/twin-node/commit/2215440801dea3955885b6579ad9b98b7a5d87ea))
|
|
286
|
+
|
|
287
|
+
## [0.0.3-next.14](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.13...node-core-v0.0.3-next.14) (2026-01-21)
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
### Features
|
|
291
|
+
|
|
292
|
+
* add vault prefix configuration ([#75](https://github.com/iotaledger/twin-node/issues/75)) ([1d4afb1](https://github.com/iotaledger/twin-node/commit/1d4afb1b1a8aa60795898eeb9e7f5153c279527d))
|
|
293
|
+
|
|
294
|
+
## [0.0.3-next.13](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.12...node-core-v0.0.3-next.13) (2026-01-19)
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
### Features
|
|
298
|
+
|
|
299
|
+
* add trust ttl ([#73](https://github.com/iotaledger/twin-node/issues/73)) ([911cee7](https://github.com/iotaledger/twin-node/commit/911cee771bba490143bb1574ca8360f7cf8baa1a))
|
|
300
|
+
* update order of logging ([2161938](https://github.com/iotaledger/twin-node/commit/2161938c969b18e4678459a69090287e5ccdb404))
|
|
301
|
+
* update order of logging ([b295f31](https://github.com/iotaledger/twin-node/commit/b295f315f7c5b611d229d9e5314d414da05828b9))
|
|
302
|
+
|
|
303
|
+
## [0.0.3-next.12](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.11...node-core-v0.0.3-next.12) (2026-01-19)
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
### Features
|
|
307
|
+
|
|
308
|
+
* separate script directory from exec directory ([f6bb4db](https://github.com/iotaledger/twin-node/commit/f6bb4dbea1f1e200e0640fa154c6997ef99c99b4))
|
|
309
|
+
|
|
310
|
+
## [0.0.3-next.11](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.10...node-core-v0.0.3-next.11) (2026-01-19)
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
### Bug Fixes
|
|
314
|
+
|
|
315
|
+
* improve calculation of execution directory ([106d65d](https://github.com/iotaledger/twin-node/commit/106d65d7ad5524e2e147b681d68f9476c024cfaa))
|
|
316
|
+
|
|
317
|
+
## [0.0.3-next.10](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.9...node-core-v0.0.3-next.10) (2026-01-19)
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
### Features
|
|
321
|
+
|
|
322
|
+
* 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))
|
|
323
|
+
|
|
324
|
+
## [0.0.3-next.9](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.8...node-core-v0.0.3-next.9) (2026-01-07)
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
### Features
|
|
328
|
+
|
|
329
|
+
* improve bootstrapping and shutdown behaviour ([#66](https://github.com/iotaledger/twin-node/issues/66)) ([65b3452](https://github.com/iotaledger/twin-node/commit/65b345240334bfff48b52e136cc486cd7ac7f290))
|
|
330
|
+
|
|
331
|
+
## [0.0.3-next.8](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.7...node-core-v0.0.3-next.8) (2026-01-05)
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
### Features
|
|
335
|
+
|
|
336
|
+
* update for livez endpoint ([9fc2e6a](https://github.com/iotaledger/twin-node/commit/9fc2e6ade38b3ec9591399a633d02b1e5fe07910))
|
|
337
|
+
|
|
338
|
+
## [0.0.3-next.7](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.6...node-core-v0.0.3-next.7) (2025-12-04)
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
### Features
|
|
342
|
+
|
|
343
|
+
* add trust and rights management plugin support ([cdeb504](https://github.com/iotaledger/twin-node/commit/cdeb504ee5986a347466162b9afa781645b4a54c))
|
|
344
|
+
|
|
345
|
+
## [0.0.3-next.6](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.5...node-core-v0.0.3-next.6) (2025-11-28)
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
### Features
|
|
349
|
+
|
|
350
|
+
* update background tasks and add fedcat filters ([1fd297e](https://github.com/iotaledger/twin-node/commit/1fd297e29f60b5bb3909638b68e326c5b0e2d77d))
|
|
351
|
+
|
|
352
|
+
## [0.0.3-next.5](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.4...node-core-v0.0.3-next.5) (2025-11-26)
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
### Features
|
|
356
|
+
|
|
357
|
+
* add support for dynamodb connection timeout ([63051b0](https://github.com/iotaledger/twin-node/commit/63051b0d22138079115dfac921e7f0c45eaad34e))
|
|
358
|
+
|
|
359
|
+
## [0.0.3-next.4](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.3...node-core-v0.0.3-next.4) (2025-11-24)
|
|
4
360
|
|
|
5
361
|
|
|
6
362
|
### Bug Fixes
|
|
7
363
|
|
|
8
|
-
* org identity verification methods ([18f158b](https://github.com/
|
|
364
|
+
* org identity verification methods ([18f158b](https://github.com/iotaledger/twin-node/commit/18f158b2f63930e20e94437c17ed43421771a458))
|
|
9
365
|
|
|
10
|
-
## [0.0.3-next.3](https://github.com/
|
|
366
|
+
## [0.0.3-next.3](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.2...node-core-v0.0.3-next.3) (2025-11-20)
|
|
11
367
|
|
|
12
368
|
|
|
13
369
|
### Features
|
|
14
370
|
|
|
15
|
-
* updated context id features ([ef7be07](https://github.com/
|
|
371
|
+
* updated context id features ([ef7be07](https://github.com/iotaledger/twin-node/commit/ef7be07d44dccdeacf10f90cb4ffde0303faa6fa))
|
|
16
372
|
|
|
17
|
-
## [0.0.3-next.2](https://github.com/
|
|
373
|
+
## [0.0.3-next.2](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.1...node-core-v0.0.3-next.2) (2025-11-14)
|
|
18
374
|
|
|
19
375
|
|
|
20
376
|
### Features
|
|
21
377
|
|
|
22
|
-
* additional stop interlock ([b3a2757](https://github.com/
|
|
378
|
+
* additional stop interlock ([b3a2757](https://github.com/iotaledger/twin-node/commit/b3a2757325af0e7b258a9f97f1b52e86087e6301))
|
|
23
379
|
|
|
24
|
-
## [0.0.3-next.1](https://github.com/
|
|
380
|
+
## [0.0.3-next.1](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.3-next.0...node-core-v0.0.3-next.1) (2025-11-13)
|
|
25
381
|
|
|
26
382
|
|
|
27
383
|
### Features
|
|
28
384
|
|
|
29
|
-
* add auth admin component ([1661e57](https://github.com/
|
|
30
|
-
* add context id features ([#53](https://github.com/
|
|
31
|
-
* add data space connector ([5a57087](https://github.com/
|
|
32
|
-
* add data space connector ([f7a3644](https://github.com/
|
|
33
|
-
* add data space connector ([157e8b0](https://github.com/
|
|
34
|
-
* add extend engine and server methods ([ec09c7e](https://github.com/
|
|
35
|
-
* add extend engine and server methods ([0136a6f](https://github.com/
|
|
36
|
-
* add extensions support ([476d5a8](https://github.com/
|
|
37
|
-
* add isDefault flag to logging connectors ([358e839](https://github.com/
|
|
38
|
-
* add missing export ([e8eb621](https://github.com/
|
|
39
|
-
* add module cache and improve resolution ([482be05](https://github.com/
|
|
40
|
-
* add module override for better local import resolution ([ba00d17](https://github.com/
|
|
41
|
-
* add rights management ([78fba62](https://github.com/
|
|
42
|
-
* add rights management components ([0fc6293](https://github.com/
|
|
43
|
-
* add synchronised storage config ([e315869](https://github.com/
|
|
44
|
-
* add validate-locales ([1a19dcb](https://github.com/
|
|
45
|
-
* adding npm and https protocols to load extensions ([#45](https://github.com/
|
|
46
|
-
* additional options for enabling components ([e13d772](https://github.com/
|
|
47
|
-
* additional route logging env vars ([7152c88](https://github.com/
|
|
48
|
-
* additional run options ([c35e5bb](https://github.com/
|
|
49
|
-
* additional startup logging ([0740293](https://github.com/
|
|
50
|
-
* eslint migration to flat config ([080db74](https://github.com/
|
|
51
|
-
* improve default options and spec ([b538721](https://github.com/
|
|
52
|
-
* improve error handling for extensions and logging ([bd84fde](https://github.com/
|
|
53
|
-
* improve error reporting ([fcd39a1](https://github.com/
|
|
54
|
-
* improve node logging ([63d6ea6](https://github.com/
|
|
55
|
-
* improve node logging ([c25b9c6](https://github.com/
|
|
56
|
-
* initial commit ([522f1e5](https://github.com/
|
|
57
|
-
* migrate env config from engine to node ([5da29b8](https://github.com/
|
|
58
|
-
* node app use JavaScript ([14fe08c](https://github.com/
|
|
59
|
-
* remove unused properties ([d8344b5](https://github.com/
|
|
60
|
-
* support multiple entity and blob storage connectors ([a489f79](https://github.com/
|
|
61
|
-
* update dependencies ([9d25f16](https://github.com/
|
|
62
|
-
* update engine dependency ([db290df](https://github.com/
|
|
63
|
-
* update engine dependency ([3494c31](https://github.com/
|
|
64
|
-
* update framework components ([4bee2b9](https://github.com/
|
|
65
|
-
* update framework core ([8bd769a](https://github.com/
|
|
66
|
-
* update rights management components ([176a0d6](https://github.com/
|
|
67
|
-
* update rights management dependencies ([97ad02e](https://github.com/
|
|
68
|
-
* update to latest engine ([00d4974](https://github.com/
|
|
69
|
-
* update to latest engine config ([347386c](https://github.com/
|
|
70
|
-
* updating linting ([feacd17](https://github.com/
|
|
71
|
-
* use features instead of disableNodeIdentity ([2e6109b](https://github.com/
|
|
385
|
+
* add auth admin component ([1661e57](https://github.com/iotaledger/twin-node/commit/1661e57a699d5cf9ebde333e3cbc3aaea89d7c9c))
|
|
386
|
+
* add context id features ([#53](https://github.com/iotaledger/twin-node/issues/53)) ([827adf5](https://github.com/iotaledger/twin-node/commit/827adf52cb87fca53cec52b27e67f7a9dba2c088))
|
|
387
|
+
* add data space connector ([5a57087](https://github.com/iotaledger/twin-node/commit/5a57087d938265d3a4a812ff7c83d130ea4e103c))
|
|
388
|
+
* add data space connector ([f7a3644](https://github.com/iotaledger/twin-node/commit/f7a364477ec664e333e5ad018795acec6ee61edc))
|
|
389
|
+
* add data space connector ([157e8b0](https://github.com/iotaledger/twin-node/commit/157e8b0a76e3a8a63c1991924f7f963eb83e27ae))
|
|
390
|
+
* add extend engine and server methods ([ec09c7e](https://github.com/iotaledger/twin-node/commit/ec09c7eb882d9f5797f2fd372e96cad1a3716f59))
|
|
391
|
+
* add extend engine and server methods ([0136a6f](https://github.com/iotaledger/twin-node/commit/0136a6f3f4e1a82b1427ee9618b8a17c79bc7fda))
|
|
392
|
+
* add extensions support ([476d5a8](https://github.com/iotaledger/twin-node/commit/476d5a864026a2f78e5b02bc9eb81359777a4a45))
|
|
393
|
+
* add isDefault flag to logging connectors ([358e839](https://github.com/iotaledger/twin-node/commit/358e8394819dab9832d3a9ebfac74b897b7d5f40))
|
|
394
|
+
* add missing export ([e8eb621](https://github.com/iotaledger/twin-node/commit/e8eb6213937a202520b164a9970a891004122b61))
|
|
395
|
+
* add module cache and improve resolution ([482be05](https://github.com/iotaledger/twin-node/commit/482be056c37a598033250ea8a7288a33cf3470b4))
|
|
396
|
+
* add module override for better local import resolution ([ba00d17](https://github.com/iotaledger/twin-node/commit/ba00d17beea0a9a1851c89ad7c6a33256051c818))
|
|
397
|
+
* add rights management ([78fba62](https://github.com/iotaledger/twin-node/commit/78fba62f82afdbe615d55dd90eca8ee70ea62fc0))
|
|
398
|
+
* add rights management components ([0fc6293](https://github.com/iotaledger/twin-node/commit/0fc629332db24494bd73003625c7bf3f939a2597))
|
|
399
|
+
* add synchronised storage config ([e315869](https://github.com/iotaledger/twin-node/commit/e315869adbffcd7fe5d3ce151dd35f662f6134a9))
|
|
400
|
+
* add validate-locales ([1a19dcb](https://github.com/iotaledger/twin-node/commit/1a19dcb005c2f0e3103e290db28c48a3464094cb))
|
|
401
|
+
* adding npm and https protocols to load extensions ([#45](https://github.com/iotaledger/twin-node/issues/45)) ([33940b7](https://github.com/iotaledger/twin-node/commit/33940b7e771a0c5af32c18d442deb26a8631fd02))
|
|
402
|
+
* additional options for enabling components ([e13d772](https://github.com/iotaledger/twin-node/commit/e13d7721a0dd7143d456fff246622cbe63dbd0f1))
|
|
403
|
+
* additional route logging env vars ([7152c88](https://github.com/iotaledger/twin-node/commit/7152c887c3ba76778e2d9e68ba57198b8d81d802))
|
|
404
|
+
* additional run options ([c35e5bb](https://github.com/iotaledger/twin-node/commit/c35e5bbb8a80fe6a36628d41f64585b3723d9ad7))
|
|
405
|
+
* additional startup logging ([0740293](https://github.com/iotaledger/twin-node/commit/0740293b366032f2907046603abf587c9c324aff))
|
|
406
|
+
* eslint migration to flat config ([080db74](https://github.com/iotaledger/twin-node/commit/080db746390230f78725d214bc957da2efee9eb1))
|
|
407
|
+
* improve default options and spec ([b538721](https://github.com/iotaledger/twin-node/commit/b538721902e7f65021d2715148ba59409ccce035))
|
|
408
|
+
* improve error handling for extensions and logging ([bd84fde](https://github.com/iotaledger/twin-node/commit/bd84fde67e5a9db6ac66730397992401ca52e88c))
|
|
409
|
+
* improve error reporting ([fcd39a1](https://github.com/iotaledger/twin-node/commit/fcd39a18da2a6ce33965a99ca5f2f36f4aba712f))
|
|
410
|
+
* improve node logging ([63d6ea6](https://github.com/iotaledger/twin-node/commit/63d6ea661c2c76985d98addb8d905ad6f0c7f164))
|
|
411
|
+
* improve node logging ([c25b9c6](https://github.com/iotaledger/twin-node/commit/c25b9c6779bdb76f341df072c39b4c2fae4565a3))
|
|
412
|
+
* initial commit ([522f1e5](https://github.com/iotaledger/twin-node/commit/522f1e515348f9b1dd1eeb3170b1249e2b0b5371))
|
|
413
|
+
* migrate env config from engine to node ([5da29b8](https://github.com/iotaledger/twin-node/commit/5da29b8d714495308320d237a68e84355bba2b47))
|
|
414
|
+
* node app use JavaScript ([14fe08c](https://github.com/iotaledger/twin-node/commit/14fe08cb760dd885a5dac9056a4d5dbc3d61df64))
|
|
415
|
+
* remove unused properties ([d8344b5](https://github.com/iotaledger/twin-node/commit/d8344b5aee5dc1c8104d75fad5093097f6530168))
|
|
416
|
+
* support multiple entity and blob storage connectors ([a489f79](https://github.com/iotaledger/twin-node/commit/a489f7907544aef5708d5111e9f72985e1377bae))
|
|
417
|
+
* update dependencies ([9d25f16](https://github.com/iotaledger/twin-node/commit/9d25f16f1d554cd38f3bec28fdf7f8fff892ceaf))
|
|
418
|
+
* update engine dependency ([db290df](https://github.com/iotaledger/twin-node/commit/db290df3b18374f7d86da575c6048657b98c355b))
|
|
419
|
+
* update engine dependency ([3494c31](https://github.com/iotaledger/twin-node/commit/3494c3144fd5ce6d3a9f2936c7890ab36795aeaa))
|
|
420
|
+
* update framework components ([4bee2b9](https://github.com/iotaledger/twin-node/commit/4bee2b9d3651df09b8550a9ed226be1b46031854))
|
|
421
|
+
* update framework core ([8bd769a](https://github.com/iotaledger/twin-node/commit/8bd769a4451f5f1f6be3f115a5e94eeb05bce7f1))
|
|
422
|
+
* update rights management components ([176a0d6](https://github.com/iotaledger/twin-node/commit/176a0d611f88360fc845ae233b26ee0b43d7cb23))
|
|
423
|
+
* update rights management dependencies ([97ad02e](https://github.com/iotaledger/twin-node/commit/97ad02e4b74cfe5e722f74da2fc2229bbf004c0a))
|
|
424
|
+
* update to latest engine ([00d4974](https://github.com/iotaledger/twin-node/commit/00d4974f9cfb02bf48505cfb4af4a7aba1df4b3d))
|
|
425
|
+
* update to latest engine config ([347386c](https://github.com/iotaledger/twin-node/commit/347386c0609e717dc20c456ad2264c83df793c59))
|
|
426
|
+
* updating linting ([feacd17](https://github.com/iotaledger/twin-node/commit/feacd178bb025bcd29a0ae6e4b8e79f23a989169))
|
|
427
|
+
* use features instead of disableNodeIdentity ([2e6109b](https://github.com/iotaledger/twin-node/commit/2e6109bd1de825e0f5396fc120d99ad7b3929852))
|
|
72
428
|
|
|
73
429
|
|
|
74
430
|
### Bug Fixes
|
|
75
431
|
|
|
76
|
-
* adding a condition to verify if the password exists when bootstrapping ([6030a42](https://github.com/
|
|
77
|
-
* adding a condition to verify if the password exists when bootstrapping ([c66f396](https://github.com/
|
|
78
|
-
* broken docs ([61479fd](https://github.com/
|
|
79
|
-
* pr comments [#1](https://github.com/
|
|
432
|
+
* adding a condition to verify if the password exists when bootstrapping ([6030a42](https://github.com/iotaledger/twin-node/commit/6030a42bdaf581678d96932fd0b809396bf7b8b0))
|
|
433
|
+
* adding a condition to verify if the password exists when bootstrapping ([c66f396](https://github.com/iotaledger/twin-node/commit/c66f396717394161a7647d1f08b3d87729d96e96))
|
|
434
|
+
* broken docs ([61479fd](https://github.com/iotaledger/twin-node/commit/61479fd618f766d22c5aafec5277e1a89e22b453))
|
|
435
|
+
* pr comments [#1](https://github.com/iotaledger/twin-node/issues/1) ([66e795b](https://github.com/iotaledger/twin-node/commit/66e795b16c372ab131ec1de30085aee90e4dbbd0))
|
|
80
436
|
|
|
81
|
-
## [0.0.2-next.26](https://github.com/
|
|
437
|
+
## [0.0.2-next.26](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.2-next.25...node-core-v0.0.2-next.26) (2025-10-10)
|
|
82
438
|
|
|
83
439
|
|
|
84
440
|
### Features
|
|
85
441
|
|
|
86
|
-
* adding npm and https protocols to load extensions ([#45](https://github.com/
|
|
442
|
+
* adding npm and https protocols to load extensions ([#45](https://github.com/iotaledger/twin-node/issues/45)) ([33940b7](https://github.com/iotaledger/twin-node/commit/33940b7e771a0c5af32c18d442deb26a8631fd02))
|
|
87
443
|
|
|
88
|
-
## [0.0.2-next.25](https://github.com/
|
|
444
|
+
## [0.0.2-next.25](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.2-next.24...node-core-v0.0.2-next.25) (2025-10-09)
|
|
89
445
|
|
|
90
446
|
|
|
91
447
|
### Features
|
|
92
448
|
|
|
93
|
-
* add validate-locales ([1a19dcb](https://github.com/
|
|
449
|
+
* add validate-locales ([1a19dcb](https://github.com/iotaledger/twin-node/commit/1a19dcb005c2f0e3103e290db28c48a3464094cb))
|
|
94
450
|
|
|
95
|
-
## [0.0.2-next.24](https://github.com/
|
|
451
|
+
## [0.0.2-next.24](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.2-next.23...node-core-v0.0.2-next.24) (2025-10-08)
|
|
96
452
|
|
|
97
453
|
|
|
98
454
|
### Features
|
|
99
455
|
|
|
100
|
-
* add isDefault flag to logging connectors ([358e839](https://github.com/
|
|
456
|
+
* add isDefault flag to logging connectors ([358e839](https://github.com/iotaledger/twin-node/commit/358e8394819dab9832d3a9ebfac74b897b7d5f40))
|
|
101
457
|
|
|
102
|
-
## [0.0.2-next.23](https://github.com/
|
|
458
|
+
## [0.0.2-next.23](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.2-next.22...node-core-v0.0.2-next.23) (2025-10-07)
|
|
103
459
|
|
|
104
460
|
|
|
105
461
|
### Features
|
|
106
462
|
|
|
107
|
-
* add module cache and improve resolution ([482be05](https://github.com/
|
|
463
|
+
* add module cache and improve resolution ([482be05](https://github.com/iotaledger/twin-node/commit/482be056c37a598033250ea8a7288a33cf3470b4))
|
|
108
464
|
|
|
109
|
-
## [0.0.2-next.22](https://github.com/
|
|
465
|
+
## [0.0.2-next.22](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.2-next.21...node-core-v0.0.2-next.22) (2025-10-07)
|
|
110
466
|
|
|
111
467
|
|
|
112
468
|
### Features
|
|
113
469
|
|
|
114
|
-
* update engine dependency ([db290df](https://github.com/
|
|
470
|
+
* update engine dependency ([db290df](https://github.com/iotaledger/twin-node/commit/db290df3b18374f7d86da575c6048657b98c355b))
|
|
115
471
|
|
|
116
|
-
## [0.0.2-next.21](https://github.com/
|
|
472
|
+
## [0.0.2-next.21](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.2-next.20...node-core-v0.0.2-next.21) (2025-10-07)
|
|
117
473
|
|
|
118
474
|
|
|
119
475
|
### Features
|
|
120
476
|
|
|
121
|
-
* update engine dependency ([3494c31](https://github.com/
|
|
477
|
+
* update engine dependency ([3494c31](https://github.com/iotaledger/twin-node/commit/3494c3144fd5ce6d3a9f2936c7890ab36795aeaa))
|
|
122
478
|
|
|
123
|
-
## [0.0.2-next.20](https://github.com/
|
|
479
|
+
## [0.0.2-next.20](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.2-next.19...node-core-v0.0.2-next.20) (2025-10-06)
|
|
124
480
|
|
|
125
481
|
|
|
126
482
|
### Features
|
|
127
483
|
|
|
128
|
-
* improve node logging ([63d6ea6](https://github.com/
|
|
129
|
-
* improve node logging ([c25b9c6](https://github.com/
|
|
484
|
+
* improve node logging ([63d6ea6](https://github.com/iotaledger/twin-node/commit/63d6ea661c2c76985d98addb8d905ad6f0c7f164))
|
|
485
|
+
* improve node logging ([c25b9c6](https://github.com/iotaledger/twin-node/commit/c25b9c6779bdb76f341df072c39b4c2fae4565a3))
|
|
130
486
|
|
|
131
|
-
## [0.0.2-next.19](https://github.com/
|
|
487
|
+
## [0.0.2-next.19](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.2-next.18...node-core-v0.0.2-next.19) (2025-10-03)
|
|
132
488
|
|
|
133
489
|
|
|
134
490
|
### Features
|
|
135
491
|
|
|
136
|
-
* use features instead of disableNodeIdentity ([2e6109b](https://github.com/
|
|
492
|
+
* use features instead of disableNodeIdentity ([2e6109b](https://github.com/iotaledger/twin-node/commit/2e6109bd1de825e0f5396fc120d99ad7b3929852))
|
|
137
493
|
|
|
138
|
-
## [0.0.2-next.18](https://github.com/
|
|
494
|
+
## [0.0.2-next.18](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.2-next.17...node-core-v0.0.2-next.18) (2025-10-03)
|
|
139
495
|
|
|
140
496
|
|
|
141
497
|
### Features
|
|
142
498
|
|
|
143
|
-
* improve error handling for extensions and logging ([bd84fde](https://github.com/
|
|
499
|
+
* improve error handling for extensions and logging ([bd84fde](https://github.com/iotaledger/twin-node/commit/bd84fde67e5a9db6ac66730397992401ca52e88c))
|
|
144
500
|
|
|
145
|
-
## [0.0.2-next.17](https://github.com/
|
|
501
|
+
## [0.0.2-next.17](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.2-next.16...node-core-v0.0.2-next.17) (2025-10-02)
|
|
146
502
|
|
|
147
503
|
|
|
148
504
|
### Features
|
|
149
505
|
|
|
150
|
-
* add extensions support ([476d5a8](https://github.com/
|
|
151
|
-
* updating linting ([feacd17](https://github.com/
|
|
506
|
+
* add extensions support ([476d5a8](https://github.com/iotaledger/twin-node/commit/476d5a864026a2f78e5b02bc9eb81359777a4a45))
|
|
507
|
+
* updating linting ([feacd17](https://github.com/iotaledger/twin-node/commit/feacd178bb025bcd29a0ae6e4b8e79f23a989169))
|
|
152
508
|
|
|
153
|
-
## [0.0.2-next.16](https://github.com/
|
|
509
|
+
## [0.0.2-next.16](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.2-next.15...node-core-v0.0.2-next.16) (2025-09-29)
|
|
154
510
|
|
|
155
511
|
|
|
156
512
|
### Features
|
|
157
513
|
|
|
158
|
-
* update framework components ([4bee2b9](https://github.com/
|
|
514
|
+
* update framework components ([4bee2b9](https://github.com/iotaledger/twin-node/commit/4bee2b9d3651df09b8550a9ed226be1b46031854))
|
|
159
515
|
|
|
160
|
-
## [0.0.2-next.15](https://github.com/
|
|
516
|
+
## [0.0.2-next.15](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.2-next.14...node-core-v0.0.2-next.15) (2025-09-26)
|
|
161
517
|
|
|
162
518
|
|
|
163
519
|
### Features
|
|
164
520
|
|
|
165
|
-
* additional options for enabling components ([e13d772](https://github.com/
|
|
521
|
+
* additional options for enabling components ([e13d772](https://github.com/iotaledger/twin-node/commit/e13d7721a0dd7143d456fff246622cbe63dbd0f1))
|
|
166
522
|
|
|
167
|
-
## [0.0.2-next.14](https://github.com/
|
|
523
|
+
## [0.0.2-next.14](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.2-next.13...node-core-v0.0.2-next.14) (2025-09-25)
|
|
168
524
|
|
|
169
525
|
|
|
170
526
|
### Features
|
|
171
527
|
|
|
172
|
-
* additional route logging env vars ([7152c88](https://github.com/
|
|
528
|
+
* additional route logging env vars ([7152c88](https://github.com/iotaledger/twin-node/commit/7152c887c3ba76778e2d9e68ba57198b8d81d802))
|
|
173
529
|
|
|
174
|
-
## [0.0.2-next.13](https://github.com/
|
|
530
|
+
## [0.0.2-next.13](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.2-next.12...node-core-v0.0.2-next.13) (2025-09-24)
|
|
175
531
|
|
|
176
532
|
|
|
177
533
|
### Features
|
|
178
534
|
|
|
179
|
-
* update to latest engine ([00d4974](https://github.com/
|
|
535
|
+
* update to latest engine ([00d4974](https://github.com/iotaledger/twin-node/commit/00d4974f9cfb02bf48505cfb4af4a7aba1df4b3d))
|
|
180
536
|
|
|
181
|
-
## [0.0.2-next.12](https://github.com/
|
|
537
|
+
## [0.0.2-next.12](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.2-next.11...node-core-v0.0.2-next.12) (2025-09-19)
|
|
182
538
|
|
|
183
539
|
|
|
184
540
|
### Features
|
|
185
541
|
|
|
186
|
-
* update rights management components ([176a0d6](https://github.com/
|
|
542
|
+
* update rights management components ([176a0d6](https://github.com/iotaledger/twin-node/commit/176a0d611f88360fc845ae233b26ee0b43d7cb23))
|
|
187
543
|
|
|
188
|
-
## [0.0.2-next.11](https://github.com/
|
|
544
|
+
## [0.0.2-next.11](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.2-next.10...node-core-v0.0.2-next.11) (2025-09-08)
|
|
189
545
|
|
|
190
546
|
|
|
191
547
|
### Features
|
|
192
548
|
|
|
193
|
-
* update rights management dependencies ([97ad02e](https://github.com/
|
|
549
|
+
* update rights management dependencies ([97ad02e](https://github.com/iotaledger/twin-node/commit/97ad02e4b74cfe5e722f74da2fc2229bbf004c0a))
|
|
194
550
|
|
|
195
|
-
## [0.0.2-next.10](https://github.com/
|
|
551
|
+
## [0.0.2-next.10](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.2-next.9...node-core-v0.0.2-next.10) (2025-09-05)
|
|
196
552
|
|
|
197
553
|
|
|
198
554
|
### Features
|
|
199
555
|
|
|
200
|
-
* add rights management components ([0fc6293](https://github.com/
|
|
556
|
+
* add rights management components ([0fc6293](https://github.com/iotaledger/twin-node/commit/0fc629332db24494bd73003625c7bf3f939a2597))
|
|
201
557
|
|
|
202
|
-
## [0.0.2-next.9](https://github.com/
|
|
558
|
+
## [0.0.2-next.9](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.2-next.8...node-core-v0.0.2-next.9) (2025-08-31)
|
|
203
559
|
|
|
204
560
|
|
|
205
561
|
### Features
|
|
206
562
|
|
|
207
|
-
* eslint migration to flat config ([080db74](https://github.com/
|
|
563
|
+
* eslint migration to flat config ([080db74](https://github.com/iotaledger/twin-node/commit/080db746390230f78725d214bc957da2efee9eb1))
|
|
208
564
|
|
|
209
|
-
## [0.0.2-next.8](https://github.com/
|
|
565
|
+
## [0.0.2-next.8](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.2-next.7...node-core-v0.0.2-next.8) (2025-08-27)
|
|
210
566
|
|
|
211
567
|
|
|
212
568
|
### Features
|
|
213
569
|
|
|
214
|
-
* add module override for better local import resolution ([ba00d17](https://github.com/
|
|
570
|
+
* add module override for better local import resolution ([ba00d17](https://github.com/iotaledger/twin-node/commit/ba00d17beea0a9a1851c89ad7c6a33256051c818))
|
|
215
571
|
|
|
216
|
-
## [0.0.2-next.7](https://github.com/
|
|
572
|
+
## [0.0.2-next.7](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.2-next.6...node-core-v0.0.2-next.7) (2025-08-26)
|
|
217
573
|
|
|
218
574
|
|
|
219
575
|
### Features
|
|
220
576
|
|
|
221
|
-
* add data space connector ([5a57087](https://github.com/
|
|
222
|
-
* add data space connector ([f7a3644](https://github.com/
|
|
223
|
-
* add data space connector ([157e8b0](https://github.com/
|
|
577
|
+
* add data space connector ([5a57087](https://github.com/iotaledger/twin-node/commit/5a57087d938265d3a4a812ff7c83d130ea4e103c))
|
|
578
|
+
* add data space connector ([f7a3644](https://github.com/iotaledger/twin-node/commit/f7a364477ec664e333e5ad018795acec6ee61edc))
|
|
579
|
+
* add data space connector ([157e8b0](https://github.com/iotaledger/twin-node/commit/157e8b0a76e3a8a63c1991924f7f963eb83e27ae))
|
|
224
580
|
|
|
225
|
-
## [0.0.2-next.6](https://github.com/
|
|
581
|
+
## [0.0.2-next.6](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.2-next.5...node-core-v0.0.2-next.6) (2025-08-22)
|
|
226
582
|
|
|
227
583
|
|
|
228
584
|
### Features
|
|
229
585
|
|
|
230
|
-
* add rights management ([78fba62](https://github.com/
|
|
231
|
-
* remove unused properties ([d8344b5](https://github.com/
|
|
586
|
+
* add rights management ([78fba62](https://github.com/iotaledger/twin-node/commit/78fba62f82afdbe615d55dd90eca8ee70ea62fc0))
|
|
587
|
+
* remove unused properties ([d8344b5](https://github.com/iotaledger/twin-node/commit/d8344b5aee5dc1c8104d75fad5093097f6530168))
|
|
232
588
|
|
|
233
|
-
## [0.0.2-next.5](https://github.com/
|
|
589
|
+
## [0.0.2-next.5](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.2-next.4...node-core-v0.0.2-next.5) (2025-08-21)
|
|
234
590
|
|
|
235
591
|
|
|
236
592
|
### Features
|
|
237
593
|
|
|
238
|
-
* update framework core ([8bd769a](https://github.com/
|
|
594
|
+
* update framework core ([8bd769a](https://github.com/iotaledger/twin-node/commit/8bd769a4451f5f1f6be3f115a5e94eeb05bce7f1))
|
|
239
595
|
|
|
240
|
-
## [0.0.2-next.4](https://github.com/
|
|
596
|
+
## [0.0.2-next.4](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.2-next.3...node-core-v0.0.2-next.4) (2025-08-14)
|
|
241
597
|
|
|
242
598
|
|
|
243
599
|
### Features
|
|
244
600
|
|
|
245
|
-
* add synchronised storage config ([e315869](https://github.com/
|
|
601
|
+
* add synchronised storage config ([e315869](https://github.com/iotaledger/twin-node/commit/e315869adbffcd7fe5d3ce151dd35f662f6134a9))
|
|
246
602
|
|
|
247
|
-
## [0.0.2-next.3](https://github.com/
|
|
603
|
+
## [0.0.2-next.3](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.2-next.2...node-core-v0.0.2-next.3) (2025-07-21)
|
|
248
604
|
|
|
249
605
|
|
|
250
606
|
### Features
|
|
251
607
|
|
|
252
|
-
* update to latest engine config ([347386c](https://github.com/
|
|
608
|
+
* update to latest engine config ([347386c](https://github.com/iotaledger/twin-node/commit/347386c0609e717dc20c456ad2264c83df793c59))
|
|
253
609
|
|
|
254
|
-
## [0.0.2-next.2](https://github.com/
|
|
610
|
+
## [0.0.2-next.2](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.2-next.1...node-core-v0.0.2-next.2) (2025-07-17)
|
|
255
611
|
|
|
256
612
|
|
|
257
613
|
### Features
|
|
258
614
|
|
|
259
|
-
* support multiple entity and blob storage connectors ([a489f79](https://github.com/
|
|
615
|
+
* support multiple entity and blob storage connectors ([a489f79](https://github.com/iotaledger/twin-node/commit/a489f7907544aef5708d5111e9f72985e1377bae))
|
|
260
616
|
|
|
261
|
-
## [0.0.2-next.1](https://github.com/
|
|
617
|
+
## [0.0.2-next.1](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.2-next.0...node-core-v0.0.2-next.1) (2025-07-15)
|
|
262
618
|
|
|
263
619
|
|
|
264
620
|
### Features
|
|
265
621
|
|
|
266
|
-
* add auth admin component ([1661e57](https://github.com/
|
|
267
|
-
* add extend engine and server methods ([ec09c7e](https://github.com/
|
|
268
|
-
* add extend engine and server methods ([0136a6f](https://github.com/
|
|
269
|
-
* add missing export ([e8eb621](https://github.com/
|
|
270
|
-
* additional run options ([c35e5bb](https://github.com/
|
|
271
|
-
* additional startup logging ([0740293](https://github.com/
|
|
272
|
-
* improve default options and spec ([b538721](https://github.com/
|
|
273
|
-
* improve error reporting ([fcd39a1](https://github.com/
|
|
274
|
-
* initial commit ([522f1e5](https://github.com/
|
|
275
|
-
* migrate env config from engine to node ([5da29b8](https://github.com/
|
|
276
|
-
* node app use JavaScript ([14fe08c](https://github.com/
|
|
277
|
-
* update dependencies ([9d25f16](https://github.com/
|
|
622
|
+
* add auth admin component ([1661e57](https://github.com/iotaledger/twin-node/commit/1661e57a699d5cf9ebde333e3cbc3aaea89d7c9c))
|
|
623
|
+
* add extend engine and server methods ([ec09c7e](https://github.com/iotaledger/twin-node/commit/ec09c7eb882d9f5797f2fd372e96cad1a3716f59))
|
|
624
|
+
* add extend engine and server methods ([0136a6f](https://github.com/iotaledger/twin-node/commit/0136a6f3f4e1a82b1427ee9618b8a17c79bc7fda))
|
|
625
|
+
* add missing export ([e8eb621](https://github.com/iotaledger/twin-node/commit/e8eb6213937a202520b164a9970a891004122b61))
|
|
626
|
+
* additional run options ([c35e5bb](https://github.com/iotaledger/twin-node/commit/c35e5bbb8a80fe6a36628d41f64585b3723d9ad7))
|
|
627
|
+
* additional startup logging ([0740293](https://github.com/iotaledger/twin-node/commit/0740293b366032f2907046603abf587c9c324aff))
|
|
628
|
+
* improve default options and spec ([b538721](https://github.com/iotaledger/twin-node/commit/b538721902e7f65021d2715148ba59409ccce035))
|
|
629
|
+
* improve error reporting ([fcd39a1](https://github.com/iotaledger/twin-node/commit/fcd39a18da2a6ce33965a99ca5f2f36f4aba712f))
|
|
630
|
+
* initial commit ([522f1e5](https://github.com/iotaledger/twin-node/commit/522f1e515348f9b1dd1eeb3170b1249e2b0b5371))
|
|
631
|
+
* migrate env config from engine to node ([5da29b8](https://github.com/iotaledger/twin-node/commit/5da29b8d714495308320d237a68e84355bba2b47))
|
|
632
|
+
* node app use JavaScript ([14fe08c](https://github.com/iotaledger/twin-node/commit/14fe08cb760dd885a5dac9056a4d5dbc3d61df64))
|
|
633
|
+
* update dependencies ([9d25f16](https://github.com/iotaledger/twin-node/commit/9d25f16f1d554cd38f3bec28fdf7f8fff892ceaf))
|
|
278
634
|
|
|
279
635
|
|
|
280
636
|
### Bug Fixes
|
|
281
637
|
|
|
282
|
-
* adding a condition to verify if the password exists when bootstrapping ([6030a42](https://github.com/
|
|
283
|
-
* adding a condition to verify if the password exists when bootstrapping ([c66f396](https://github.com/
|
|
284
|
-
* broken docs ([61479fd](https://github.com/
|
|
285
|
-
* pr comments [#1](https://github.com/
|
|
638
|
+
* adding a condition to verify if the password exists when bootstrapping ([6030a42](https://github.com/iotaledger/twin-node/commit/6030a42bdaf581678d96932fd0b809396bf7b8b0))
|
|
639
|
+
* adding a condition to verify if the password exists when bootstrapping ([c66f396](https://github.com/iotaledger/twin-node/commit/c66f396717394161a7647d1f08b3d87729d96e96))
|
|
640
|
+
* broken docs ([61479fd](https://github.com/iotaledger/twin-node/commit/61479fd618f766d22c5aafec5277e1a89e22b453))
|
|
641
|
+
* pr comments [#1](https://github.com/iotaledger/twin-node/issues/1) ([66e795b](https://github.com/iotaledger/twin-node/commit/66e795b16c372ab131ec1de30085aee90e4dbbd0))
|
|
286
642
|
|
|
287
643
|
## 0.0.1 (2025-07-11)
|
|
288
644
|
|
|
289
645
|
|
|
290
646
|
### Features
|
|
291
647
|
|
|
292
|
-
* add auth admin component ([1661e57](https://github.com/
|
|
293
|
-
* add extend engine and server methods ([ec09c7e](https://github.com/
|
|
294
|
-
* add extend engine and server methods ([0136a6f](https://github.com/
|
|
295
|
-
* additional run options ([c35e5bb](https://github.com/
|
|
296
|
-
* additional startup logging ([0740293](https://github.com/
|
|
297
|
-
* improve default options and spec ([b538721](https://github.com/
|
|
298
|
-
* improve error reporting ([fcd39a1](https://github.com/
|
|
299
|
-
* initial commit ([522f1e5](https://github.com/
|
|
300
|
-
* migrate env config from engine to node ([5da29b8](https://github.com/
|
|
301
|
-
* node app use JavaScript ([14fe08c](https://github.com/
|
|
302
|
-
* release to production ([6319a38](https://github.com/
|
|
303
|
-
* release to production ([4f44403](https://github.com/
|
|
304
|
-
* release to production ([2d96e37](https://github.com/
|
|
305
|
-
* update dependencies ([9d25f16](https://github.com/
|
|
648
|
+
* add auth admin component ([1661e57](https://github.com/iotaledger/twin-node/commit/1661e57a699d5cf9ebde333e3cbc3aaea89d7c9c))
|
|
649
|
+
* add extend engine and server methods ([ec09c7e](https://github.com/iotaledger/twin-node/commit/ec09c7eb882d9f5797f2fd372e96cad1a3716f59))
|
|
650
|
+
* add extend engine and server methods ([0136a6f](https://github.com/iotaledger/twin-node/commit/0136a6f3f4e1a82b1427ee9618b8a17c79bc7fda))
|
|
651
|
+
* additional run options ([c35e5bb](https://github.com/iotaledger/twin-node/commit/c35e5bbb8a80fe6a36628d41f64585b3723d9ad7))
|
|
652
|
+
* additional startup logging ([0740293](https://github.com/iotaledger/twin-node/commit/0740293b366032f2907046603abf587c9c324aff))
|
|
653
|
+
* improve default options and spec ([b538721](https://github.com/iotaledger/twin-node/commit/b538721902e7f65021d2715148ba59409ccce035))
|
|
654
|
+
* improve error reporting ([fcd39a1](https://github.com/iotaledger/twin-node/commit/fcd39a18da2a6ce33965a99ca5f2f36f4aba712f))
|
|
655
|
+
* initial commit ([522f1e5](https://github.com/iotaledger/twin-node/commit/522f1e515348f9b1dd1eeb3170b1249e2b0b5371))
|
|
656
|
+
* migrate env config from engine to node ([5da29b8](https://github.com/iotaledger/twin-node/commit/5da29b8d714495308320d237a68e84355bba2b47))
|
|
657
|
+
* node app use JavaScript ([14fe08c](https://github.com/iotaledger/twin-node/commit/14fe08cb760dd885a5dac9056a4d5dbc3d61df64))
|
|
658
|
+
* release to production ([6319a38](https://github.com/iotaledger/twin-node/commit/6319a38490a2c2809622f8acd170cb92bfa06942))
|
|
659
|
+
* release to production ([4f44403](https://github.com/iotaledger/twin-node/commit/4f444039832edce8fae562baa7c900ccdc2181da))
|
|
660
|
+
* release to production ([2d96e37](https://github.com/iotaledger/twin-node/commit/2d96e3737bd9663bc0d1171c2ff2c7f8b2ab01bb))
|
|
661
|
+
* update dependencies ([9d25f16](https://github.com/iotaledger/twin-node/commit/9d25f16f1d554cd38f3bec28fdf7f8fff892ceaf))
|
|
306
662
|
|
|
307
663
|
|
|
308
664
|
### Bug Fixes
|
|
309
665
|
|
|
310
|
-
* adding a condition to verify if the password exists when bootstrapping ([6030a42](https://github.com/
|
|
311
|
-
* adding a condition to verify if the password exists when bootstrapping ([c66f396](https://github.com/
|
|
312
|
-
* broken docs ([61479fd](https://github.com/
|
|
313
|
-
* pr comments [#1](https://github.com/
|
|
666
|
+
* adding a condition to verify if the password exists when bootstrapping ([6030a42](https://github.com/iotaledger/twin-node/commit/6030a42bdaf581678d96932fd0b809396bf7b8b0))
|
|
667
|
+
* adding a condition to verify if the password exists when bootstrapping ([c66f396](https://github.com/iotaledger/twin-node/commit/c66f396717394161a7647d1f08b3d87729d96e96))
|
|
668
|
+
* broken docs ([61479fd](https://github.com/iotaledger/twin-node/commit/61479fd618f766d22c5aafec5277e1a89e22b453))
|
|
669
|
+
* pr comments [#1](https://github.com/iotaledger/twin-node/issues/1) ([66e795b](https://github.com/iotaledger/twin-node/commit/66e795b16c372ab131ec1de30085aee90e4dbbd0))
|
|
314
670
|
|
|
315
|
-
## [0.0.1-next.11](https://github.com/
|
|
671
|
+
## [0.0.1-next.11](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.1-next.10...node-core-v0.0.1-next.11) (2025-07-11)
|
|
316
672
|
|
|
317
673
|
|
|
318
674
|
### Features
|
|
319
675
|
|
|
320
|
-
* add auth admin component ([1661e57](https://github.com/
|
|
676
|
+
* add auth admin component ([1661e57](https://github.com/iotaledger/twin-node/commit/1661e57a699d5cf9ebde333e3cbc3aaea89d7c9c))
|
|
321
677
|
|
|
322
|
-
## [0.0.1-next.10](https://github.com/
|
|
678
|
+
## [0.0.1-next.10](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.1-next.9...node-core-v0.0.1-next.10) (2025-07-11)
|
|
323
679
|
|
|
324
680
|
|
|
325
681
|
### Features
|
|
326
682
|
|
|
327
|
-
* migrate env config from engine to node ([5da29b8](https://github.com/
|
|
683
|
+
* migrate env config from engine to node ([5da29b8](https://github.com/iotaledger/twin-node/commit/5da29b8d714495308320d237a68e84355bba2b47))
|
|
328
684
|
|
|
329
|
-
## [0.0.1-next.9](https://github.com/
|
|
685
|
+
## [0.0.1-next.9](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.1-next.8...node-core-v0.0.1-next.9) (2025-06-20)
|
|
330
686
|
|
|
331
687
|
|
|
332
688
|
### Features
|
|
333
689
|
|
|
334
|
-
* additional startup logging ([0740293](https://github.com/
|
|
690
|
+
* additional startup logging ([0740293](https://github.com/iotaledger/twin-node/commit/0740293b366032f2907046603abf587c9c324aff))
|
|
335
691
|
|
|
336
|
-
## [0.0.1-next.8](https://github.com/
|
|
692
|
+
## [0.0.1-next.8](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.1-next.7...node-core-v0.0.1-next.8) (2025-06-18)
|
|
337
693
|
|
|
338
694
|
|
|
339
695
|
### Features
|
|
340
696
|
|
|
341
|
-
* improve default options and spec ([b538721](https://github.com/
|
|
697
|
+
* improve default options and spec ([b538721](https://github.com/iotaledger/twin-node/commit/b538721902e7f65021d2715148ba59409ccce035))
|
|
342
698
|
|
|
343
|
-
## [0.0.1-next.7](https://github.com/
|
|
699
|
+
## [0.0.1-next.7](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.1-next.6...node-core-v0.0.1-next.7) (2025-06-17)
|
|
344
700
|
|
|
345
701
|
|
|
346
702
|
### Bug Fixes
|
|
347
703
|
|
|
348
|
-
* adding a condition to verify if the password exists when bootstrapping ([6030a42](https://github.com/
|
|
349
|
-
* adding a condition to verify if the password exists when bootstrapping ([c66f396](https://github.com/
|
|
350
|
-
* pr comments [#1](https://github.com/
|
|
704
|
+
* adding a condition to verify if the password exists when bootstrapping ([6030a42](https://github.com/iotaledger/twin-node/commit/6030a42bdaf581678d96932fd0b809396bf7b8b0))
|
|
705
|
+
* adding a condition to verify if the password exists when bootstrapping ([c66f396](https://github.com/iotaledger/twin-node/commit/c66f396717394161a7647d1f08b3d87729d96e96))
|
|
706
|
+
* pr comments [#1](https://github.com/iotaledger/twin-node/issues/1) ([66e795b](https://github.com/iotaledger/twin-node/commit/66e795b16c372ab131ec1de30085aee90e4dbbd0))
|
|
351
707
|
|
|
352
|
-
## [0.0.1-next.6](https://github.com/
|
|
708
|
+
## [0.0.1-next.6](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.1-next.5...node-core-v0.0.1-next.6) (2025-06-12)
|
|
353
709
|
|
|
354
710
|
### Features
|
|
355
711
|
|
|
356
|
-
- add extend engine and server methods ([ec09c7e](https://github.com/
|
|
357
|
-
- add extend engine and server methods ([0136a6f](https://github.com/
|
|
358
|
-
- additional run options ([c35e5bb](https://github.com/
|
|
359
|
-
- improve error reporting ([fcd39a1](https://github.com/
|
|
360
|
-
- initial commit ([522f1e5](https://github.com/
|
|
361
|
-
- node app use JavaScript ([14fe08c](https://github.com/
|
|
362
|
-
- update dependencies ([9d25f16](https://github.com/
|
|
712
|
+
- add extend engine and server methods ([ec09c7e](https://github.com/iotaledger/twin-node/commit/ec09c7eb882d9f5797f2fd372e96cad1a3716f59))
|
|
713
|
+
- add extend engine and server methods ([0136a6f](https://github.com/iotaledger/twin-node/commit/0136a6f3f4e1a82b1427ee9618b8a17c79bc7fda))
|
|
714
|
+
- additional run options ([c35e5bb](https://github.com/iotaledger/twin-node/commit/c35e5bbb8a80fe6a36628d41f64585b3723d9ad7))
|
|
715
|
+
- improve error reporting ([fcd39a1](https://github.com/iotaledger/twin-node/commit/fcd39a18da2a6ce33965a99ca5f2f36f4aba712f))
|
|
716
|
+
- initial commit ([522f1e5](https://github.com/iotaledger/twin-node/commit/522f1e515348f9b1dd1eeb3170b1249e2b0b5371))
|
|
717
|
+
- node app use JavaScript ([14fe08c](https://github.com/iotaledger/twin-node/commit/14fe08cb760dd885a5dac9056a4d5dbc3d61df64))
|
|
718
|
+
- update dependencies ([9d25f16](https://github.com/iotaledger/twin-node/commit/9d25f16f1d554cd38f3bec28fdf7f8fff892ceaf))
|
|
363
719
|
|
|
364
720
|
### Bug Fixes
|
|
365
721
|
|
|
366
|
-
- broken docs ([61479fd](https://github.com/
|
|
722
|
+
- broken docs ([61479fd](https://github.com/iotaledger/twin-node/commit/61479fd618f766d22c5aafec5277e1a89e22b453))
|
|
367
723
|
|
|
368
|
-
## [0.0.1-next.5](https://github.com/
|
|
724
|
+
## [0.0.1-next.5](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.1-next.4...node-core-v0.0.1-next.5) (2025-06-12)
|
|
369
725
|
|
|
370
726
|
### Features
|
|
371
727
|
|
|
372
|
-
- add extend engine and server methods ([0136a6f](https://github.com/
|
|
728
|
+
- add extend engine and server methods ([0136a6f](https://github.com/iotaledger/twin-node/commit/0136a6f3f4e1a82b1427ee9618b8a17c79bc7fda))
|
|
373
729
|
|
|
374
|
-
## [0.0.1-next.4](https://github.com/
|
|
730
|
+
## [0.0.1-next.4](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.1-next.3...node-core-v0.0.1-next.4) (2025-05-27)
|
|
375
731
|
|
|
376
732
|
### Features
|
|
377
733
|
|
|
378
|
-
- improve error reporting ([fcd39a1](https://github.com/
|
|
734
|
+
- improve error reporting ([fcd39a1](https://github.com/iotaledger/twin-node/commit/fcd39a18da2a6ce33965a99ca5f2f36f4aba712f))
|
|
379
735
|
|
|
380
736
|
### Bug Fixes
|
|
381
737
|
|
|
382
|
-
- broken docs ([61479fd](https://github.com/
|
|
738
|
+
- broken docs ([61479fd](https://github.com/iotaledger/twin-node/commit/61479fd618f766d22c5aafec5277e1a89e22b453))
|
|
383
739
|
|
|
384
|
-
## [0.0.1-next.3](https://github.com/
|
|
740
|
+
## [0.0.1-next.3](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.1-next.2...node-core-v0.0.1-next.3) (2025-05-27)
|
|
385
741
|
|
|
386
742
|
### Features
|
|
387
743
|
|
|
388
|
-
- additional run options ([c35e5bb](https://github.com/
|
|
389
|
-
- node app use JavaScript ([14fe08c](https://github.com/
|
|
744
|
+
- additional run options ([c35e5bb](https://github.com/iotaledger/twin-node/commit/c35e5bbb8a80fe6a36628d41f64585b3723d9ad7))
|
|
745
|
+
- node app use JavaScript ([14fe08c](https://github.com/iotaledger/twin-node/commit/14fe08cb760dd885a5dac9056a4d5dbc3d61df64))
|
|
390
746
|
|
|
391
|
-
## [0.0.1-next.2](https://github.com/
|
|
747
|
+
## [0.0.1-next.2](https://github.com/iotaledger/twin-node/compare/node-core-v0.0.1-next.1...node-core-v0.0.1-next.2) (2025-05-27)
|
|
392
748
|
|
|
393
749
|
### Features
|
|
394
750
|
|
|
395
|
-
- initial commit ([522f1e5](https://github.com/
|
|
751
|
+
- initial commit ([522f1e5](https://github.com/iotaledger/twin-node/commit/522f1e515348f9b1dd1eeb3170b1249e2b0b5371))
|