@twin.org/engine-core 0.0.3-next.8 → 0.9.0-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/README.md +1 -1
- package/dist/es/engineCore.js +138 -77
- package/dist/es/engineCore.js.map +1 -1
- package/dist/es/index.js +0 -1
- package/dist/es/index.js.map +1 -1
- package/dist/es/storage/fileStateStorage.js +1 -1
- package/dist/es/storage/fileStateStorage.js.map +1 -1
- package/dist/es/storage/memoryStateStorage.js +1 -1
- package/dist/es/storage/memoryStateStorage.js.map +1 -1
- package/dist/types/engineCore.d.ts +35 -5
- package/dist/types/index.d.ts +0 -1
- package/dist/types/storage/fileStateStorage.d.ts +1 -1
- package/dist/types/storage/memoryStateStorage.d.ts +1 -1
- package/docs/changelog.md +960 -114
- package/docs/examples.md +156 -1
- package/docs/reference/classes/EngineCore.md +148 -38
- package/docs/reference/classes/FileStateStorage.md +8 -8
- package/docs/reference/classes/MemoryStateStorage.md +8 -8
- package/docs/reference/index.md +0 -1
- package/docs/reference/interfaces/IEngineCoreOptions.md +10 -10
- package/locales/en.json +2 -4
- package/package.json +15 -15
- package/dist/es/utils/engineModuleHelper.js +0 -46
- package/dist/es/utils/engineModuleHelper.js.map +0 -1
- package/dist/types/utils/engineModuleHelper.d.ts +0 -17
- package/docs/reference/classes/EngineModuleHelper.md +0 -55
package/docs/changelog.md
CHANGED
|
@@ -1,6 +1,852 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.0
|
|
3
|
+
## [0.9.0-next.1](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.9.0-next.0...engine-core-v0.9.0-next.1) (2026-06-24)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
|
|
9
|
+
* add context id features ([#51](https://github.com/iotaledger/twin-engine/issues/51)) ([eaef180](https://github.com/iotaledger/twin-engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
|
|
10
|
+
* add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
|
|
11
|
+
* add isPrimary and isClone methods ([a7c63e9](https://github.com/iotaledger/twin-engine/commit/a7c63e97f54c95b104cc81e66d3fa42c6607bdc1))
|
|
12
|
+
* add metrics producer type initialisers to engine ([#122](https://github.com/iotaledger/twin-engine/issues/122)) ([45f52d7](https://github.com/iotaledger/twin-engine/commit/45f52d7ad9c94bda0d2671756049bb5973b64b10))
|
|
13
|
+
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
|
|
14
|
+
* add registered component methods ([a9a2899](https://github.com/iotaledger/twin-engine/commit/a9a2899f266baa48e63bfbda958877a4f941602d))
|
|
15
|
+
* add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
|
|
16
|
+
* add skipComponentStart flag ([#62](https://github.com/iotaledger/twin-engine/issues/62)) ([07e90af](https://github.com/iotaledger/twin-engine/commit/07e90afa4ba1baaa79c0c6f0f45200d781801534))
|
|
17
|
+
* add sorting to factories so default entries are at start ([1a69356](https://github.com/iotaledger/twin-engine/commit/1a693567befcf27e6edc9880746ee82cfb9538e5))
|
|
18
|
+
* add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
|
|
19
|
+
* add tenant admin routes ([#76](https://github.com/iotaledger/twin-engine/issues/76)) ([3c0af90](https://github.com/iotaledger/twin-engine/commit/3c0af90a572fcda08d8720bdcee9b9f1cd02b872))
|
|
20
|
+
* add tenant component ([#138](https://github.com/iotaledger/twin-engine/issues/138)) ([ebbcb8f](https://github.com/iotaledger/twin-engine/commit/ebbcb8fa3fee05048ddad2891c6ada66bd29e7bd))
|
|
21
|
+
* add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
|
|
22
|
+
* close already started components on startup error ([a55a117](https://github.com/iotaledger/twin-engine/commit/a55a117a508998288c8ae804e732fc6085cb22fa))
|
|
23
|
+
* context id handlers repopulated after engine clone ([9712e32](https://github.com/iotaledger/twin-engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
|
|
24
|
+
* eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
|
|
25
|
+
* improve startup error handling ([#65](https://github.com/iotaledger/twin-engine/issues/65)) ([5b2d1c5](https://github.com/iotaledger/twin-engine/commit/5b2d1c539cf5484afa85e294d6d6c18f24ef8274))
|
|
26
|
+
* initialise context id handlers before bootstrap ([e94df44](https://github.com/iotaledger/twin-engine/commit/e94df440aa553350dba5da2ae93b5c34e0ac3692))
|
|
27
|
+
* interlock stop method ([3806ba7](https://github.com/iotaledger/twin-engine/commit/3806ba7b44b3cb3ce130f4e3684a666533674663))
|
|
28
|
+
* maintain isDefault flag for registered instances ([2ac5bee](https://github.com/iotaledger/twin-engine/commit/2ac5bee094bef42b396cc82b0d18bb6aebe27352))
|
|
29
|
+
* multi instance component support ([#83](https://github.com/iotaledger/twin-engine/issues/83)) ([6012b50](https://github.com/iotaledger/twin-engine/commit/6012b50959df5af893f05516d42eea2e0800b31a))
|
|
30
|
+
* organization identifiers ([#152](https://github.com/iotaledger/twin-engine/issues/152)) ([d8e6d51](https://github.com/iotaledger/twin-engine/commit/d8e6d5147f402f0fe17b445efd8ae97db0c36adb))
|
|
31
|
+
* override type initialisers with new registrations ([5b4ff56](https://github.com/iotaledger/twin-engine/commit/5b4ff561d06b6513c870a72bb20ba23c0653cfe8))
|
|
32
|
+
* remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/iotaledger/twin-engine/commit/5c7e9e419ef26933e49c9c5a21a20a8961244e7f))
|
|
33
|
+
* remove unused component states ([d56d648](https://github.com/iotaledger/twin-engine/commit/d56d6486119ea8b8501a33f9e3a3101a08b826ed))
|
|
34
|
+
* set initialised flag when skipping start ([039b4df](https://github.com/iotaledger/twin-engine/commit/039b4dff22c90d0ba3703372a11213709d26aa52))
|
|
35
|
+
* simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
|
|
36
|
+
* standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
|
|
37
|
+
* typescript 6 update ([b227f52](https://github.com/iotaledger/twin-engine/commit/b227f5271b18ac627b932ea8e59d2879ff01ebd7))
|
|
38
|
+
* update dependencies ([e6ebe42](https://github.com/iotaledger/twin-engine/commit/e6ebe42b9d61066227ad8b45dae14c8f8615b760))
|
|
39
|
+
* update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
|
|
40
|
+
* update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
|
|
41
|
+
* upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
|
|
42
|
+
* use factory default feature for sorting ([ec8b370](https://github.com/iotaledger/twin-engine/commit/ec8b370c5c028cb300cdd1e76b0a0cdb2263773c))
|
|
43
|
+
* use peer dependencies ([69dd744](https://github.com/iotaledger/twin-engine/commit/69dd7449010b8e6f5f35e7fad201ad4c1cab400c))
|
|
44
|
+
* use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
### Bug Fixes
|
|
48
|
+
|
|
49
|
+
* make sure stop is called even if start is not implemented ([ece2b9d](https://github.com/iotaledger/twin-engine/commit/ece2b9de5c6dff2b5ccf2a3115c1a7328a330125))
|
|
50
|
+
* pass contextIds to populateClone ([#79](https://github.com/iotaledger/twin-engine/issues/79)) ([b22f1bb](https://github.com/iotaledger/twin-engine/commit/b22f1bbf0319069914e316d27de4c2a8623421cf))
|
|
51
|
+
* save state if dirty even if not started ([1abe4b9](https://github.com/iotaledger/twin-engine/commit/1abe4b97e6d27364dd673f62f83034b88b7fae0c))
|
|
52
|
+
* use correct instance type name ([6278486](https://github.com/iotaledger/twin-engine/commit/6278486d8f0f2d601d3cf521a647898cd7cc1f31))
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
### Dependencies
|
|
56
|
+
|
|
57
|
+
* The following workspace dependencies were updated
|
|
58
|
+
* dependencies
|
|
59
|
+
* @twin.org/engine-models bumped from 0.9.0-next.0 to 0.9.0-next.1
|
|
60
|
+
|
|
61
|
+
## [0.0.3-next.56](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.55...engine-core-v0.0.3-next.56) (2026-06-23)
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
### Miscellaneous Chores
|
|
65
|
+
|
|
66
|
+
* **engine-core:** Synchronize repo versions
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
### Dependencies
|
|
70
|
+
|
|
71
|
+
* The following workspace dependencies were updated
|
|
72
|
+
* dependencies
|
|
73
|
+
* @twin.org/engine-models bumped from 0.0.3-next.55 to 0.0.3-next.56
|
|
74
|
+
|
|
75
|
+
## [0.0.3-next.55](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.54...engine-core-v0.0.3-next.55) (2026-06-19)
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
### Miscellaneous Chores
|
|
79
|
+
|
|
80
|
+
* **engine-core:** Synchronize repo versions
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
### Dependencies
|
|
84
|
+
|
|
85
|
+
* The following workspace dependencies were updated
|
|
86
|
+
* dependencies
|
|
87
|
+
* @twin.org/engine-models bumped from 0.0.3-next.54 to 0.0.3-next.55
|
|
88
|
+
|
|
89
|
+
## [0.0.3-next.54](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.53...engine-core-v0.0.3-next.54) (2026-06-19)
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
### Miscellaneous Chores
|
|
93
|
+
|
|
94
|
+
* **engine-core:** Synchronize repo versions
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
### Dependencies
|
|
98
|
+
|
|
99
|
+
* The following workspace dependencies were updated
|
|
100
|
+
* dependencies
|
|
101
|
+
* @twin.org/engine-models bumped from 0.0.3-next.53 to 0.0.3-next.54
|
|
102
|
+
|
|
103
|
+
## [0.0.3-next.53](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.52...engine-core-v0.0.3-next.53) (2026-06-18)
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
### Miscellaneous Chores
|
|
107
|
+
|
|
108
|
+
* **engine-core:** Synchronize repo versions
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
### Dependencies
|
|
112
|
+
|
|
113
|
+
* The following workspace dependencies were updated
|
|
114
|
+
* dependencies
|
|
115
|
+
* @twin.org/engine-models bumped from 0.0.3-next.52 to 0.0.3-next.53
|
|
116
|
+
|
|
117
|
+
## [0.0.3-next.52](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.51...engine-core-v0.0.3-next.52) (2026-06-16)
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
### Miscellaneous Chores
|
|
121
|
+
|
|
122
|
+
* **engine-core:** Synchronize repo versions
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
### Dependencies
|
|
126
|
+
|
|
127
|
+
* The following workspace dependencies were updated
|
|
128
|
+
* dependencies
|
|
129
|
+
* @twin.org/engine-models bumped from 0.0.3-next.51 to 0.0.3-next.52
|
|
130
|
+
|
|
131
|
+
## [0.0.3-next.51](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.50...engine-core-v0.0.3-next.51) (2026-06-15)
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
### Miscellaneous Chores
|
|
135
|
+
|
|
136
|
+
* **engine-core:** Synchronize repo versions
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
### Dependencies
|
|
140
|
+
|
|
141
|
+
* The following workspace dependencies were updated
|
|
142
|
+
* dependencies
|
|
143
|
+
* @twin.org/engine-models bumped from 0.0.3-next.50 to 0.0.3-next.51
|
|
144
|
+
|
|
145
|
+
## [0.0.3-next.50](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.49...engine-core-v0.0.3-next.50) (2026-06-11)
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
### Features
|
|
149
|
+
|
|
150
|
+
* organization identifiers ([#152](https://github.com/iotaledger/twin-engine/issues/152)) ([d8e6d51](https://github.com/iotaledger/twin-engine/commit/d8e6d5147f402f0fe17b445efd8ae97db0c36adb))
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
### Dependencies
|
|
154
|
+
|
|
155
|
+
* The following workspace dependencies were updated
|
|
156
|
+
* dependencies
|
|
157
|
+
* @twin.org/engine-models bumped from 0.0.3-next.49 to 0.0.3-next.50
|
|
158
|
+
|
|
159
|
+
## [0.0.3-next.49](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.48...engine-core-v0.0.3-next.49) (2026-06-09)
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
### Miscellaneous Chores
|
|
163
|
+
|
|
164
|
+
* **engine-core:** Synchronize repo versions
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
### Dependencies
|
|
168
|
+
|
|
169
|
+
* The following workspace dependencies were updated
|
|
170
|
+
* dependencies
|
|
171
|
+
* @twin.org/engine-models bumped from 0.0.3-next.48 to 0.0.3-next.49
|
|
172
|
+
|
|
173
|
+
## [0.0.3-next.48](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.47...engine-core-v0.0.3-next.48) (2026-06-08)
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
### Miscellaneous Chores
|
|
177
|
+
|
|
178
|
+
* **engine-core:** Synchronize repo versions
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
### Dependencies
|
|
182
|
+
|
|
183
|
+
* The following workspace dependencies were updated
|
|
184
|
+
* dependencies
|
|
185
|
+
* @twin.org/engine-models bumped from 0.0.3-next.47 to 0.0.3-next.48
|
|
186
|
+
|
|
187
|
+
## [0.0.3-next.47](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.46...engine-core-v0.0.3-next.47) (2026-06-08)
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
### Miscellaneous Chores
|
|
191
|
+
|
|
192
|
+
* **engine-core:** Synchronize repo versions
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
### Dependencies
|
|
196
|
+
|
|
197
|
+
* The following workspace dependencies were updated
|
|
198
|
+
* dependencies
|
|
199
|
+
* @twin.org/engine-models bumped from 0.0.3-next.46 to 0.0.3-next.47
|
|
200
|
+
|
|
201
|
+
## [0.0.3-next.46](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.45...engine-core-v0.0.3-next.46) (2026-06-04)
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
### Features
|
|
205
|
+
|
|
206
|
+
* add tenant component ([#138](https://github.com/iotaledger/twin-engine/issues/138)) ([ebbcb8f](https://github.com/iotaledger/twin-engine/commit/ebbcb8fa3fee05048ddad2891c6ada66bd29e7bd))
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
### Dependencies
|
|
210
|
+
|
|
211
|
+
* The following workspace dependencies were updated
|
|
212
|
+
* dependencies
|
|
213
|
+
* @twin.org/engine-models bumped from 0.0.3-next.45 to 0.0.3-next.46
|
|
214
|
+
|
|
215
|
+
## [0.0.3-next.45](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.44...engine-core-v0.0.3-next.45) (2026-06-02)
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
### Features
|
|
219
|
+
|
|
220
|
+
* add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
|
|
221
|
+
* add context id features ([#51](https://github.com/iotaledger/twin-engine/issues/51)) ([eaef180](https://github.com/iotaledger/twin-engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
|
|
222
|
+
* add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
|
|
223
|
+
* add isPrimary and isClone methods ([a7c63e9](https://github.com/iotaledger/twin-engine/commit/a7c63e97f54c95b104cc81e66d3fa42c6607bdc1))
|
|
224
|
+
* add metrics producer type initialisers to engine ([#122](https://github.com/iotaledger/twin-engine/issues/122)) ([45f52d7](https://github.com/iotaledger/twin-engine/commit/45f52d7ad9c94bda0d2671756049bb5973b64b10))
|
|
225
|
+
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
|
|
226
|
+
* add registered component methods ([a9a2899](https://github.com/iotaledger/twin-engine/commit/a9a2899f266baa48e63bfbda958877a4f941602d))
|
|
227
|
+
* add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
|
|
228
|
+
* add skipComponentStart flag ([#62](https://github.com/iotaledger/twin-engine/issues/62)) ([07e90af](https://github.com/iotaledger/twin-engine/commit/07e90afa4ba1baaa79c0c6f0f45200d781801534))
|
|
229
|
+
* add sorting to factories so default entries are at start ([1a69356](https://github.com/iotaledger/twin-engine/commit/1a693567befcf27e6edc9880746ee82cfb9538e5))
|
|
230
|
+
* add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
|
|
231
|
+
* add tenant admin routes ([#76](https://github.com/iotaledger/twin-engine/issues/76)) ([3c0af90](https://github.com/iotaledger/twin-engine/commit/3c0af90a572fcda08d8720bdcee9b9f1cd02b872))
|
|
232
|
+
* add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
|
|
233
|
+
* close already started components on startup error ([a55a117](https://github.com/iotaledger/twin-engine/commit/a55a117a508998288c8ae804e732fc6085cb22fa))
|
|
234
|
+
* context id handlers repopulated after engine clone ([9712e32](https://github.com/iotaledger/twin-engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
|
|
235
|
+
* eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
|
|
236
|
+
* improve startup error handling ([#65](https://github.com/iotaledger/twin-engine/issues/65)) ([5b2d1c5](https://github.com/iotaledger/twin-engine/commit/5b2d1c539cf5484afa85e294d6d6c18f24ef8274))
|
|
237
|
+
* initialise context id handlers before bootstrap ([e94df44](https://github.com/iotaledger/twin-engine/commit/e94df440aa553350dba5da2ae93b5c34e0ac3692))
|
|
238
|
+
* interlock stop method ([3806ba7](https://github.com/iotaledger/twin-engine/commit/3806ba7b44b3cb3ce130f4e3684a666533674663))
|
|
239
|
+
* maintain isDefault flag for registered instances ([2ac5bee](https://github.com/iotaledger/twin-engine/commit/2ac5bee094bef42b396cc82b0d18bb6aebe27352))
|
|
240
|
+
* multi instance component support ([#83](https://github.com/iotaledger/twin-engine/issues/83)) ([6012b50](https://github.com/iotaledger/twin-engine/commit/6012b50959df5af893f05516d42eea2e0800b31a))
|
|
241
|
+
* override type initialisers with new registrations ([5b4ff56](https://github.com/iotaledger/twin-engine/commit/5b4ff561d06b6513c870a72bb20ba23c0653cfe8))
|
|
242
|
+
* remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/iotaledger/twin-engine/commit/5c7e9e419ef26933e49c9c5a21a20a8961244e7f))
|
|
243
|
+
* remove unused component states ([d56d648](https://github.com/iotaledger/twin-engine/commit/d56d6486119ea8b8501a33f9e3a3101a08b826ed))
|
|
244
|
+
* set initialised flag when skipping start ([039b4df](https://github.com/iotaledger/twin-engine/commit/039b4dff22c90d0ba3703372a11213709d26aa52))
|
|
245
|
+
* simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
|
|
246
|
+
* standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
|
|
247
|
+
* typescript 6 update ([b227f52](https://github.com/iotaledger/twin-engine/commit/b227f5271b18ac627b932ea8e59d2879ff01ebd7))
|
|
248
|
+
* update dependencies ([e6ebe42](https://github.com/iotaledger/twin-engine/commit/e6ebe42b9d61066227ad8b45dae14c8f8615b760))
|
|
249
|
+
* update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
|
|
250
|
+
* update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
|
|
251
|
+
* upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
|
|
252
|
+
* use factory default feature for sorting ([ec8b370](https://github.com/iotaledger/twin-engine/commit/ec8b370c5c028cb300cdd1e76b0a0cdb2263773c))
|
|
253
|
+
* use peer dependencies ([69dd744](https://github.com/iotaledger/twin-engine/commit/69dd7449010b8e6f5f35e7fad201ad4c1cab400c))
|
|
254
|
+
* use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
### Bug Fixes
|
|
258
|
+
|
|
259
|
+
* make sure stop is called even if start is not implemented ([ece2b9d](https://github.com/iotaledger/twin-engine/commit/ece2b9de5c6dff2b5ccf2a3115c1a7328a330125))
|
|
260
|
+
* pass contextIds to populateClone ([#79](https://github.com/iotaledger/twin-engine/issues/79)) ([b22f1bb](https://github.com/iotaledger/twin-engine/commit/b22f1bbf0319069914e316d27de4c2a8623421cf))
|
|
261
|
+
* save state if dirty even if not started ([1abe4b9](https://github.com/iotaledger/twin-engine/commit/1abe4b97e6d27364dd673f62f83034b88b7fae0c))
|
|
262
|
+
* use correct instance type name ([6278486](https://github.com/iotaledger/twin-engine/commit/6278486d8f0f2d601d3cf521a647898cd7cc1f31))
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
### Dependencies
|
|
266
|
+
|
|
267
|
+
* The following workspace dependencies were updated
|
|
268
|
+
* dependencies
|
|
269
|
+
* @twin.org/engine-models bumped from 0.0.3-next.44 to 0.0.3-next.45
|
|
270
|
+
|
|
271
|
+
## [0.0.3-next.44](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.43...engine-core-v0.0.3-next.44) (2026-06-02)
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
### Miscellaneous Chores
|
|
275
|
+
|
|
276
|
+
* **engine-core:** Synchronize repo versions
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
### Dependencies
|
|
280
|
+
|
|
281
|
+
* The following workspace dependencies were updated
|
|
282
|
+
* dependencies
|
|
283
|
+
* @twin.org/engine-models bumped from 0.0.3-next.43 to 0.0.3-next.44
|
|
284
|
+
|
|
285
|
+
## [0.0.3-next.43](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.42...engine-core-v0.0.3-next.43) (2026-05-29)
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
### Miscellaneous Chores
|
|
289
|
+
|
|
290
|
+
* **engine-core:** Synchronize repo versions
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
### Dependencies
|
|
294
|
+
|
|
295
|
+
* The following workspace dependencies were updated
|
|
296
|
+
* dependencies
|
|
297
|
+
* @twin.org/engine-models bumped from 0.0.3-next.42 to 0.0.3-next.43
|
|
298
|
+
|
|
299
|
+
## [0.0.3-next.42](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.41...engine-core-v0.0.3-next.42) (2026-05-28)
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
### Miscellaneous Chores
|
|
303
|
+
|
|
304
|
+
* **engine-core:** Synchronize repo versions
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
### Dependencies
|
|
308
|
+
|
|
309
|
+
* The following workspace dependencies were updated
|
|
310
|
+
* dependencies
|
|
311
|
+
* @twin.org/engine-models bumped from 0.0.3-next.41 to 0.0.3-next.42
|
|
312
|
+
|
|
313
|
+
## [0.0.3-next.41](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.40...engine-core-v0.0.3-next.41) (2026-05-26)
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
### Miscellaneous Chores
|
|
317
|
+
|
|
318
|
+
* **engine-core:** Synchronize repo versions
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
### Dependencies
|
|
322
|
+
|
|
323
|
+
* The following workspace dependencies were updated
|
|
324
|
+
* dependencies
|
|
325
|
+
* @twin.org/engine-models bumped from 0.0.3-next.40 to 0.0.3-next.41
|
|
326
|
+
|
|
327
|
+
## [0.0.3-next.40](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.39...engine-core-v0.0.3-next.40) (2026-05-22)
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
### Miscellaneous Chores
|
|
331
|
+
|
|
332
|
+
* **engine-core:** Synchronize repo versions
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
### Dependencies
|
|
336
|
+
|
|
337
|
+
* The following workspace dependencies were updated
|
|
338
|
+
* dependencies
|
|
339
|
+
* @twin.org/engine-models bumped from 0.0.3-next.39 to 0.0.3-next.40
|
|
340
|
+
|
|
341
|
+
## [0.0.3-next.39](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.38...engine-core-v0.0.3-next.39) (2026-05-21)
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
### Miscellaneous Chores
|
|
345
|
+
|
|
346
|
+
* **engine-core:** Synchronize repo versions
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
### Dependencies
|
|
350
|
+
|
|
351
|
+
* The following workspace dependencies were updated
|
|
352
|
+
* dependencies
|
|
353
|
+
* @twin.org/engine-models bumped from 0.0.3-next.38 to 0.0.3-next.39
|
|
354
|
+
|
|
355
|
+
## [0.0.3-next.38](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.37...engine-core-v0.0.3-next.38) (2026-05-20)
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
### Features
|
|
359
|
+
|
|
360
|
+
* add metrics producer type initialisers to engine ([#122](https://github.com/iotaledger/twin-engine/issues/122)) ([45f52d7](https://github.com/iotaledger/twin-engine/commit/45f52d7ad9c94bda0d2671756049bb5973b64b10))
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
### Dependencies
|
|
364
|
+
|
|
365
|
+
* The following workspace dependencies were updated
|
|
366
|
+
* dependencies
|
|
367
|
+
* @twin.org/engine-models bumped from 0.0.3-next.37 to 0.0.3-next.38
|
|
368
|
+
|
|
369
|
+
## [0.0.3-next.37](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.36...engine-core-v0.0.3-next.37) (2026-05-12)
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
### Features
|
|
373
|
+
|
|
374
|
+
* typescript 6 update ([b227f52](https://github.com/iotaledger/twin-engine/commit/b227f5271b18ac627b932ea8e59d2879ff01ebd7))
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
### Dependencies
|
|
378
|
+
|
|
379
|
+
* The following workspace dependencies were updated
|
|
380
|
+
* dependencies
|
|
381
|
+
* @twin.org/engine-models bumped from 0.0.3-next.36 to 0.0.3-next.37
|
|
382
|
+
|
|
383
|
+
## [0.0.3-next.36](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.35...engine-core-v0.0.3-next.36) (2026-05-08)
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
### Miscellaneous Chores
|
|
387
|
+
|
|
388
|
+
* **engine-core:** Synchronize repo versions
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
### Dependencies
|
|
392
|
+
|
|
393
|
+
* The following workspace dependencies were updated
|
|
394
|
+
* dependencies
|
|
395
|
+
* @twin.org/engine-models bumped from 0.0.3-next.35 to 0.0.3-next.36
|
|
396
|
+
|
|
397
|
+
## [0.0.3-next.35](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.34...engine-core-v0.0.3-next.35) (2026-05-05)
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
### Miscellaneous Chores
|
|
401
|
+
|
|
402
|
+
* **engine-core:** Synchronize repo versions
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
### Dependencies
|
|
406
|
+
|
|
407
|
+
* The following workspace dependencies were updated
|
|
408
|
+
* dependencies
|
|
409
|
+
* @twin.org/engine-models bumped from 0.0.3-next.34 to 0.0.3-next.35
|
|
410
|
+
|
|
411
|
+
## [0.0.3-next.34](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.33...engine-core-v0.0.3-next.34) (2026-05-05)
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
### Miscellaneous Chores
|
|
415
|
+
|
|
416
|
+
* **engine-core:** Synchronize repo versions
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
### Dependencies
|
|
420
|
+
|
|
421
|
+
* The following workspace dependencies were updated
|
|
422
|
+
* dependencies
|
|
423
|
+
* @twin.org/engine-models bumped from 0.0.3-next.33 to 0.0.3-next.34
|
|
424
|
+
|
|
425
|
+
## [0.0.3-next.33](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.32...engine-core-v0.0.3-next.33) (2026-05-05)
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
### Features
|
|
429
|
+
|
|
430
|
+
* add registered component methods ([a9a2899](https://github.com/iotaledger/twin-engine/commit/a9a2899f266baa48e63bfbda958877a4f941602d))
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
### Dependencies
|
|
434
|
+
|
|
435
|
+
* The following workspace dependencies were updated
|
|
436
|
+
* dependencies
|
|
437
|
+
* @twin.org/engine-models bumped from 0.0.3-next.32 to 0.0.3-next.33
|
|
438
|
+
|
|
439
|
+
## [0.0.3-next.32](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.31...engine-core-v0.0.3-next.32) (2026-04-24)
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
### Miscellaneous Chores
|
|
443
|
+
|
|
444
|
+
* **engine-core:** Synchronize repo versions
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
### Dependencies
|
|
448
|
+
|
|
449
|
+
* The following workspace dependencies were updated
|
|
450
|
+
* dependencies
|
|
451
|
+
* @twin.org/engine-models bumped from 0.0.3-next.31 to 0.0.3-next.32
|
|
452
|
+
|
|
453
|
+
## [0.0.3-next.31](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.30...engine-core-v0.0.3-next.31) (2026-04-22)
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
### Miscellaneous Chores
|
|
457
|
+
|
|
458
|
+
* **engine-core:** Synchronize repo versions
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
### Dependencies
|
|
462
|
+
|
|
463
|
+
* The following workspace dependencies were updated
|
|
464
|
+
* dependencies
|
|
465
|
+
* @twin.org/engine-models bumped from 0.0.3-next.30 to 0.0.3-next.31
|
|
466
|
+
|
|
467
|
+
## [0.0.3-next.30](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.29...engine-core-v0.0.3-next.30) (2026-04-16)
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
### Miscellaneous Chores
|
|
471
|
+
|
|
472
|
+
* **engine-core:** Synchronize repo versions
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
### Dependencies
|
|
476
|
+
|
|
477
|
+
* The following workspace dependencies were updated
|
|
478
|
+
* dependencies
|
|
479
|
+
* @twin.org/engine-models bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
480
|
+
|
|
481
|
+
## [0.0.3-next.29](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.28...engine-core-v0.0.3-next.29) (2026-04-14)
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
### Miscellaneous Chores
|
|
485
|
+
|
|
486
|
+
* **engine-core:** Synchronize repo versions
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
### Dependencies
|
|
490
|
+
|
|
491
|
+
* The following workspace dependencies were updated
|
|
492
|
+
* dependencies
|
|
493
|
+
* @twin.org/engine-models bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
494
|
+
|
|
495
|
+
## [0.0.3-next.28](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.27...engine-core-v0.0.3-next.28) (2026-04-10)
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
### Miscellaneous Chores
|
|
499
|
+
|
|
500
|
+
* **engine-core:** Synchronize repo versions
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
### Dependencies
|
|
504
|
+
|
|
505
|
+
* The following workspace dependencies were updated
|
|
506
|
+
* dependencies
|
|
507
|
+
* @twin.org/engine-models bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
508
|
+
|
|
509
|
+
## [0.0.3-next.27](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.26...engine-core-v0.0.3-next.27) (2026-03-20)
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
### Features
|
|
513
|
+
|
|
514
|
+
* update dependencies ([e6ebe42](https://github.com/iotaledger/twin-engine/commit/e6ebe42b9d61066227ad8b45dae14c8f8615b760))
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
### Dependencies
|
|
518
|
+
|
|
519
|
+
* The following workspace dependencies were updated
|
|
520
|
+
* dependencies
|
|
521
|
+
* @twin.org/engine-models bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
522
|
+
|
|
523
|
+
## [0.0.3-next.26](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.25...engine-core-v0.0.3-next.26) (2026-03-05)
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
### Miscellaneous Chores
|
|
527
|
+
|
|
528
|
+
* **engine-core:** Synchronize repo versions
|
|
529
|
+
|
|
530
|
+
|
|
531
|
+
### Dependencies
|
|
532
|
+
|
|
533
|
+
* The following workspace dependencies were updated
|
|
534
|
+
* dependencies
|
|
535
|
+
* @twin.org/engine-models bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
536
|
+
|
|
537
|
+
## [0.0.3-next.25](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.24...engine-core-v0.0.3-next.25) (2026-03-02)
|
|
538
|
+
|
|
539
|
+
|
|
540
|
+
### Miscellaneous Chores
|
|
541
|
+
|
|
542
|
+
* **engine-core:** Synchronize repo versions
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
### Dependencies
|
|
546
|
+
|
|
547
|
+
* The following workspace dependencies were updated
|
|
548
|
+
* dependencies
|
|
549
|
+
* @twin.org/engine-models bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
550
|
+
|
|
551
|
+
## [0.0.3-next.24](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.23...engine-core-v0.0.3-next.24) (2026-02-26)
|
|
552
|
+
|
|
553
|
+
|
|
554
|
+
### Features
|
|
555
|
+
|
|
556
|
+
* use factory default feature for sorting ([ec8b370](https://github.com/iotaledger/twin-engine/commit/ec8b370c5c028cb300cdd1e76b0a0cdb2263773c))
|
|
557
|
+
|
|
558
|
+
|
|
559
|
+
### Dependencies
|
|
560
|
+
|
|
561
|
+
* The following workspace dependencies were updated
|
|
562
|
+
* dependencies
|
|
563
|
+
* @twin.org/engine-models bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
564
|
+
|
|
565
|
+
## [0.0.3-next.23](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.22...engine-core-v0.0.3-next.23) (2026-02-23)
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
### Features
|
|
569
|
+
|
|
570
|
+
* add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
|
|
571
|
+
* add context id features ([#51](https://github.com/iotaledger/twin-engine/issues/51)) ([eaef180](https://github.com/iotaledger/twin-engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
|
|
572
|
+
* add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
|
|
573
|
+
* add isPrimary and isClone methods ([a7c63e9](https://github.com/iotaledger/twin-engine/commit/a7c63e97f54c95b104cc81e66d3fa42c6607bdc1))
|
|
574
|
+
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
|
|
575
|
+
* add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
|
|
576
|
+
* add skipComponentStart flag ([#62](https://github.com/iotaledger/twin-engine/issues/62)) ([07e90af](https://github.com/iotaledger/twin-engine/commit/07e90afa4ba1baaa79c0c6f0f45200d781801534))
|
|
577
|
+
* add sorting to factories so default entries are at start ([1a69356](https://github.com/iotaledger/twin-engine/commit/1a693567befcf27e6edc9880746ee82cfb9538e5))
|
|
578
|
+
* add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
|
|
579
|
+
* add tenant admin routes ([#76](https://github.com/iotaledger/twin-engine/issues/76)) ([3c0af90](https://github.com/iotaledger/twin-engine/commit/3c0af90a572fcda08d8720bdcee9b9f1cd02b872))
|
|
580
|
+
* add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
|
|
581
|
+
* close already started components on startup error ([a55a117](https://github.com/iotaledger/twin-engine/commit/a55a117a508998288c8ae804e732fc6085cb22fa))
|
|
582
|
+
* context id handlers repopulated after engine clone ([9712e32](https://github.com/iotaledger/twin-engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
|
|
583
|
+
* eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
|
|
584
|
+
* improve startup error handling ([#65](https://github.com/iotaledger/twin-engine/issues/65)) ([5b2d1c5](https://github.com/iotaledger/twin-engine/commit/5b2d1c539cf5484afa85e294d6d6c18f24ef8274))
|
|
585
|
+
* initialise context id handlers before bootstrap ([e94df44](https://github.com/iotaledger/twin-engine/commit/e94df440aa553350dba5da2ae93b5c34e0ac3692))
|
|
586
|
+
* interlock stop method ([3806ba7](https://github.com/iotaledger/twin-engine/commit/3806ba7b44b3cb3ce130f4e3684a666533674663))
|
|
587
|
+
* maintain isDefault flag for registered instances ([2ac5bee](https://github.com/iotaledger/twin-engine/commit/2ac5bee094bef42b396cc82b0d18bb6aebe27352))
|
|
588
|
+
* multi instance component support ([#83](https://github.com/iotaledger/twin-engine/issues/83)) ([6012b50](https://github.com/iotaledger/twin-engine/commit/6012b50959df5af893f05516d42eea2e0800b31a))
|
|
589
|
+
* override type initialisers with new registrations ([5b4ff56](https://github.com/iotaledger/twin-engine/commit/5b4ff561d06b6513c870a72bb20ba23c0653cfe8))
|
|
590
|
+
* remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/iotaledger/twin-engine/commit/5c7e9e419ef26933e49c9c5a21a20a8961244e7f))
|
|
591
|
+
* remove unused component states ([d56d648](https://github.com/iotaledger/twin-engine/commit/d56d6486119ea8b8501a33f9e3a3101a08b826ed))
|
|
592
|
+
* set initialised flag when skipping start ([039b4df](https://github.com/iotaledger/twin-engine/commit/039b4dff22c90d0ba3703372a11213709d26aa52))
|
|
593
|
+
* simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
|
|
594
|
+
* standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
|
|
595
|
+
* update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
|
|
596
|
+
* update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
|
|
597
|
+
* upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
|
|
598
|
+
* use peer dependencies ([69dd744](https://github.com/iotaledger/twin-engine/commit/69dd7449010b8e6f5f35e7fad201ad4c1cab400c))
|
|
599
|
+
* use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
|
|
600
|
+
|
|
601
|
+
|
|
602
|
+
### Bug Fixes
|
|
603
|
+
|
|
604
|
+
* make sure stop is called even if start is not implemented ([ece2b9d](https://github.com/iotaledger/twin-engine/commit/ece2b9de5c6dff2b5ccf2a3115c1a7328a330125))
|
|
605
|
+
* pass contextIds to populateClone ([#79](https://github.com/iotaledger/twin-engine/issues/79)) ([b22f1bb](https://github.com/iotaledger/twin-engine/commit/b22f1bbf0319069914e316d27de4c2a8623421cf))
|
|
606
|
+
* save state if dirty even if not started ([1abe4b9](https://github.com/iotaledger/twin-engine/commit/1abe4b97e6d27364dd673f62f83034b88b7fae0c))
|
|
607
|
+
* use correct instance type name ([6278486](https://github.com/iotaledger/twin-engine/commit/6278486d8f0f2d601d3cf521a647898cd7cc1f31))
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
### Dependencies
|
|
611
|
+
|
|
612
|
+
* The following workspace dependencies were updated
|
|
613
|
+
* dependencies
|
|
614
|
+
* @twin.org/engine-models bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
615
|
+
|
|
616
|
+
## [0.0.3-next.22](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.21...engine-core-v0.0.3-next.22) (2026-02-23)
|
|
617
|
+
|
|
618
|
+
|
|
619
|
+
### Features
|
|
620
|
+
|
|
621
|
+
* add sorting to factories so default entries are at start ([1a69356](https://github.com/iotaledger/twin-engine/commit/1a693567befcf27e6edc9880746ee82cfb9538e5))
|
|
622
|
+
|
|
623
|
+
|
|
624
|
+
### Dependencies
|
|
625
|
+
|
|
626
|
+
* The following workspace dependencies were updated
|
|
627
|
+
* dependencies
|
|
628
|
+
* @twin.org/engine-models bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
629
|
+
|
|
630
|
+
## [0.0.3-next.21](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.20...engine-core-v0.0.3-next.21) (2026-02-13)
|
|
631
|
+
|
|
632
|
+
|
|
633
|
+
### Features
|
|
634
|
+
|
|
635
|
+
* multi instance component support ([#83](https://github.com/iotaledger/twin-engine/issues/83)) ([6012b50](https://github.com/iotaledger/twin-engine/commit/6012b50959df5af893f05516d42eea2e0800b31a))
|
|
636
|
+
|
|
637
|
+
|
|
638
|
+
### Dependencies
|
|
639
|
+
|
|
640
|
+
* The following workspace dependencies were updated
|
|
641
|
+
* dependencies
|
|
642
|
+
* @twin.org/engine-models bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
643
|
+
|
|
644
|
+
## [0.0.3-next.20](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.19...engine-core-v0.0.3-next.20) (2026-02-06)
|
|
645
|
+
|
|
646
|
+
|
|
647
|
+
### Miscellaneous Chores
|
|
648
|
+
|
|
649
|
+
* **engine-core:** Synchronize repo versions
|
|
650
|
+
|
|
651
|
+
|
|
652
|
+
### Dependencies
|
|
653
|
+
|
|
654
|
+
* The following workspace dependencies were updated
|
|
655
|
+
* dependencies
|
|
656
|
+
* @twin.org/engine-models bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
657
|
+
|
|
658
|
+
## [0.0.3-next.19](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.18...engine-core-v0.0.3-next.19) (2026-02-05)
|
|
659
|
+
|
|
660
|
+
|
|
661
|
+
### Features
|
|
662
|
+
|
|
663
|
+
* set initialised flag when skipping start ([039b4df](https://github.com/iotaledger/twin-engine/commit/039b4dff22c90d0ba3703372a11213709d26aa52))
|
|
664
|
+
|
|
665
|
+
|
|
666
|
+
### Bug Fixes
|
|
667
|
+
|
|
668
|
+
* pass contextIds to populateClone ([#79](https://github.com/iotaledger/twin-engine/issues/79)) ([b22f1bb](https://github.com/iotaledger/twin-engine/commit/b22f1bbf0319069914e316d27de4c2a8623421cf))
|
|
669
|
+
|
|
670
|
+
|
|
671
|
+
### Dependencies
|
|
672
|
+
|
|
673
|
+
* The following workspace dependencies were updated
|
|
674
|
+
* dependencies
|
|
675
|
+
* @twin.org/engine-models bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
676
|
+
|
|
677
|
+
## [0.0.3-next.18](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.17...engine-core-v0.0.3-next.18) (2026-02-04)
|
|
678
|
+
|
|
679
|
+
|
|
680
|
+
### Features
|
|
681
|
+
|
|
682
|
+
* add tenant admin routes ([#76](https://github.com/iotaledger/twin-engine/issues/76)) ([3c0af90](https://github.com/iotaledger/twin-engine/commit/3c0af90a572fcda08d8720bdcee9b9f1cd02b872))
|
|
683
|
+
|
|
684
|
+
|
|
685
|
+
### Dependencies
|
|
686
|
+
|
|
687
|
+
* The following workspace dependencies were updated
|
|
688
|
+
* dependencies
|
|
689
|
+
* @twin.org/engine-models bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
690
|
+
|
|
691
|
+
## [0.0.3-next.17](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.16...engine-core-v0.0.3-next.17) (2026-02-02)
|
|
692
|
+
|
|
693
|
+
|
|
694
|
+
### Miscellaneous Chores
|
|
695
|
+
|
|
696
|
+
* **engine-core:** Synchronize repo versions
|
|
697
|
+
|
|
698
|
+
|
|
699
|
+
### Dependencies
|
|
700
|
+
|
|
701
|
+
* The following workspace dependencies were updated
|
|
702
|
+
* dependencies
|
|
703
|
+
* @twin.org/engine-models bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
704
|
+
|
|
705
|
+
## [0.0.3-next.16](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.15...engine-core-v0.0.3-next.16) (2026-01-28)
|
|
706
|
+
|
|
707
|
+
|
|
708
|
+
### Miscellaneous Chores
|
|
709
|
+
|
|
710
|
+
* **engine-core:** Synchronize repo versions
|
|
711
|
+
|
|
712
|
+
|
|
713
|
+
### Dependencies
|
|
714
|
+
|
|
715
|
+
* The following workspace dependencies were updated
|
|
716
|
+
* dependencies
|
|
717
|
+
* @twin.org/engine-models bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
718
|
+
|
|
719
|
+
## [0.0.3-next.15](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.14...engine-core-v0.0.3-next.15) (2026-01-26)
|
|
720
|
+
|
|
721
|
+
|
|
722
|
+
### Miscellaneous Chores
|
|
723
|
+
|
|
724
|
+
* **engine-core:** Synchronize repo versions
|
|
725
|
+
|
|
726
|
+
|
|
727
|
+
### Dependencies
|
|
728
|
+
|
|
729
|
+
* The following workspace dependencies were updated
|
|
730
|
+
* dependencies
|
|
731
|
+
* @twin.org/engine-models bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
732
|
+
|
|
733
|
+
## [0.0.3-next.14](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.13...engine-core-v0.0.3-next.14) (2026-01-19)
|
|
734
|
+
|
|
735
|
+
|
|
736
|
+
### Features
|
|
737
|
+
|
|
738
|
+
* add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
|
|
739
|
+
* add context id features ([#51](https://github.com/iotaledger/twin-engine/issues/51)) ([eaef180](https://github.com/iotaledger/twin-engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
|
|
740
|
+
* add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
|
|
741
|
+
* add isPrimary and isClone methods ([a7c63e9](https://github.com/iotaledger/twin-engine/commit/a7c63e97f54c95b104cc81e66d3fa42c6607bdc1))
|
|
742
|
+
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
|
|
743
|
+
* add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
|
|
744
|
+
* add skipComponentStart flag ([#62](https://github.com/iotaledger/twin-engine/issues/62)) ([07e90af](https://github.com/iotaledger/twin-engine/commit/07e90afa4ba1baaa79c0c6f0f45200d781801534))
|
|
745
|
+
* add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
|
|
746
|
+
* add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
|
|
747
|
+
* close already started components on startup error ([a55a117](https://github.com/iotaledger/twin-engine/commit/a55a117a508998288c8ae804e732fc6085cb22fa))
|
|
748
|
+
* context id handlers repopulated after engine clone ([9712e32](https://github.com/iotaledger/twin-engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
|
|
749
|
+
* eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
|
|
750
|
+
* improve startup error handling ([#65](https://github.com/iotaledger/twin-engine/issues/65)) ([5b2d1c5](https://github.com/iotaledger/twin-engine/commit/5b2d1c539cf5484afa85e294d6d6c18f24ef8274))
|
|
751
|
+
* initialise context id handlers before bootstrap ([e94df44](https://github.com/iotaledger/twin-engine/commit/e94df440aa553350dba5da2ae93b5c34e0ac3692))
|
|
752
|
+
* interlock stop method ([3806ba7](https://github.com/iotaledger/twin-engine/commit/3806ba7b44b3cb3ce130f4e3684a666533674663))
|
|
753
|
+
* maintain isDefault flag for registered instances ([2ac5bee](https://github.com/iotaledger/twin-engine/commit/2ac5bee094bef42b396cc82b0d18bb6aebe27352))
|
|
754
|
+
* override type initialisers with new registrations ([5b4ff56](https://github.com/iotaledger/twin-engine/commit/5b4ff561d06b6513c870a72bb20ba23c0653cfe8))
|
|
755
|
+
* remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/iotaledger/twin-engine/commit/5c7e9e419ef26933e49c9c5a21a20a8961244e7f))
|
|
756
|
+
* remove unused component states ([d56d648](https://github.com/iotaledger/twin-engine/commit/d56d6486119ea8b8501a33f9e3a3101a08b826ed))
|
|
757
|
+
* simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
|
|
758
|
+
* standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
|
|
759
|
+
* update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
|
|
760
|
+
* update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
|
|
761
|
+
* upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
|
|
762
|
+
* use peer dependencies ([69dd744](https://github.com/iotaledger/twin-engine/commit/69dd7449010b8e6f5f35e7fad201ad4c1cab400c))
|
|
763
|
+
* use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
|
|
764
|
+
|
|
765
|
+
|
|
766
|
+
### Bug Fixes
|
|
767
|
+
|
|
768
|
+
* make sure stop is called even if start is not implemented ([ece2b9d](https://github.com/iotaledger/twin-engine/commit/ece2b9de5c6dff2b5ccf2a3115c1a7328a330125))
|
|
769
|
+
* save state if dirty even if not started ([1abe4b9](https://github.com/iotaledger/twin-engine/commit/1abe4b97e6d27364dd673f62f83034b88b7fae0c))
|
|
770
|
+
* use correct instance type name ([6278486](https://github.com/iotaledger/twin-engine/commit/6278486d8f0f2d601d3cf521a647898cd7cc1f31))
|
|
771
|
+
|
|
772
|
+
|
|
773
|
+
### Dependencies
|
|
774
|
+
|
|
775
|
+
* The following workspace dependencies were updated
|
|
776
|
+
* dependencies
|
|
777
|
+
* @twin.org/engine-models bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
778
|
+
|
|
779
|
+
## [0.0.3-next.13](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.12...engine-core-v0.0.3-next.13) (2026-01-19)
|
|
780
|
+
|
|
781
|
+
|
|
782
|
+
### Miscellaneous Chores
|
|
783
|
+
|
|
784
|
+
* **engine-core:** Synchronize repo versions
|
|
785
|
+
|
|
786
|
+
|
|
787
|
+
### Dependencies
|
|
788
|
+
|
|
789
|
+
* The following workspace dependencies were updated
|
|
790
|
+
* dependencies
|
|
791
|
+
* @twin.org/engine-models bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
792
|
+
|
|
793
|
+
## [0.0.3-next.12](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.11...engine-core-v0.0.3-next.12) (2026-01-19)
|
|
794
|
+
|
|
795
|
+
|
|
796
|
+
### Features
|
|
797
|
+
|
|
798
|
+
* improve startup error handling ([#65](https://github.com/iotaledger/twin-engine/issues/65)) ([5b2d1c5](https://github.com/iotaledger/twin-engine/commit/5b2d1c539cf5484afa85e294d6d6c18f24ef8274))
|
|
799
|
+
|
|
800
|
+
|
|
801
|
+
### Dependencies
|
|
802
|
+
|
|
803
|
+
* The following workspace dependencies were updated
|
|
804
|
+
* dependencies
|
|
805
|
+
* @twin.org/engine-models bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
806
|
+
|
|
807
|
+
## [0.0.3-next.11](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.10...engine-core-v0.0.3-next.11) (2026-01-16)
|
|
808
|
+
|
|
809
|
+
|
|
810
|
+
### Bug Fixes
|
|
811
|
+
|
|
812
|
+
* save state if dirty even if not started ([1abe4b9](https://github.com/iotaledger/twin-engine/commit/1abe4b97e6d27364dd673f62f83034b88b7fae0c))
|
|
813
|
+
|
|
814
|
+
|
|
815
|
+
### Dependencies
|
|
816
|
+
|
|
817
|
+
* The following workspace dependencies were updated
|
|
818
|
+
* dependencies
|
|
819
|
+
* @twin.org/engine-models bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
820
|
+
|
|
821
|
+
## [0.0.3-next.10](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.9...engine-core-v0.0.3-next.10) (2026-01-13)
|
|
822
|
+
|
|
823
|
+
|
|
824
|
+
### Features
|
|
825
|
+
|
|
826
|
+
* add skipComponentStart flag ([#62](https://github.com/iotaledger/twin-engine/issues/62)) ([07e90af](https://github.com/iotaledger/twin-engine/commit/07e90afa4ba1baaa79c0c6f0f45200d781801534))
|
|
827
|
+
|
|
828
|
+
|
|
829
|
+
### Dependencies
|
|
830
|
+
|
|
831
|
+
* The following workspace dependencies were updated
|
|
832
|
+
* dependencies
|
|
833
|
+
* @twin.org/engine-models bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
834
|
+
|
|
835
|
+
## [0.0.3-next.9](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.8...engine-core-v0.0.3-next.9) (2026-01-07)
|
|
836
|
+
|
|
837
|
+
|
|
838
|
+
### Miscellaneous Chores
|
|
839
|
+
|
|
840
|
+
* **engine-core:** Synchronize repo versions
|
|
841
|
+
|
|
842
|
+
|
|
843
|
+
### Dependencies
|
|
844
|
+
|
|
845
|
+
* The following workspace dependencies were updated
|
|
846
|
+
* dependencies
|
|
847
|
+
* @twin.org/engine-models bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
848
|
+
|
|
849
|
+
## [0.0.3-next.8](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.7...engine-core-v0.0.3-next.8) (2026-01-06)
|
|
4
850
|
|
|
5
851
|
|
|
6
852
|
### Miscellaneous Chores
|
|
@@ -14,7 +860,7 @@
|
|
|
14
860
|
* dependencies
|
|
15
861
|
* @twin.org/engine-models bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
16
862
|
|
|
17
|
-
## [0.0.3-next.7](https://github.com/
|
|
863
|
+
## [0.0.3-next.7](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.6...engine-core-v0.0.3-next.7) (2025-12-04)
|
|
18
864
|
|
|
19
865
|
|
|
20
866
|
### Miscellaneous Chores
|
|
@@ -28,7 +874,7 @@
|
|
|
28
874
|
* dependencies
|
|
29
875
|
* @twin.org/engine-models bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
30
876
|
|
|
31
|
-
## [0.0.3-next.6](https://github.com/
|
|
877
|
+
## [0.0.3-next.6](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.5...engine-core-v0.0.3-next.6) (2025-11-28)
|
|
32
878
|
|
|
33
879
|
|
|
34
880
|
### Miscellaneous Chores
|
|
@@ -42,12 +888,12 @@
|
|
|
42
888
|
* dependencies
|
|
43
889
|
* @twin.org/engine-models bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
44
890
|
|
|
45
|
-
## [0.0.3-next.5](https://github.com/
|
|
891
|
+
## [0.0.3-next.5](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.4...engine-core-v0.0.3-next.5) (2025-11-20)
|
|
46
892
|
|
|
47
893
|
|
|
48
894
|
### Features
|
|
49
895
|
|
|
50
|
-
* initialise context id handlers before bootstrap ([e94df44](https://github.com/
|
|
896
|
+
* initialise context id handlers before bootstrap ([e94df44](https://github.com/iotaledger/twin-engine/commit/e94df440aa553350dba5da2ae93b5c34e0ac3692))
|
|
51
897
|
|
|
52
898
|
|
|
53
899
|
### Dependencies
|
|
@@ -56,13 +902,13 @@
|
|
|
56
902
|
* dependencies
|
|
57
903
|
* @twin.org/engine-models bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
58
904
|
|
|
59
|
-
## [0.0.3-next.4](https://github.com/
|
|
905
|
+
## [0.0.3-next.4](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.3...engine-core-v0.0.3-next.4) (2025-11-20)
|
|
60
906
|
|
|
61
907
|
|
|
62
908
|
### Features
|
|
63
909
|
|
|
64
|
-
* context id handlers repopulated after engine clone ([9712e32](https://github.com/
|
|
65
|
-
* interlock stop method ([3806ba7](https://github.com/
|
|
910
|
+
* context id handlers repopulated after engine clone ([9712e32](https://github.com/iotaledger/twin-engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
|
|
911
|
+
* interlock stop method ([3806ba7](https://github.com/iotaledger/twin-engine/commit/3806ba7b44b3cb3ce130f4e3684a666533674663))
|
|
66
912
|
|
|
67
913
|
|
|
68
914
|
### Dependencies
|
|
@@ -71,12 +917,12 @@
|
|
|
71
917
|
* dependencies
|
|
72
918
|
* @twin.org/engine-models bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
73
919
|
|
|
74
|
-
## [0.0.3-next.3](https://github.com/
|
|
920
|
+
## [0.0.3-next.3](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.2...engine-core-v0.0.3-next.3) (2025-11-14)
|
|
75
921
|
|
|
76
922
|
|
|
77
923
|
### Bug Fixes
|
|
78
924
|
|
|
79
|
-
* make sure stop is called even if start is not implemented ([ece2b9d](https://github.com/
|
|
925
|
+
* make sure stop is called even if start is not implemented ([ece2b9d](https://github.com/iotaledger/twin-engine/commit/ece2b9de5c6dff2b5ccf2a3115c1a7328a330125))
|
|
80
926
|
|
|
81
927
|
|
|
82
928
|
### Dependencies
|
|
@@ -85,12 +931,12 @@
|
|
|
85
931
|
* dependencies
|
|
86
932
|
* @twin.org/engine-models bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
87
933
|
|
|
88
|
-
## [0.0.3-next.2](https://github.com/
|
|
934
|
+
## [0.0.3-next.2](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.1...engine-core-v0.0.3-next.2) (2025-11-13)
|
|
89
935
|
|
|
90
936
|
|
|
91
937
|
### Features
|
|
92
938
|
|
|
93
|
-
* close already started components on startup error ([a55a117](https://github.com/
|
|
939
|
+
* close already started components on startup error ([a55a117](https://github.com/iotaledger/twin-engine/commit/a55a117a508998288c8ae804e732fc6085cb22fa))
|
|
94
940
|
|
|
95
941
|
|
|
96
942
|
### Dependencies
|
|
@@ -99,36 +945,36 @@
|
|
|
99
945
|
* dependencies
|
|
100
946
|
* @twin.org/engine-models bumped from 0.0.3-next.1 to 0.0.3-next.2
|
|
101
947
|
|
|
102
|
-
## [0.0.3-next.1](https://github.com/
|
|
948
|
+
## [0.0.3-next.1](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.3-next.0...engine-core-v0.0.3-next.1) (2025-11-13)
|
|
103
949
|
|
|
104
950
|
|
|
105
951
|
### Features
|
|
106
952
|
|
|
107
|
-
* add auth admin component ([201cd06](https://github.com/
|
|
108
|
-
* add context id features ([#51](https://github.com/
|
|
109
|
-
* add default logging component for web server ([8ad94f0](https://github.com/
|
|
110
|
-
* add isPrimary and isClone methods ([a7c63e9](https://github.com/
|
|
111
|
-
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/
|
|
112
|
-
* add rights management negotiation ([84ef46b](https://github.com/
|
|
113
|
-
* add synchronised storage support ([5142e34](https://github.com/
|
|
114
|
-
* add validate-locales ([b92ea09](https://github.com/
|
|
115
|
-
* eslint migration to flat config ([6b978da](https://github.com/
|
|
116
|
-
* maintain isDefault flag for registered instances ([2ac5bee](https://github.com/
|
|
117
|
-
* override type initialisers with new registrations ([5b4ff56](https://github.com/
|
|
118
|
-
* remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/
|
|
119
|
-
* remove unused component states ([d56d648](https://github.com/
|
|
120
|
-
* simplify config building ([732c871](https://github.com/
|
|
121
|
-
* standardised engine logging naming ([0dbf857](https://github.com/
|
|
122
|
-
* update dependencies ([97c9f64](https://github.com/
|
|
123
|
-
* update framework core ([acc0f8d](https://github.com/
|
|
124
|
-
* upgrade framework components ([efd52e8](https://github.com/
|
|
125
|
-
* use peer dependencies ([69dd744](https://github.com/
|
|
126
|
-
* use shared store mechanism ([#2](https://github.com/
|
|
953
|
+
* add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
|
|
954
|
+
* add context id features ([#51](https://github.com/iotaledger/twin-engine/issues/51)) ([eaef180](https://github.com/iotaledger/twin-engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
|
|
955
|
+
* add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
|
|
956
|
+
* add isPrimary and isClone methods ([a7c63e9](https://github.com/iotaledger/twin-engine/commit/a7c63e97f54c95b104cc81e66d3fa42c6607bdc1))
|
|
957
|
+
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
|
|
958
|
+
* add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
|
|
959
|
+
* add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
|
|
960
|
+
* add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
|
|
961
|
+
* eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
|
|
962
|
+
* maintain isDefault flag for registered instances ([2ac5bee](https://github.com/iotaledger/twin-engine/commit/2ac5bee094bef42b396cc82b0d18bb6aebe27352))
|
|
963
|
+
* override type initialisers with new registrations ([5b4ff56](https://github.com/iotaledger/twin-engine/commit/5b4ff561d06b6513c870a72bb20ba23c0653cfe8))
|
|
964
|
+
* remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/iotaledger/twin-engine/commit/5c7e9e419ef26933e49c9c5a21a20a8961244e7f))
|
|
965
|
+
* remove unused component states ([d56d648](https://github.com/iotaledger/twin-engine/commit/d56d6486119ea8b8501a33f9e3a3101a08b826ed))
|
|
966
|
+
* simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
|
|
967
|
+
* standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
|
|
968
|
+
* update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
|
|
969
|
+
* update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
|
|
970
|
+
* upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
|
|
971
|
+
* use peer dependencies ([69dd744](https://github.com/iotaledger/twin-engine/commit/69dd7449010b8e6f5f35e7fad201ad4c1cab400c))
|
|
972
|
+
* use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
|
|
127
973
|
|
|
128
974
|
|
|
129
975
|
### Bug Fixes
|
|
130
976
|
|
|
131
|
-
* use correct instance type name ([6278486](https://github.com/
|
|
977
|
+
* use correct instance type name ([6278486](https://github.com/iotaledger/twin-engine/commit/6278486d8f0f2d601d3cf521a647898cd7cc1f31))
|
|
132
978
|
|
|
133
979
|
|
|
134
980
|
### Dependencies
|
|
@@ -137,12 +983,12 @@
|
|
|
137
983
|
* dependencies
|
|
138
984
|
* @twin.org/engine-models bumped from 0.0.3-next.0 to 0.0.3-next.1
|
|
139
985
|
|
|
140
|
-
## [0.0.2-next.26](https://github.com/
|
|
986
|
+
## [0.0.2-next.26](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.2-next.25...engine-core-v0.0.2-next.26) (2025-10-09)
|
|
141
987
|
|
|
142
988
|
|
|
143
989
|
### Bug Fixes
|
|
144
990
|
|
|
145
|
-
* use correct instance type name ([6278486](https://github.com/
|
|
991
|
+
* use correct instance type name ([6278486](https://github.com/iotaledger/twin-engine/commit/6278486d8f0f2d601d3cf521a647898cd7cc1f31))
|
|
146
992
|
|
|
147
993
|
|
|
148
994
|
### Dependencies
|
|
@@ -151,12 +997,12 @@
|
|
|
151
997
|
* dependencies
|
|
152
998
|
* @twin.org/engine-models bumped from 0.0.2-next.25 to 0.0.2-next.26
|
|
153
999
|
|
|
154
|
-
## [0.0.2-next.25](https://github.com/
|
|
1000
|
+
## [0.0.2-next.25](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.2-next.24...engine-core-v0.0.2-next.25) (2025-10-09)
|
|
155
1001
|
|
|
156
1002
|
|
|
157
1003
|
### Features
|
|
158
1004
|
|
|
159
|
-
* add validate-locales ([b92ea09](https://github.com/
|
|
1005
|
+
* add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
|
|
160
1006
|
|
|
161
1007
|
|
|
162
1008
|
### Dependencies
|
|
@@ -165,12 +1011,12 @@
|
|
|
165
1011
|
* dependencies
|
|
166
1012
|
* @twin.org/engine-models bumped from 0.0.2-next.24 to 0.0.2-next.25
|
|
167
1013
|
|
|
168
|
-
## [0.0.2-next.24](https://github.com/
|
|
1014
|
+
## [0.0.2-next.24](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.2-next.23...engine-core-v0.0.2-next.24) (2025-10-08)
|
|
169
1015
|
|
|
170
1016
|
|
|
171
1017
|
### Features
|
|
172
1018
|
|
|
173
|
-
* maintain isDefault flag for registered instances ([2ac5bee](https://github.com/
|
|
1019
|
+
* maintain isDefault flag for registered instances ([2ac5bee](https://github.com/iotaledger/twin-engine/commit/2ac5bee094bef42b396cc82b0d18bb6aebe27352))
|
|
174
1020
|
|
|
175
1021
|
|
|
176
1022
|
### Dependencies
|
|
@@ -179,12 +1025,12 @@
|
|
|
179
1025
|
* dependencies
|
|
180
1026
|
* @twin.org/engine-models bumped from 0.0.2-next.23 to 0.0.2-next.24
|
|
181
1027
|
|
|
182
|
-
## [0.0.2-next.23](https://github.com/
|
|
1028
|
+
## [0.0.2-next.23](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.2-next.22...engine-core-v0.0.2-next.23) (2025-10-07)
|
|
183
1029
|
|
|
184
1030
|
|
|
185
1031
|
### Features
|
|
186
1032
|
|
|
187
|
-
* override type initialisers with new registrations ([5b4ff56](https://github.com/
|
|
1033
|
+
* override type initialisers with new registrations ([5b4ff56](https://github.com/iotaledger/twin-engine/commit/5b4ff561d06b6513c870a72bb20ba23c0653cfe8))
|
|
188
1034
|
|
|
189
1035
|
|
|
190
1036
|
### Dependencies
|
|
@@ -193,7 +1039,7 @@
|
|
|
193
1039
|
* dependencies
|
|
194
1040
|
* @twin.org/engine-models bumped from 0.0.2-next.22 to 0.0.2-next.23
|
|
195
1041
|
|
|
196
|
-
## [0.0.2-next.22](https://github.com/
|
|
1042
|
+
## [0.0.2-next.22](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.2-next.21...engine-core-v0.0.2-next.22) (2025-10-07)
|
|
197
1043
|
|
|
198
1044
|
|
|
199
1045
|
### Miscellaneous Chores
|
|
@@ -207,12 +1053,12 @@
|
|
|
207
1053
|
* dependencies
|
|
208
1054
|
* @twin.org/engine-models bumped from 0.0.2-next.21 to 0.0.2-next.22
|
|
209
1055
|
|
|
210
|
-
## [0.0.2-next.21](https://github.com/
|
|
1056
|
+
## [0.0.2-next.21](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.2-next.20...engine-core-v0.0.2-next.21) (2025-10-07)
|
|
211
1057
|
|
|
212
1058
|
|
|
213
1059
|
### Features
|
|
214
1060
|
|
|
215
|
-
* use peer dependencies ([69dd744](https://github.com/
|
|
1061
|
+
* use peer dependencies ([69dd744](https://github.com/iotaledger/twin-engine/commit/69dd7449010b8e6f5f35e7fad201ad4c1cab400c))
|
|
216
1062
|
|
|
217
1063
|
|
|
218
1064
|
### Dependencies
|
|
@@ -221,12 +1067,12 @@
|
|
|
221
1067
|
* dependencies
|
|
222
1068
|
* @twin.org/engine-models bumped from 0.0.2-next.20 to 0.0.2-next.21
|
|
223
1069
|
|
|
224
|
-
## [0.0.2-next.20](https://github.com/
|
|
1070
|
+
## [0.0.2-next.20](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.2-next.19...engine-core-v0.0.2-next.20) (2025-10-06)
|
|
225
1071
|
|
|
226
1072
|
|
|
227
1073
|
### Features
|
|
228
1074
|
|
|
229
|
-
* standardised engine logging naming ([0dbf857](https://github.com/
|
|
1075
|
+
* standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
|
|
230
1076
|
|
|
231
1077
|
|
|
232
1078
|
### Dependencies
|
|
@@ -235,12 +1081,12 @@
|
|
|
235
1081
|
* dependencies
|
|
236
1082
|
* @twin.org/engine-models bumped from 0.0.2-next.19 to 0.0.2-next.20
|
|
237
1083
|
|
|
238
|
-
## [0.0.2-next.19](https://github.com/
|
|
1084
|
+
## [0.0.2-next.19](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.2-next.18...engine-core-v0.0.2-next.19) (2025-10-02)
|
|
239
1085
|
|
|
240
1086
|
|
|
241
1087
|
### Features
|
|
242
1088
|
|
|
243
|
-
* simplify config building ([732c871](https://github.com/
|
|
1089
|
+
* simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
|
|
244
1090
|
|
|
245
1091
|
|
|
246
1092
|
### Dependencies
|
|
@@ -249,12 +1095,12 @@
|
|
|
249
1095
|
* dependencies
|
|
250
1096
|
* @twin.org/engine-models bumped from 0.0.2-next.18 to 0.0.2-next.19
|
|
251
1097
|
|
|
252
|
-
## [0.0.2-next.18](https://github.com/
|
|
1098
|
+
## [0.0.2-next.18](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.2-next.17...engine-core-v0.0.2-next.18) (2025-09-29)
|
|
253
1099
|
|
|
254
1100
|
|
|
255
1101
|
### Features
|
|
256
1102
|
|
|
257
|
-
* upgrade framework components ([efd52e8](https://github.com/
|
|
1103
|
+
* upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
|
|
258
1104
|
|
|
259
1105
|
|
|
260
1106
|
### Dependencies
|
|
@@ -263,7 +1109,7 @@
|
|
|
263
1109
|
* dependencies
|
|
264
1110
|
* @twin.org/engine-models bumped from 0.0.2-next.17 to 0.0.2-next.18
|
|
265
1111
|
|
|
266
|
-
## [0.0.2-next.17](https://github.com/
|
|
1112
|
+
## [0.0.2-next.17](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.2-next.16...engine-core-v0.0.2-next.17) (2025-09-26)
|
|
267
1113
|
|
|
268
1114
|
|
|
269
1115
|
### Miscellaneous Chores
|
|
@@ -277,7 +1123,7 @@
|
|
|
277
1123
|
* dependencies
|
|
278
1124
|
* @twin.org/engine-models bumped from 0.0.2-next.16 to 0.0.2-next.17
|
|
279
1125
|
|
|
280
|
-
## [0.0.2-next.16](https://github.com/
|
|
1126
|
+
## [0.0.2-next.16](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.2-next.15...engine-core-v0.0.2-next.16) (2025-09-25)
|
|
281
1127
|
|
|
282
1128
|
|
|
283
1129
|
### Miscellaneous Chores
|
|
@@ -291,7 +1137,7 @@
|
|
|
291
1137
|
* dependencies
|
|
292
1138
|
* @twin.org/engine-models bumped from 0.0.2-next.15 to 0.0.2-next.16
|
|
293
1139
|
|
|
294
|
-
## [0.0.2-next.15](https://github.com/
|
|
1140
|
+
## [0.0.2-next.15](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.2-next.14...engine-core-v0.0.2-next.15) (2025-09-24)
|
|
295
1141
|
|
|
296
1142
|
|
|
297
1143
|
### Miscellaneous Chores
|
|
@@ -305,7 +1151,7 @@
|
|
|
305
1151
|
* dependencies
|
|
306
1152
|
* @twin.org/engine-models bumped from 0.0.2-next.14 to 0.0.2-next.15
|
|
307
1153
|
|
|
308
|
-
## [0.0.2-next.14](https://github.com/
|
|
1154
|
+
## [0.0.2-next.14](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.2-next.13...engine-core-v0.0.2-next.14) (2025-09-19)
|
|
309
1155
|
|
|
310
1156
|
|
|
311
1157
|
### Miscellaneous Chores
|
|
@@ -319,7 +1165,7 @@
|
|
|
319
1165
|
* dependencies
|
|
320
1166
|
* @twin.org/engine-models bumped from 0.0.2-next.13 to 0.0.2-next.14
|
|
321
1167
|
|
|
322
|
-
## [0.0.2-next.13](https://github.com/
|
|
1168
|
+
## [0.0.2-next.13](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.2-next.12...engine-core-v0.0.2-next.13) (2025-09-08)
|
|
323
1169
|
|
|
324
1170
|
|
|
325
1171
|
### Miscellaneous Chores
|
|
@@ -333,12 +1179,12 @@
|
|
|
333
1179
|
* dependencies
|
|
334
1180
|
* @twin.org/engine-models bumped from 0.0.2-next.12 to 0.0.2-next.13
|
|
335
1181
|
|
|
336
|
-
## [0.0.2-next.12](https://github.com/
|
|
1182
|
+
## [0.0.2-next.12](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.2-next.11...engine-core-v0.0.2-next.12) (2025-09-05)
|
|
337
1183
|
|
|
338
1184
|
|
|
339
1185
|
### Features
|
|
340
1186
|
|
|
341
|
-
* add rights management negotiation ([84ef46b](https://github.com/
|
|
1187
|
+
* add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
|
|
342
1188
|
|
|
343
1189
|
|
|
344
1190
|
### Dependencies
|
|
@@ -347,12 +1193,12 @@
|
|
|
347
1193
|
* dependencies
|
|
348
1194
|
* @twin.org/engine-models bumped from 0.0.2-next.11 to 0.0.2-next.12
|
|
349
1195
|
|
|
350
|
-
## [0.0.2-next.11](https://github.com/
|
|
1196
|
+
## [0.0.2-next.11](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.2-next.10...engine-core-v0.0.2-next.11) (2025-08-29)
|
|
351
1197
|
|
|
352
1198
|
|
|
353
1199
|
### Features
|
|
354
1200
|
|
|
355
|
-
* eslint migration to flat config ([6b978da](https://github.com/
|
|
1201
|
+
* eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
|
|
356
1202
|
|
|
357
1203
|
|
|
358
1204
|
### Dependencies
|
|
@@ -361,7 +1207,7 @@
|
|
|
361
1207
|
* dependencies
|
|
362
1208
|
* @twin.org/engine-models bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
363
1209
|
|
|
364
|
-
## [0.0.2-next.10](https://github.com/
|
|
1210
|
+
## [0.0.2-next.10](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.2-next.9...engine-core-v0.0.2-next.10) (2025-08-26)
|
|
365
1211
|
|
|
366
1212
|
|
|
367
1213
|
### Miscellaneous Chores
|
|
@@ -375,12 +1221,12 @@
|
|
|
375
1221
|
* dependencies
|
|
376
1222
|
* @twin.org/engine-models bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
377
1223
|
|
|
378
|
-
## [0.0.2-next.9](https://github.com/
|
|
1224
|
+
## [0.0.2-next.9](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.2-next.8...engine-core-v0.0.2-next.9) (2025-08-25)
|
|
379
1225
|
|
|
380
1226
|
|
|
381
1227
|
### Features
|
|
382
1228
|
|
|
383
|
-
* add isPrimary and isClone methods ([a7c63e9](https://github.com/
|
|
1229
|
+
* add isPrimary and isClone methods ([a7c63e9](https://github.com/iotaledger/twin-engine/commit/a7c63e97f54c95b104cc81e66d3fa42c6607bdc1))
|
|
384
1230
|
|
|
385
1231
|
|
|
386
1232
|
### Dependencies
|
|
@@ -389,7 +1235,7 @@
|
|
|
389
1235
|
* dependencies
|
|
390
1236
|
* @twin.org/engine-models bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
391
1237
|
|
|
392
|
-
## [0.0.2-next.8](https://github.com/
|
|
1238
|
+
## [0.0.2-next.8](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.2-next.7...engine-core-v0.0.2-next.8) (2025-08-22)
|
|
393
1239
|
|
|
394
1240
|
|
|
395
1241
|
### Miscellaneous Chores
|
|
@@ -403,12 +1249,12 @@
|
|
|
403
1249
|
* dependencies
|
|
404
1250
|
* @twin.org/engine-models bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
405
1251
|
|
|
406
|
-
## [0.0.2-next.7](https://github.com/
|
|
1252
|
+
## [0.0.2-next.7](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.2-next.6...engine-core-v0.0.2-next.7) (2025-08-22)
|
|
407
1253
|
|
|
408
1254
|
|
|
409
1255
|
### Features
|
|
410
1256
|
|
|
411
|
-
* remove unused component states ([d56d648](https://github.com/
|
|
1257
|
+
* remove unused component states ([d56d648](https://github.com/iotaledger/twin-engine/commit/d56d6486119ea8b8501a33f9e3a3101a08b826ed))
|
|
412
1258
|
|
|
413
1259
|
|
|
414
1260
|
### Dependencies
|
|
@@ -417,12 +1263,12 @@
|
|
|
417
1263
|
* dependencies
|
|
418
1264
|
* @twin.org/engine-models bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
419
1265
|
|
|
420
|
-
## [0.0.2-next.6](https://github.com/
|
|
1266
|
+
## [0.0.2-next.6](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.2-next.5...engine-core-v0.0.2-next.6) (2025-08-21)
|
|
421
1267
|
|
|
422
1268
|
|
|
423
1269
|
### Features
|
|
424
1270
|
|
|
425
|
-
* update framework core ([acc0f8d](https://github.com/
|
|
1271
|
+
* update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
|
|
426
1272
|
|
|
427
1273
|
|
|
428
1274
|
### Dependencies
|
|
@@ -431,12 +1277,12 @@
|
|
|
431
1277
|
* dependencies
|
|
432
1278
|
* @twin.org/engine-models bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
433
1279
|
|
|
434
|
-
## [0.0.2-next.5](https://github.com/
|
|
1280
|
+
## [0.0.2-next.5](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.2-next.4...engine-core-v0.0.2-next.5) (2025-08-14)
|
|
435
1281
|
|
|
436
1282
|
|
|
437
1283
|
### Features
|
|
438
1284
|
|
|
439
|
-
* add synchronised storage support ([5142e34](https://github.com/
|
|
1285
|
+
* add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
|
|
440
1286
|
|
|
441
1287
|
|
|
442
1288
|
### Dependencies
|
|
@@ -445,12 +1291,12 @@
|
|
|
445
1291
|
* dependencies
|
|
446
1292
|
* @twin.org/engine-models bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
447
1293
|
|
|
448
|
-
## [0.0.2-next.4](https://github.com/
|
|
1294
|
+
## [0.0.2-next.4](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.2-next.3...engine-core-v0.0.2-next.4) (2025-07-25)
|
|
449
1295
|
|
|
450
1296
|
|
|
451
1297
|
### Features
|
|
452
1298
|
|
|
453
|
-
* add default logging component for web server ([8ad94f0](https://github.com/
|
|
1299
|
+
* add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
|
|
454
1300
|
|
|
455
1301
|
|
|
456
1302
|
### Dependencies
|
|
@@ -459,7 +1305,7 @@
|
|
|
459
1305
|
* dependencies
|
|
460
1306
|
* @twin.org/engine-models bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
461
1307
|
|
|
462
|
-
## [0.0.2-next.3](https://github.com/
|
|
1308
|
+
## [0.0.2-next.3](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.2-next.2...engine-core-v0.0.2-next.3) (2025-07-24)
|
|
463
1309
|
|
|
464
1310
|
|
|
465
1311
|
### Miscellaneous Chores
|
|
@@ -473,7 +1319,7 @@
|
|
|
473
1319
|
* dependencies
|
|
474
1320
|
* @twin.org/engine-models bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
475
1321
|
|
|
476
|
-
## [0.0.2-next.2](https://github.com/
|
|
1322
|
+
## [0.0.2-next.2](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.2-next.1...engine-core-v0.0.2-next.2) (2025-07-21)
|
|
477
1323
|
|
|
478
1324
|
|
|
479
1325
|
### Miscellaneous Chores
|
|
@@ -487,16 +1333,16 @@
|
|
|
487
1333
|
* dependencies
|
|
488
1334
|
* @twin.org/engine-models bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
489
1335
|
|
|
490
|
-
## [0.0.2-next.1](https://github.com/
|
|
1336
|
+
## [0.0.2-next.1](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.2-next.0...engine-core-v0.0.2-next.1) (2025-07-11)
|
|
491
1337
|
|
|
492
1338
|
|
|
493
1339
|
### Features
|
|
494
1340
|
|
|
495
|
-
* add auth admin component ([201cd06](https://github.com/
|
|
496
|
-
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/
|
|
497
|
-
* remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/
|
|
498
|
-
* update dependencies ([97c9f64](https://github.com/
|
|
499
|
-
* use shared store mechanism ([#2](https://github.com/
|
|
1341
|
+
* add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
|
|
1342
|
+
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
|
|
1343
|
+
* remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/iotaledger/twin-engine/commit/5c7e9e419ef26933e49c9c5a21a20a8961244e7f))
|
|
1344
|
+
* update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
|
|
1345
|
+
* use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
|
|
500
1346
|
|
|
501
1347
|
|
|
502
1348
|
### Dependencies
|
|
@@ -510,12 +1356,12 @@
|
|
|
510
1356
|
|
|
511
1357
|
### Features
|
|
512
1358
|
|
|
513
|
-
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/
|
|
514
|
-
* release to production ([3a4acd1](https://github.com/
|
|
515
|
-
* release to production ([5559958](https://github.com/
|
|
516
|
-
* remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/
|
|
517
|
-
* update dependencies ([97c9f64](https://github.com/
|
|
518
|
-
* use shared store mechanism ([#2](https://github.com/
|
|
1359
|
+
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
|
|
1360
|
+
* release to production ([3a4acd1](https://github.com/iotaledger/twin-engine/commit/3a4acd1f6c66b841d80b6fd3bc1a439a77148fa5))
|
|
1361
|
+
* release to production ([5559958](https://github.com/iotaledger/twin-engine/commit/5559958e2128e6ec3a81e779d1ebd3f370bbb081))
|
|
1362
|
+
* remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/iotaledger/twin-engine/commit/5c7e9e419ef26933e49c9c5a21a20a8961244e7f))
|
|
1363
|
+
* update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
|
|
1364
|
+
* use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
|
|
519
1365
|
|
|
520
1366
|
|
|
521
1367
|
### Dependencies
|
|
@@ -524,7 +1370,7 @@
|
|
|
524
1370
|
* dependencies
|
|
525
1371
|
* @twin.org/engine-models bumped from 0.0.1-next.84 to 0.0.1
|
|
526
1372
|
|
|
527
|
-
## [0.0.1-next.84](https://github.com/
|
|
1373
|
+
## [0.0.1-next.84](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.1-next.83...engine-core-v0.0.1-next.84) (2025-07-11)
|
|
528
1374
|
|
|
529
1375
|
|
|
530
1376
|
### Miscellaneous Chores
|
|
@@ -538,15 +1384,15 @@
|
|
|
538
1384
|
* dependencies
|
|
539
1385
|
* @twin.org/engine-models bumped from 0.0.1-next.83 to 0.0.1-next.84
|
|
540
1386
|
|
|
541
|
-
## [0.0.1-next.83](https://github.com/
|
|
1387
|
+
## [0.0.1-next.83](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.1-next.82...engine-core-v0.0.1-next.83) (2025-07-10)
|
|
542
1388
|
|
|
543
1389
|
|
|
544
1390
|
### Features
|
|
545
1391
|
|
|
546
|
-
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/
|
|
547
|
-
* remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/
|
|
548
|
-
* update dependencies ([97c9f64](https://github.com/
|
|
549
|
-
* use shared store mechanism ([#2](https://github.com/
|
|
1392
|
+
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
|
|
1393
|
+
* remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/iotaledger/twin-engine/commit/5c7e9e419ef26933e49c9c5a21a20a8961244e7f))
|
|
1394
|
+
* update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
|
|
1395
|
+
* use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
|
|
550
1396
|
|
|
551
1397
|
|
|
552
1398
|
### Dependencies
|
|
@@ -555,7 +1401,7 @@
|
|
|
555
1401
|
* dependencies
|
|
556
1402
|
* @twin.org/engine-models bumped from 0.0.1-next.81 to 0.0.1-next.83
|
|
557
1403
|
|
|
558
|
-
## [0.0.1-next.81](https://github.com/
|
|
1404
|
+
## [0.0.1-next.81](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.1-next.80...engine-core-v0.0.1-next.81) (2025-07-07)
|
|
559
1405
|
|
|
560
1406
|
|
|
561
1407
|
### Miscellaneous Chores
|
|
@@ -569,7 +1415,7 @@
|
|
|
569
1415
|
* dependencies
|
|
570
1416
|
* @twin.org/engine-models bumped from 0.0.1-next.80 to 0.0.1-next.81
|
|
571
1417
|
|
|
572
|
-
## [0.0.1-next.80](https://github.com/
|
|
1418
|
+
## [0.0.1-next.80](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.1-next.79...engine-core-v0.0.1-next.80) (2025-06-23)
|
|
573
1419
|
|
|
574
1420
|
|
|
575
1421
|
### Miscellaneous Chores
|
|
@@ -583,7 +1429,7 @@
|
|
|
583
1429
|
* dependencies
|
|
584
1430
|
* @twin.org/engine-models bumped from 0.0.1-next.79 to 0.0.1-next.80
|
|
585
1431
|
|
|
586
|
-
## [0.0.1-next.79](https://github.com/
|
|
1432
|
+
## [0.0.1-next.79](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.1-next.78...engine-core-v0.0.1-next.79) (2025-06-18)
|
|
587
1433
|
|
|
588
1434
|
|
|
589
1435
|
### Miscellaneous Chores
|
|
@@ -597,7 +1443,7 @@
|
|
|
597
1443
|
* dependencies
|
|
598
1444
|
* @twin.org/engine-models bumped from 0.0.1-next.78 to 0.0.1-next.79
|
|
599
1445
|
|
|
600
|
-
## [0.0.1-next.78](https://github.com/
|
|
1446
|
+
## [0.0.1-next.78](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.1-next.77...engine-core-v0.0.1-next.78) (2025-06-18)
|
|
601
1447
|
|
|
602
1448
|
|
|
603
1449
|
### Miscellaneous Chores
|
|
@@ -611,7 +1457,7 @@
|
|
|
611
1457
|
* dependencies
|
|
612
1458
|
* @twin.org/engine-models bumped from 0.0.1-next.77 to 0.0.1-next.78
|
|
613
1459
|
|
|
614
|
-
## [0.0.1-next.77](https://github.com/
|
|
1460
|
+
## [0.0.1-next.77](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.1-next.76...engine-core-v0.0.1-next.77) (2025-06-18)
|
|
615
1461
|
|
|
616
1462
|
|
|
617
1463
|
### Miscellaneous Chores
|
|
@@ -625,12 +1471,12 @@
|
|
|
625
1471
|
* dependencies
|
|
626
1472
|
* @twin.org/engine-models bumped from 0.0.1-next.76 to 0.0.1-next.77
|
|
627
1473
|
|
|
628
|
-
## [0.0.1-next.76](https://github.com/
|
|
1474
|
+
## [0.0.1-next.76](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.1-next.75...engine-core-v0.0.1-next.76) (2025-06-12)
|
|
629
1475
|
|
|
630
1476
|
|
|
631
1477
|
### Features
|
|
632
1478
|
|
|
633
|
-
* update dependencies ([97c9f64](https://github.com/
|
|
1479
|
+
* update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
|
|
634
1480
|
|
|
635
1481
|
|
|
636
1482
|
### Dependencies
|
|
@@ -639,7 +1485,7 @@
|
|
|
639
1485
|
* dependencies
|
|
640
1486
|
* @twin.org/engine-models bumped from 0.0.1-next.75 to 0.0.1-next.76
|
|
641
1487
|
|
|
642
|
-
## [0.0.1-next.75](https://github.com/
|
|
1488
|
+
## [0.0.1-next.75](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.1-next.74...engine-core-v0.0.1-next.75) (2025-05-29)
|
|
643
1489
|
|
|
644
1490
|
|
|
645
1491
|
### Miscellaneous Chores
|
|
@@ -653,7 +1499,7 @@
|
|
|
653
1499
|
* dependencies
|
|
654
1500
|
* @twin.org/engine-models bumped from 0.0.1-next.74 to 0.0.1-next.75
|
|
655
1501
|
|
|
656
|
-
## [0.0.1-next.74](https://github.com/
|
|
1502
|
+
## [0.0.1-next.74](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.1-next.73...engine-core-v0.0.1-next.74) (2025-05-23)
|
|
657
1503
|
|
|
658
1504
|
|
|
659
1505
|
### Miscellaneous Chores
|
|
@@ -667,12 +1513,12 @@
|
|
|
667
1513
|
* dependencies
|
|
668
1514
|
* @twin.org/engine-models bumped from 0.0.1-next.73 to 0.0.1-next.74
|
|
669
1515
|
|
|
670
|
-
## [0.0.1-next.73](https://github.com/
|
|
1516
|
+
## [0.0.1-next.73](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.1-next.72...engine-core-v0.0.1-next.73) (2025-05-22)
|
|
671
1517
|
|
|
672
1518
|
|
|
673
1519
|
### Features
|
|
674
1520
|
|
|
675
|
-
* remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/
|
|
1521
|
+
* remove bootstrapped components, component should manage their own state ([5c7e9e4](https://github.com/iotaledger/twin-engine/commit/5c7e9e419ef26933e49c9c5a21a20a8961244e7f))
|
|
676
1522
|
|
|
677
1523
|
|
|
678
1524
|
### Dependencies
|
|
@@ -681,13 +1527,13 @@
|
|
|
681
1527
|
* dependencies
|
|
682
1528
|
* @twin.org/engine-models bumped from 0.0.1-next.72 to 0.0.1-next.73
|
|
683
1529
|
|
|
684
|
-
## [0.0.1-next.72](https://github.com/
|
|
1530
|
+
## [0.0.1-next.72](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.1-next.71...engine-core-v0.0.1-next.72) (2025-05-06)
|
|
685
1531
|
|
|
686
1532
|
|
|
687
1533
|
### Features
|
|
688
1534
|
|
|
689
|
-
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/
|
|
690
|
-
* use shared store mechanism ([#2](https://github.com/
|
|
1535
|
+
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
|
|
1536
|
+
* use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
|
|
691
1537
|
|
|
692
1538
|
|
|
693
1539
|
### Dependencies
|
|
@@ -696,7 +1542,7 @@
|
|
|
696
1542
|
* dependencies
|
|
697
1543
|
* @twin.org/engine-models bumped from 0.0.1-next.71 to 0.0.1-next.72
|
|
698
1544
|
|
|
699
|
-
## [0.0.1-next.71](https://github.com/
|
|
1545
|
+
## [0.0.1-next.71](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.1-next.70...engine-core-v0.0.1-next.71) (2025-05-06)
|
|
700
1546
|
|
|
701
1547
|
|
|
702
1548
|
### Miscellaneous Chores
|
|
@@ -710,7 +1556,7 @@
|
|
|
710
1556
|
* dependencies
|
|
711
1557
|
* @twin.org/engine-models bumped from 0.0.1-next.70 to 0.0.1-next.71
|
|
712
1558
|
|
|
713
|
-
## [0.0.1-next.70](https://github.com/
|
|
1559
|
+
## [0.0.1-next.70](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.1-next.69...engine-core-v0.0.1-next.70) (2025-04-28)
|
|
714
1560
|
|
|
715
1561
|
|
|
716
1562
|
### Miscellaneous Chores
|
|
@@ -724,7 +1570,7 @@
|
|
|
724
1570
|
* dependencies
|
|
725
1571
|
* @twin.org/engine-models bumped from 0.0.1-next.69 to 0.0.1-next.70
|
|
726
1572
|
|
|
727
|
-
## [0.0.1-next.69](https://github.com/
|
|
1573
|
+
## [0.0.1-next.69](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.1-next.68...engine-core-v0.0.1-next.69) (2025-04-25)
|
|
728
1574
|
|
|
729
1575
|
|
|
730
1576
|
### Miscellaneous Chores
|
|
@@ -738,12 +1584,12 @@
|
|
|
738
1584
|
* dependencies
|
|
739
1585
|
* @twin.org/engine-models bumped from 0.0.1-next.68 to 0.0.1-next.69
|
|
740
1586
|
|
|
741
|
-
## [0.0.1-next.68](https://github.com/
|
|
1587
|
+
## [0.0.1-next.68](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.1-next.67...engine-core-v0.0.1-next.68) (2025-04-17)
|
|
742
1588
|
|
|
743
1589
|
|
|
744
1590
|
### Features
|
|
745
1591
|
|
|
746
|
-
* use shared store mechanism ([#2](https://github.com/
|
|
1592
|
+
* use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
|
|
747
1593
|
|
|
748
1594
|
|
|
749
1595
|
### Dependencies
|
|
@@ -752,12 +1598,12 @@
|
|
|
752
1598
|
* dependencies
|
|
753
1599
|
* @twin.org/engine-models bumped from 0.0.1-next.67 to 0.0.1-next.68
|
|
754
1600
|
|
|
755
|
-
## [0.0.1-next.67](https://github.com/
|
|
1601
|
+
## [0.0.1-next.67](https://github.com/iotaledger/twin-engine/compare/engine-core-v0.0.1-next.66...engine-core-v0.0.1-next.67) (2025-03-28)
|
|
756
1602
|
|
|
757
1603
|
|
|
758
1604
|
### Features
|
|
759
1605
|
|
|
760
|
-
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/
|
|
1606
|
+
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
|
|
761
1607
|
|
|
762
1608
|
|
|
763
1609
|
### Dependencies
|