@twin.org/engine-server-types 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 +1 -1
- package/dist/es/components/authentication.js +23 -19
- package/dist/es/components/authentication.js.map +1 -1
- package/dist/es/components/authenticationAdmin.js +19 -15
- package/dist/es/components/authenticationAdmin.js.map +1 -1
- package/dist/es/components/authenticationAudit.js +35 -0
- package/dist/es/components/authenticationAudit.js.map +1 -0
- package/dist/es/components/authenticationRate.js +37 -0
- package/dist/es/components/authenticationRate.js.map +1 -0
- package/dist/es/components/hosting.js +29 -0
- package/dist/es/components/hosting.js.map +1 -0
- package/dist/es/components/information.js +12 -9
- package/dist/es/components/information.js.map +1 -1
- package/dist/es/components/mimeTypeProcessor.js +7 -7
- package/dist/es/components/mimeTypeProcessor.js.map +1 -1
- package/dist/es/components/restRouteProcessor.js +40 -46
- package/dist/es/components/restRouteProcessor.js.map +1 -1
- package/dist/es/components/socketRouteProcessor.js +36 -42
- package/dist/es/components/socketRouteProcessor.js.map +1 -1
- package/dist/es/index.js +9 -0
- package/dist/es/index.js.map +1 -1
- package/dist/es/models/IEngineServerConfig.js.map +1 -1
- package/dist/es/models/config/authenticationAuditComponentConfig.js +2 -0
- package/dist/es/models/config/authenticationAuditComponentConfig.js.map +1 -0
- package/dist/es/models/config/authenticationRateComponentConfig.js +2 -0
- package/dist/es/models/config/authenticationRateComponentConfig.js.map +1 -0
- package/dist/es/models/config/hostingComponentConfig.js +2 -0
- package/dist/es/models/config/hostingComponentConfig.js.map +1 -0
- package/dist/es/models/config/restRouteProcessorConfig.js.map +1 -1
- package/dist/es/models/config/socketRouteProcessorConfig.js.map +1 -1
- package/dist/es/models/types/authenticationAuditComponentType.js +13 -0
- package/dist/es/models/types/authenticationAuditComponentType.js.map +1 -0
- package/dist/es/models/types/authenticationRateComponentType.js +13 -0
- package/dist/es/models/types/authenticationRateComponentType.js.map +1 -0
- package/dist/es/models/types/hostingComponentType.js +13 -0
- package/dist/es/models/types/hostingComponentType.js.map +1 -0
- package/dist/types/components/authentication.d.ts +3 -7
- package/dist/types/components/authenticationAdmin.d.ts +3 -7
- package/dist/types/components/authenticationAudit.d.ts +12 -0
- package/dist/types/components/authenticationRate.d.ts +12 -0
- package/dist/types/components/hosting.d.ts +12 -0
- package/dist/types/components/information.d.ts +3 -7
- package/dist/types/components/mimeTypeProcessor.d.ts +2 -7
- package/dist/types/components/restRouteProcessor.d.ts +2 -7
- package/dist/types/components/socketRouteProcessor.d.ts +2 -7
- package/dist/types/index.d.ts +9 -0
- package/dist/types/models/IEngineServerConfig.d.ts +21 -6
- package/dist/types/models/config/authenticationAuditComponentConfig.d.ts +9 -0
- package/dist/types/models/config/authenticationRateComponentConfig.d.ts +9 -0
- package/dist/types/models/config/hostingComponentConfig.d.ts +9 -0
- package/dist/types/models/config/restRouteProcessorConfig.d.ts +0 -4
- package/dist/types/models/config/socketRouteProcessorConfig.d.ts +0 -4
- package/dist/types/models/types/authenticationAuditComponentType.d.ts +13 -0
- package/dist/types/models/types/authenticationRateComponentType.d.ts +13 -0
- package/dist/types/models/types/hostingComponentType.d.ts +13 -0
- package/docs/changelog.md +715 -118
- package/docs/examples.md +64 -1
- package/docs/reference/functions/initialiseAuthenticationAdminComponent.md +2 -2
- package/docs/reference/functions/initialiseAuthenticationAuditComponent.md +31 -0
- package/docs/reference/functions/initialiseAuthenticationComponent.md +2 -2
- package/docs/reference/functions/initialiseAuthenticationRateComponent.md +31 -0
- package/docs/reference/functions/initialiseHostingComponent.md +31 -0
- package/docs/reference/functions/initialiseInformationComponent.md +2 -2
- package/docs/reference/functions/initialiseMimeTypeProcessorComponent.md +2 -2
- package/docs/reference/functions/initialiseRestRouteProcessorComponent.md +2 -2
- package/docs/reference/functions/initialiseSocketRouteProcessorComponent.md +2 -2
- package/docs/reference/index.md +12 -0
- package/docs/reference/interfaces/IEngineServerConfig.md +509 -15
- package/docs/reference/type-aliases/AuthenticationAdminComponentConfig.md +3 -3
- package/docs/reference/type-aliases/AuthenticationAuditComponentConfig.md +17 -0
- package/docs/reference/type-aliases/AuthenticationAuditComponentType.md +5 -0
- package/docs/reference/type-aliases/AuthenticationRateComponentConfig.md +17 -0
- package/docs/reference/type-aliases/AuthenticationRateComponentType.md +5 -0
- package/docs/reference/type-aliases/HostingComponentConfig.md +17 -0
- package/docs/reference/type-aliases/HostingComponentType.md +5 -0
- package/docs/reference/type-aliases/MimeTypeProcessorConfig.md +3 -3
- package/docs/reference/type-aliases/RestRouteProcessorConfig.md +1 -1
- package/docs/reference/type-aliases/SocketRouteProcessorConfig.md +1 -1
- package/docs/reference/variables/AuthenticationAdminComponentType.md +1 -1
- package/docs/reference/variables/AuthenticationAuditComponentType.md +13 -0
- package/docs/reference/variables/AuthenticationComponentType.md +2 -2
- package/docs/reference/variables/AuthenticationRateComponentType.md +13 -0
- package/docs/reference/variables/HostingComponentType.md +13 -0
- package/docs/reference/variables/InformationComponentType.md +2 -2
- package/docs/reference/variables/MimeTypeProcessorType.md +1 -1
- package/docs/reference/variables/RestRouteProcessorType.md +7 -7
- package/docs/reference/variables/SocketRouteProcessorType.md +7 -7
- package/package.json +6 -7
package/docs/changelog.md
CHANGED
|
@@ -1,11 +1,608 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.0.3-next.
|
|
3
|
+
## [0.0.3-next.40](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.39...engine-server-types-v0.0.3-next.40) (2026-05-22)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **engine-server-types:** Synchronize repo versions
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/engine-models bumped from 0.0.3-next.39 to 0.0.3-next.40
|
|
16
|
+
* @twin.org/engine-types bumped from 0.0.3-next.39 to 0.0.3-next.40
|
|
17
|
+
|
|
18
|
+
## [0.0.3-next.39](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.38...engine-server-types-v0.0.3-next.39) (2026-05-21)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Miscellaneous Chores
|
|
22
|
+
|
|
23
|
+
* **engine-server-types:** Synchronize repo versions
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Dependencies
|
|
27
|
+
|
|
28
|
+
* The following workspace dependencies were updated
|
|
29
|
+
* dependencies
|
|
30
|
+
* @twin.org/engine-models bumped from 0.0.3-next.38 to 0.0.3-next.39
|
|
31
|
+
* @twin.org/engine-types bumped from 0.0.3-next.38 to 0.0.3-next.39
|
|
32
|
+
|
|
33
|
+
## [0.0.3-next.38](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.37...engine-server-types-v0.0.3-next.38) (2026-05-20)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
### Miscellaneous Chores
|
|
37
|
+
|
|
38
|
+
* **engine-server-types:** Synchronize repo versions
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
### Dependencies
|
|
42
|
+
|
|
43
|
+
* The following workspace dependencies were updated
|
|
44
|
+
* dependencies
|
|
45
|
+
* @twin.org/engine-models bumped from 0.0.3-next.37 to 0.0.3-next.38
|
|
46
|
+
* @twin.org/engine-types bumped from 0.0.3-next.37 to 0.0.3-next.38
|
|
47
|
+
|
|
48
|
+
## [0.0.3-next.37](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.36...engine-server-types-v0.0.3-next.37) (2026-05-12)
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
### Features
|
|
52
|
+
|
|
53
|
+
* typescript 6 update ([b227f52](https://github.com/iotaledger/twin-engine/commit/b227f5271b18ac627b932ea8e59d2879ff01ebd7))
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
### Dependencies
|
|
57
|
+
|
|
58
|
+
* The following workspace dependencies were updated
|
|
59
|
+
* dependencies
|
|
60
|
+
* @twin.org/engine-models bumped from 0.0.3-next.36 to 0.0.3-next.37
|
|
61
|
+
* @twin.org/engine-types bumped from 0.0.3-next.36 to 0.0.3-next.37
|
|
62
|
+
|
|
63
|
+
## [0.0.3-next.36](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.35...engine-server-types-v0.0.3-next.36) (2026-05-08)
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
### Miscellaneous Chores
|
|
67
|
+
|
|
68
|
+
* **engine-server-types:** Synchronize repo versions
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
### Dependencies
|
|
72
|
+
|
|
73
|
+
* The following workspace dependencies were updated
|
|
74
|
+
* dependencies
|
|
75
|
+
* @twin.org/engine-models bumped from 0.0.3-next.35 to 0.0.3-next.36
|
|
76
|
+
* @twin.org/engine-types bumped from 0.0.3-next.35 to 0.0.3-next.36
|
|
77
|
+
|
|
78
|
+
## [0.0.3-next.35](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.34...engine-server-types-v0.0.3-next.35) (2026-05-05)
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
### Bug Fixes
|
|
82
|
+
|
|
83
|
+
* constructing TenantProcessor ([4dad604](https://github.com/iotaledger/twin-engine/commit/4dad604c0e424a3ffa65f3d6cef173058b21ec76))
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
### Dependencies
|
|
87
|
+
|
|
88
|
+
* The following workspace dependencies were updated
|
|
89
|
+
* dependencies
|
|
90
|
+
* @twin.org/engine-models bumped from 0.0.3-next.34 to 0.0.3-next.35
|
|
91
|
+
* @twin.org/engine-types bumped from 0.0.3-next.34 to 0.0.3-next.35
|
|
92
|
+
|
|
93
|
+
## [0.0.3-next.34](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.33...engine-server-types-v0.0.3-next.34) (2026-05-05)
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
### Miscellaneous Chores
|
|
97
|
+
|
|
98
|
+
* **engine-server-types:** Synchronize repo versions
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
### Dependencies
|
|
102
|
+
|
|
103
|
+
* The following workspace dependencies were updated
|
|
104
|
+
* dependencies
|
|
105
|
+
* @twin.org/engine-models bumped from 0.0.3-next.33 to 0.0.3-next.34
|
|
106
|
+
* @twin.org/engine-types bumped from 0.0.3-next.33 to 0.0.3-next.34
|
|
107
|
+
|
|
108
|
+
## [0.0.3-next.33](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.32...engine-server-types-v0.0.3-next.33) (2026-05-05)
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
### Miscellaneous Chores
|
|
112
|
+
|
|
113
|
+
* **engine-server-types:** Synchronize repo versions
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
### Dependencies
|
|
117
|
+
|
|
118
|
+
* The following workspace dependencies were updated
|
|
119
|
+
* dependencies
|
|
120
|
+
* @twin.org/engine-models bumped from 0.0.3-next.32 to 0.0.3-next.33
|
|
121
|
+
* @twin.org/engine-types bumped from 0.0.3-next.32 to 0.0.3-next.33
|
|
122
|
+
|
|
123
|
+
## [0.0.3-next.32](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.31...engine-server-types-v0.0.3-next.32) (2026-04-24)
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
### Miscellaneous Chores
|
|
127
|
+
|
|
128
|
+
* **engine-server-types:** Synchronize repo versions
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
### Dependencies
|
|
132
|
+
|
|
133
|
+
* The following workspace dependencies were updated
|
|
134
|
+
* dependencies
|
|
135
|
+
* @twin.org/engine-models bumped from 0.0.3-next.31 to 0.0.3-next.32
|
|
136
|
+
* @twin.org/engine-types bumped from 0.0.3-next.31 to 0.0.3-next.32
|
|
137
|
+
|
|
138
|
+
## [0.0.3-next.31](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.30...engine-server-types-v0.0.3-next.31) (2026-04-22)
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
### Miscellaneous Chores
|
|
142
|
+
|
|
143
|
+
* **engine-server-types:** Synchronize repo versions
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
### Dependencies
|
|
147
|
+
|
|
148
|
+
* The following workspace dependencies were updated
|
|
149
|
+
* dependencies
|
|
150
|
+
* @twin.org/engine-models bumped from 0.0.3-next.30 to 0.0.3-next.31
|
|
151
|
+
* @twin.org/engine-types bumped from 0.0.3-next.30 to 0.0.3-next.31
|
|
152
|
+
|
|
153
|
+
## [0.0.3-next.30](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.29...engine-server-types-v0.0.3-next.30) (2026-04-16)
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
### Miscellaneous Chores
|
|
157
|
+
|
|
158
|
+
* **engine-server-types:** Synchronize repo versions
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
### Dependencies
|
|
162
|
+
|
|
163
|
+
* The following workspace dependencies were updated
|
|
164
|
+
* dependencies
|
|
165
|
+
* @twin.org/engine-models bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
166
|
+
* @twin.org/engine-types bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
167
|
+
|
|
168
|
+
## [0.0.3-next.29](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.28...engine-server-types-v0.0.3-next.29) (2026-04-14)
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
### Features
|
|
172
|
+
|
|
173
|
+
* add authentication rate and audit services ([#95](https://github.com/iotaledger/twin-engine/issues/95)) ([55e2b08](https://github.com/iotaledger/twin-engine/commit/55e2b089661529e0556115817cc435cc6e4292cc))
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
### Dependencies
|
|
177
|
+
|
|
178
|
+
* The following workspace dependencies were updated
|
|
179
|
+
* dependencies
|
|
180
|
+
* @twin.org/engine-models bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
181
|
+
* @twin.org/engine-types bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
182
|
+
|
|
183
|
+
## [0.0.3-next.28](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.27...engine-server-types-v0.0.3-next.28) (2026-04-10)
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
### Miscellaneous Chores
|
|
187
|
+
|
|
188
|
+
* **engine-server-types:** Synchronize repo versions
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
### Dependencies
|
|
192
|
+
|
|
193
|
+
* The following workspace dependencies were updated
|
|
194
|
+
* dependencies
|
|
195
|
+
* @twin.org/engine-models bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
196
|
+
* @twin.org/engine-types bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
197
|
+
|
|
198
|
+
## [0.0.3-next.27](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.26...engine-server-types-v0.0.3-next.27) (2026-03-20)
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
### Features
|
|
202
|
+
|
|
203
|
+
* update dependencies ([e6ebe42](https://github.com/iotaledger/twin-engine/commit/e6ebe42b9d61066227ad8b45dae14c8f8615b760))
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
### Dependencies
|
|
207
|
+
|
|
208
|
+
* The following workspace dependencies were updated
|
|
209
|
+
* dependencies
|
|
210
|
+
* @twin.org/engine-models bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
211
|
+
* @twin.org/engine-types bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
212
|
+
|
|
213
|
+
## [0.0.3-next.26](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.25...engine-server-types-v0.0.3-next.26) (2026-03-05)
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
### Miscellaneous Chores
|
|
217
|
+
|
|
218
|
+
* **engine-server-types:** Synchronize repo versions
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
### Dependencies
|
|
222
|
+
|
|
223
|
+
* The following workspace dependencies were updated
|
|
224
|
+
* dependencies
|
|
225
|
+
* @twin.org/engine-models bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
226
|
+
* @twin.org/engine-types bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
227
|
+
|
|
228
|
+
## [0.0.3-next.25](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.24...engine-server-types-v0.0.3-next.25) (2026-03-02)
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
### Features
|
|
232
|
+
|
|
233
|
+
* replace unified data space connector with control plane and data plane components ([#78](https://github.com/iotaledger/twin-engine/issues/78)) ([a6ebace](https://github.com/iotaledger/twin-engine/commit/a6ebace389dafe754a3ca0827999966b5a101a59))
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
### Dependencies
|
|
237
|
+
|
|
238
|
+
* The following workspace dependencies were updated
|
|
239
|
+
* dependencies
|
|
240
|
+
* @twin.org/engine-models bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
241
|
+
* @twin.org/engine-types bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
242
|
+
|
|
243
|
+
## [0.0.3-next.24](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.23...engine-server-types-v0.0.3-next.24) (2026-02-26)
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
### Miscellaneous Chores
|
|
247
|
+
|
|
248
|
+
* **engine-server-types:** Synchronize repo versions
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
### Dependencies
|
|
252
|
+
|
|
253
|
+
* The following workspace dependencies were updated
|
|
254
|
+
* dependencies
|
|
255
|
+
* @twin.org/engine-models bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
256
|
+
* @twin.org/engine-types bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
257
|
+
|
|
258
|
+
## [0.0.3-next.23](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.22...engine-server-types-v0.0.3-next.23) (2026-02-23)
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
### Features
|
|
262
|
+
|
|
263
|
+
* add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
|
|
264
|
+
* add context id features ([#51](https://github.com/iotaledger/twin-engine/issues/51)) ([eaef180](https://github.com/iotaledger/twin-engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
|
|
265
|
+
* add data space connector ([a824d99](https://github.com/iotaledger/twin-engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
|
|
266
|
+
* add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
|
|
267
|
+
* add fed cat filters ([a52cbf1](https://github.com/iotaledger/twin-engine/commit/a52cbf1eaf85e6cad61de9ea9448932fb5ae0f43))
|
|
268
|
+
* add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
|
|
269
|
+
* add hosting component ([#70](https://github.com/iotaledger/twin-engine/issues/70)) ([2ab0dec](https://github.com/iotaledger/twin-engine/commit/2ab0dec8fdb979395c639b73f394a40a0dd7e55a))
|
|
270
|
+
* add latest rights management components ([2d305c8](https://github.com/iotaledger/twin-engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
|
|
271
|
+
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
|
|
272
|
+
* add rest clients as components ([c6f956a](https://github.com/iotaledger/twin-engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
|
|
273
|
+
* add rights management modules ([e02cadc](https://github.com/iotaledger/twin-engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
|
|
274
|
+
* add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
|
|
275
|
+
* add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
|
|
276
|
+
* add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
|
|
277
|
+
* add trust and rights management plugins ([eea0807](https://github.com/iotaledger/twin-engine/commit/eea0807601833220bd9fd8605b5e4383fbc0ebae))
|
|
278
|
+
* add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
|
|
279
|
+
* context id handlers repopulated after engine clone ([9712e32](https://github.com/iotaledger/twin-engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
|
|
280
|
+
* eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
|
|
281
|
+
* modifying the engine to run the new services ([#10](https://github.com/iotaledger/twin-engine/issues/10)) ([6f7141f](https://github.com/iotaledger/twin-engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
|
|
282
|
+
* multi instance component support ([#83](https://github.com/iotaledger/twin-engine/issues/83)) ([6012b50](https://github.com/iotaledger/twin-engine/commit/6012b50959df5af893f05516d42eea2e0800b31a))
|
|
283
|
+
* remove additional identity auth components ([409b2e6](https://github.com/iotaledger/twin-engine/commit/409b2e6a5a543d0795b01916349b39922afb6d88))
|
|
284
|
+
* remove authentication generator components ([#67](https://github.com/iotaledger/twin-engine/issues/67)) ([62f7984](https://github.com/iotaledger/twin-engine/commit/62f798468f567fdbf648401aa0dc51cda871c913))
|
|
285
|
+
* remove dap and darp ([d568c4f](https://github.com/iotaledger/twin-engine/commit/d568c4fc58a3159378e1d65f93228ae84f34a31d))
|
|
286
|
+
* simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
|
|
287
|
+
* standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
|
|
288
|
+
* switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
|
|
289
|
+
* update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
|
|
290
|
+
* update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
|
|
291
|
+
* update rights management and add authentication generators ([f728a1e](https://github.com/iotaledger/twin-engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
|
|
292
|
+
* upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
|
|
293
|
+
* use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
### Dependencies
|
|
297
|
+
|
|
298
|
+
* The following workspace dependencies were updated
|
|
299
|
+
* dependencies
|
|
300
|
+
* @twin.org/engine-models bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
301
|
+
* @twin.org/engine-types bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
302
|
+
|
|
303
|
+
## [0.0.3-next.22](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.21...engine-server-types-v0.0.3-next.22) (2026-02-23)
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
### Miscellaneous Chores
|
|
307
|
+
|
|
308
|
+
* **engine-server-types:** Synchronize repo versions
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
### Dependencies
|
|
312
|
+
|
|
313
|
+
* The following workspace dependencies were updated
|
|
314
|
+
* dependencies
|
|
315
|
+
* @twin.org/engine-models bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
316
|
+
* @twin.org/engine-types bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
317
|
+
|
|
318
|
+
## [0.0.3-next.21](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.20...engine-server-types-v0.0.3-next.21) (2026-02-13)
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
### Features
|
|
322
|
+
|
|
323
|
+
* multi instance component support ([#83](https://github.com/iotaledger/twin-engine/issues/83)) ([6012b50](https://github.com/iotaledger/twin-engine/commit/6012b50959df5af893f05516d42eea2e0800b31a))
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
### Dependencies
|
|
327
|
+
|
|
328
|
+
* The following workspace dependencies were updated
|
|
329
|
+
* dependencies
|
|
330
|
+
* @twin.org/engine-models bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
331
|
+
* @twin.org/engine-types bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
332
|
+
|
|
333
|
+
## [0.0.3-next.20](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.19...engine-server-types-v0.0.3-next.20) (2026-02-06)
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
### Miscellaneous Chores
|
|
337
|
+
|
|
338
|
+
* **engine-server-types:** Synchronize repo versions
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
### Dependencies
|
|
342
|
+
|
|
343
|
+
* The following workspace dependencies were updated
|
|
344
|
+
* dependencies
|
|
345
|
+
* @twin.org/engine-models bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
346
|
+
* @twin.org/engine-types bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
347
|
+
|
|
348
|
+
## [0.0.3-next.19](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.18...engine-server-types-v0.0.3-next.19) (2026-02-05)
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
### Miscellaneous Chores
|
|
352
|
+
|
|
353
|
+
* **engine-server-types:** Synchronize repo versions
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
### Dependencies
|
|
357
|
+
|
|
358
|
+
* The following workspace dependencies were updated
|
|
359
|
+
* dependencies
|
|
360
|
+
* @twin.org/engine-models bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
361
|
+
* @twin.org/engine-types bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
362
|
+
|
|
363
|
+
## [0.0.3-next.18](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.17...engine-server-types-v0.0.3-next.18) (2026-02-04)
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
### Miscellaneous Chores
|
|
367
|
+
|
|
368
|
+
* **engine-server-types:** Synchronize repo versions
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
### Dependencies
|
|
372
|
+
|
|
373
|
+
* The following workspace dependencies were updated
|
|
374
|
+
* dependencies
|
|
375
|
+
* @twin.org/engine-models bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
376
|
+
* @twin.org/engine-types bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
377
|
+
|
|
378
|
+
## [0.0.3-next.17](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.16...engine-server-types-v0.0.3-next.17) (2026-02-02)
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
### Miscellaneous Chores
|
|
382
|
+
|
|
383
|
+
* **engine-server-types:** Synchronize repo versions
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
### Dependencies
|
|
387
|
+
|
|
388
|
+
* The following workspace dependencies were updated
|
|
389
|
+
* dependencies
|
|
390
|
+
* @twin.org/engine-models bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
391
|
+
* @twin.org/engine-types bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
392
|
+
|
|
393
|
+
## [0.0.3-next.16](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.15...engine-server-types-v0.0.3-next.16) (2026-01-28)
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
### Features
|
|
397
|
+
|
|
398
|
+
* remove dap and darp ([d568c4f](https://github.com/iotaledger/twin-engine/commit/d568c4fc58a3159378e1d65f93228ae84f34a31d))
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
### Dependencies
|
|
402
|
+
|
|
403
|
+
* The following workspace dependencies were updated
|
|
404
|
+
* dependencies
|
|
405
|
+
* @twin.org/engine-models bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
406
|
+
* @twin.org/engine-types bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
407
|
+
|
|
408
|
+
## [0.0.3-next.15](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.14...engine-server-types-v0.0.3-next.15) (2026-01-26)
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
### Features
|
|
412
|
+
|
|
413
|
+
* add hosting component ([#70](https://github.com/iotaledger/twin-engine/issues/70)) ([2ab0dec](https://github.com/iotaledger/twin-engine/commit/2ab0dec8fdb979395c639b73f394a40a0dd7e55a))
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
### Dependencies
|
|
417
|
+
|
|
418
|
+
* The following workspace dependencies were updated
|
|
419
|
+
* dependencies
|
|
420
|
+
* @twin.org/engine-models bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
421
|
+
* @twin.org/engine-types bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
422
|
+
|
|
423
|
+
## [0.0.3-next.14](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.13...engine-server-types-v0.0.3-next.14) (2026-01-19)
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
### Features
|
|
427
|
+
|
|
428
|
+
* add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
|
|
429
|
+
* add context id features ([#51](https://github.com/iotaledger/twin-engine/issues/51)) ([eaef180](https://github.com/iotaledger/twin-engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
|
|
430
|
+
* add data space connector ([a824d99](https://github.com/iotaledger/twin-engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
|
|
431
|
+
* add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
|
|
432
|
+
* add fed cat filters ([a52cbf1](https://github.com/iotaledger/twin-engine/commit/a52cbf1eaf85e6cad61de9ea9448932fb5ae0f43))
|
|
433
|
+
* add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
|
|
434
|
+
* add latest rights management components ([2d305c8](https://github.com/iotaledger/twin-engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
|
|
435
|
+
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
|
|
436
|
+
* add rest clients as components ([c6f956a](https://github.com/iotaledger/twin-engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
|
|
437
|
+
* add rights management modules ([e02cadc](https://github.com/iotaledger/twin-engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
|
|
438
|
+
* add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
|
|
439
|
+
* add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
|
|
440
|
+
* add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
|
|
441
|
+
* add trust and rights management plugins ([eea0807](https://github.com/iotaledger/twin-engine/commit/eea0807601833220bd9fd8605b5e4383fbc0ebae))
|
|
442
|
+
* add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
|
|
443
|
+
* context id handlers repopulated after engine clone ([9712e32](https://github.com/iotaledger/twin-engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
|
|
444
|
+
* eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
|
|
445
|
+
* modifying the engine to run the new services ([#10](https://github.com/iotaledger/twin-engine/issues/10)) ([6f7141f](https://github.com/iotaledger/twin-engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
|
|
446
|
+
* remove additional identity auth components ([409b2e6](https://github.com/iotaledger/twin-engine/commit/409b2e6a5a543d0795b01916349b39922afb6d88))
|
|
447
|
+
* remove authentication generator components ([#67](https://github.com/iotaledger/twin-engine/issues/67)) ([62f7984](https://github.com/iotaledger/twin-engine/commit/62f798468f567fdbf648401aa0dc51cda871c913))
|
|
448
|
+
* simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
|
|
449
|
+
* standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
|
|
450
|
+
* switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
|
|
451
|
+
* update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
|
|
452
|
+
* update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
|
|
453
|
+
* update rights management and add authentication generators ([f728a1e](https://github.com/iotaledger/twin-engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
|
|
454
|
+
* upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
|
|
455
|
+
* use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
### Dependencies
|
|
459
|
+
|
|
460
|
+
* The following workspace dependencies were updated
|
|
461
|
+
* dependencies
|
|
462
|
+
* @twin.org/engine-models bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
463
|
+
* @twin.org/engine-types bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
464
|
+
|
|
465
|
+
## [0.0.3-next.13](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.12...engine-server-types-v0.0.3-next.13) (2026-01-19)
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
### Features
|
|
469
|
+
|
|
470
|
+
* remove authentication generator components ([#67](https://github.com/iotaledger/twin-engine/issues/67)) ([62f7984](https://github.com/iotaledger/twin-engine/commit/62f798468f567fdbf648401aa0dc51cda871c913))
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
### Dependencies
|
|
474
|
+
|
|
475
|
+
* The following workspace dependencies were updated
|
|
476
|
+
* dependencies
|
|
477
|
+
* @twin.org/engine-models bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
478
|
+
* @twin.org/engine-types bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
479
|
+
|
|
480
|
+
## [0.0.3-next.12](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.11...engine-server-types-v0.0.3-next.12) (2026-01-19)
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
### Miscellaneous Chores
|
|
484
|
+
|
|
485
|
+
* **engine-server-types:** Synchronize repo versions
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
### Dependencies
|
|
489
|
+
|
|
490
|
+
* The following workspace dependencies were updated
|
|
491
|
+
* dependencies
|
|
492
|
+
* @twin.org/engine-models bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
493
|
+
* @twin.org/engine-types bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
494
|
+
|
|
495
|
+
## [0.0.3-next.11](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.10...engine-server-types-v0.0.3-next.11) (2026-01-16)
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
### Miscellaneous Chores
|
|
499
|
+
|
|
500
|
+
* **engine-server-types:** 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.10 to 0.0.3-next.11
|
|
508
|
+
* @twin.org/engine-types bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
509
|
+
|
|
510
|
+
## [0.0.3-next.10](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.9...engine-server-types-v0.0.3-next.10) (2026-01-13)
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
### Miscellaneous Chores
|
|
514
|
+
|
|
515
|
+
* **engine-server-types:** Synchronize repo versions
|
|
516
|
+
|
|
517
|
+
|
|
518
|
+
### Dependencies
|
|
519
|
+
|
|
520
|
+
* The following workspace dependencies were updated
|
|
521
|
+
* dependencies
|
|
522
|
+
* @twin.org/engine-models bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
523
|
+
* @twin.org/engine-types bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
524
|
+
|
|
525
|
+
## [0.0.3-next.9](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.8...engine-server-types-v0.0.3-next.9) (2026-01-07)
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
### Miscellaneous Chores
|
|
529
|
+
|
|
530
|
+
* **engine-server-types:** Synchronize repo versions
|
|
531
|
+
|
|
532
|
+
|
|
533
|
+
### Dependencies
|
|
534
|
+
|
|
535
|
+
* The following workspace dependencies were updated
|
|
536
|
+
* dependencies
|
|
537
|
+
* @twin.org/engine-models bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
538
|
+
* @twin.org/engine-types bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
539
|
+
|
|
540
|
+
## [0.0.3-next.8](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.7...engine-server-types-v0.0.3-next.8) (2026-01-06)
|
|
541
|
+
|
|
542
|
+
|
|
543
|
+
### Miscellaneous Chores
|
|
544
|
+
|
|
545
|
+
* **engine-server-types:** Synchronize repo versions
|
|
546
|
+
|
|
547
|
+
|
|
548
|
+
### Dependencies
|
|
549
|
+
|
|
550
|
+
* The following workspace dependencies were updated
|
|
551
|
+
* dependencies
|
|
552
|
+
* @twin.org/engine-models bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
553
|
+
* @twin.org/engine-types bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
554
|
+
|
|
555
|
+
## [0.0.3-next.7](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.6...engine-server-types-v0.0.3-next.7) (2025-12-04)
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
### Features
|
|
559
|
+
|
|
560
|
+
* add trust and rights management plugins ([eea0807](https://github.com/iotaledger/twin-engine/commit/eea0807601833220bd9fd8605b5e4383fbc0ebae))
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
### Dependencies
|
|
564
|
+
|
|
565
|
+
* The following workspace dependencies were updated
|
|
566
|
+
* dependencies
|
|
567
|
+
* @twin.org/engine-models bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
568
|
+
* @twin.org/engine-types bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
569
|
+
|
|
570
|
+
## [0.0.3-next.6](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.5...engine-server-types-v0.0.3-next.6) (2025-11-28)
|
|
571
|
+
|
|
572
|
+
|
|
573
|
+
### Features
|
|
574
|
+
|
|
575
|
+
* add fed cat filters ([a52cbf1](https://github.com/iotaledger/twin-engine/commit/a52cbf1eaf85e6cad61de9ea9448932fb5ae0f43))
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
### Dependencies
|
|
579
|
+
|
|
580
|
+
* The following workspace dependencies were updated
|
|
581
|
+
* dependencies
|
|
582
|
+
* @twin.org/engine-models bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
583
|
+
* @twin.org/engine-types bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
584
|
+
|
|
585
|
+
## [0.0.3-next.5](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.4...engine-server-types-v0.0.3-next.5) (2025-11-20)
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
### Miscellaneous Chores
|
|
589
|
+
|
|
590
|
+
* **engine-server-types:** Synchronize repo versions
|
|
591
|
+
|
|
592
|
+
|
|
593
|
+
### Dependencies
|
|
594
|
+
|
|
595
|
+
* The following workspace dependencies were updated
|
|
596
|
+
* dependencies
|
|
597
|
+
* @twin.org/engine-models bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
598
|
+
* @twin.org/engine-types bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
599
|
+
|
|
600
|
+
## [0.0.3-next.4](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.3...engine-server-types-v0.0.3-next.4) (2025-11-20)
|
|
4
601
|
|
|
5
602
|
|
|
6
603
|
### Features
|
|
7
604
|
|
|
8
|
-
* context id handlers repopulated after engine clone ([9712e32](https://github.com/
|
|
605
|
+
* context id handlers repopulated after engine clone ([9712e32](https://github.com/iotaledger/twin-engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
|
|
9
606
|
|
|
10
607
|
|
|
11
608
|
### Dependencies
|
|
@@ -15,7 +612,7 @@
|
|
|
15
612
|
* @twin.org/engine-models bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
16
613
|
* @twin.org/engine-types bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
17
614
|
|
|
18
|
-
## [0.0.3-next.3](https://github.com/
|
|
615
|
+
## [0.0.3-next.3](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.2...engine-server-types-v0.0.3-next.3) (2025-11-14)
|
|
19
616
|
|
|
20
617
|
|
|
21
618
|
### Miscellaneous Chores
|
|
@@ -30,7 +627,7 @@
|
|
|
30
627
|
* @twin.org/engine-models bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
31
628
|
* @twin.org/engine-types bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
32
629
|
|
|
33
|
-
## [0.0.3-next.2](https://github.com/
|
|
630
|
+
## [0.0.3-next.2](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.1...engine-server-types-v0.0.3-next.2) (2025-11-13)
|
|
34
631
|
|
|
35
632
|
|
|
36
633
|
### Miscellaneous Chores
|
|
@@ -45,34 +642,34 @@
|
|
|
45
642
|
* @twin.org/engine-models bumped from 0.0.3-next.1 to 0.0.3-next.2
|
|
46
643
|
* @twin.org/engine-types bumped from 0.0.3-next.1 to 0.0.3-next.2
|
|
47
644
|
|
|
48
|
-
## [0.0.3-next.1](https://github.com/
|
|
645
|
+
## [0.0.3-next.1](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.0...engine-server-types-v0.0.3-next.1) (2025-11-13)
|
|
49
646
|
|
|
50
647
|
|
|
51
648
|
### Features
|
|
52
649
|
|
|
53
|
-
* add auth admin component ([201cd06](https://github.com/
|
|
54
|
-
* add context id features ([#51](https://github.com/
|
|
55
|
-
* add data space connector ([a824d99](https://github.com/
|
|
56
|
-
* add default logging component for web server ([8ad94f0](https://github.com/
|
|
57
|
-
* add federated catalogue ([1b15dd0](https://github.com/
|
|
58
|
-
* add latest rights management components ([2d305c8](https://github.com/
|
|
59
|
-
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/
|
|
60
|
-
* add rest clients as components ([c6f956a](https://github.com/
|
|
61
|
-
* add rights management modules ([e02cadc](https://github.com/
|
|
62
|
-
* add rights management negotiation ([84ef46b](https://github.com/
|
|
63
|
-
* add synchronised storage support ([5142e34](https://github.com/
|
|
64
|
-
* add task scheduler ([0951107](https://github.com/
|
|
65
|
-
* add validate-locales ([b92ea09](https://github.com/
|
|
66
|
-
* eslint migration to flat config ([6b978da](https://github.com/
|
|
67
|
-
* modifying the engine to run the new services ([#10](https://github.com/
|
|
68
|
-
* simplify config building ([732c871](https://github.com/
|
|
69
|
-
* standardised engine logging naming ([0dbf857](https://github.com/
|
|
70
|
-
* switch to devDeps ([32832ac](https://github.com/
|
|
71
|
-
* update dependencies ([97c9f64](https://github.com/
|
|
72
|
-
* update framework core ([acc0f8d](https://github.com/
|
|
73
|
-
* update rights management and add authentication generators ([f728a1e](https://github.com/
|
|
74
|
-
* upgrade framework components ([efd52e8](https://github.com/
|
|
75
|
-
* use shared store mechanism ([#2](https://github.com/
|
|
650
|
+
* add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
|
|
651
|
+
* add context id features ([#51](https://github.com/iotaledger/twin-engine/issues/51)) ([eaef180](https://github.com/iotaledger/twin-engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
|
|
652
|
+
* add data space connector ([a824d99](https://github.com/iotaledger/twin-engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
|
|
653
|
+
* add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
|
|
654
|
+
* add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
|
|
655
|
+
* add latest rights management components ([2d305c8](https://github.com/iotaledger/twin-engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
|
|
656
|
+
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
|
|
657
|
+
* add rest clients as components ([c6f956a](https://github.com/iotaledger/twin-engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
|
|
658
|
+
* add rights management modules ([e02cadc](https://github.com/iotaledger/twin-engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
|
|
659
|
+
* add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
|
|
660
|
+
* add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
|
|
661
|
+
* add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
|
|
662
|
+
* add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
|
|
663
|
+
* eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
|
|
664
|
+
* modifying the engine to run the new services ([#10](https://github.com/iotaledger/twin-engine/issues/10)) ([6f7141f](https://github.com/iotaledger/twin-engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
|
|
665
|
+
* simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
|
|
666
|
+
* standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
|
|
667
|
+
* switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
|
|
668
|
+
* update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
|
|
669
|
+
* update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
|
|
670
|
+
* update rights management and add authentication generators ([f728a1e](https://github.com/iotaledger/twin-engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
|
|
671
|
+
* upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
|
|
672
|
+
* use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
|
|
76
673
|
|
|
77
674
|
|
|
78
675
|
### Dependencies
|
|
@@ -82,7 +679,7 @@
|
|
|
82
679
|
* @twin.org/engine-models bumped from 0.0.3-next.0 to 0.0.3-next.1
|
|
83
680
|
* @twin.org/engine-types bumped from 0.0.3-next.0 to 0.0.3-next.1
|
|
84
681
|
|
|
85
|
-
## [0.0.2-next.26](https://github.com/
|
|
682
|
+
## [0.0.2-next.26](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.25...engine-server-types-v0.0.2-next.26) (2025-10-09)
|
|
86
683
|
|
|
87
684
|
|
|
88
685
|
### Miscellaneous Chores
|
|
@@ -97,12 +694,12 @@
|
|
|
97
694
|
* @twin.org/engine-models bumped from 0.0.2-next.25 to 0.0.2-next.26
|
|
98
695
|
* @twin.org/engine-types bumped from 0.0.2-next.25 to 0.0.2-next.26
|
|
99
696
|
|
|
100
|
-
## [0.0.2-next.25](https://github.com/
|
|
697
|
+
## [0.0.2-next.25](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.24...engine-server-types-v0.0.2-next.25) (2025-10-09)
|
|
101
698
|
|
|
102
699
|
|
|
103
700
|
### Features
|
|
104
701
|
|
|
105
|
-
* add validate-locales ([b92ea09](https://github.com/
|
|
702
|
+
* add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
|
|
106
703
|
|
|
107
704
|
|
|
108
705
|
### Dependencies
|
|
@@ -112,7 +709,7 @@
|
|
|
112
709
|
* @twin.org/engine-models bumped from 0.0.2-next.24 to 0.0.2-next.25
|
|
113
710
|
* @twin.org/engine-types bumped from 0.0.2-next.24 to 0.0.2-next.25
|
|
114
711
|
|
|
115
|
-
## [0.0.2-next.24](https://github.com/
|
|
712
|
+
## [0.0.2-next.24](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.23...engine-server-types-v0.0.2-next.24) (2025-10-08)
|
|
116
713
|
|
|
117
714
|
|
|
118
715
|
### Miscellaneous Chores
|
|
@@ -127,7 +724,7 @@
|
|
|
127
724
|
* @twin.org/engine-models bumped from 0.0.2-next.23 to 0.0.2-next.24
|
|
128
725
|
* @twin.org/engine-types bumped from 0.0.2-next.23 to 0.0.2-next.24
|
|
129
726
|
|
|
130
|
-
## [0.0.2-next.23](https://github.com/
|
|
727
|
+
## [0.0.2-next.23](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.22...engine-server-types-v0.0.2-next.23) (2025-10-07)
|
|
131
728
|
|
|
132
729
|
|
|
133
730
|
### Miscellaneous Chores
|
|
@@ -142,7 +739,7 @@
|
|
|
142
739
|
* @twin.org/engine-models bumped from 0.0.2-next.22 to 0.0.2-next.23
|
|
143
740
|
* @twin.org/engine-types bumped from 0.0.2-next.22 to 0.0.2-next.23
|
|
144
741
|
|
|
145
|
-
## [0.0.2-next.22](https://github.com/
|
|
742
|
+
## [0.0.2-next.22](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.21...engine-server-types-v0.0.2-next.22) (2025-10-07)
|
|
146
743
|
|
|
147
744
|
|
|
148
745
|
### Miscellaneous Chores
|
|
@@ -157,7 +754,7 @@
|
|
|
157
754
|
* @twin.org/engine-models bumped from 0.0.2-next.21 to 0.0.2-next.22
|
|
158
755
|
* @twin.org/engine-types bumped from 0.0.2-next.21 to 0.0.2-next.22
|
|
159
756
|
|
|
160
|
-
## [0.0.2-next.21](https://github.com/
|
|
757
|
+
## [0.0.2-next.21](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.20...engine-server-types-v0.0.2-next.21) (2025-10-07)
|
|
161
758
|
|
|
162
759
|
|
|
163
760
|
### Miscellaneous Chores
|
|
@@ -172,12 +769,12 @@
|
|
|
172
769
|
* @twin.org/engine-models bumped from 0.0.2-next.20 to 0.0.2-next.21
|
|
173
770
|
* @twin.org/engine-types bumped from 0.0.2-next.20 to 0.0.2-next.21
|
|
174
771
|
|
|
175
|
-
## [0.0.2-next.20](https://github.com/
|
|
772
|
+
## [0.0.2-next.20](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.19...engine-server-types-v0.0.2-next.20) (2025-10-06)
|
|
176
773
|
|
|
177
774
|
|
|
178
775
|
### Features
|
|
179
776
|
|
|
180
|
-
* standardised engine logging naming ([0dbf857](https://github.com/
|
|
777
|
+
* standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
|
|
181
778
|
|
|
182
779
|
|
|
183
780
|
### Dependencies
|
|
@@ -187,12 +784,12 @@
|
|
|
187
784
|
* @twin.org/engine-models bumped from 0.0.2-next.19 to 0.0.2-next.20
|
|
188
785
|
* @twin.org/engine-types bumped from 0.0.2-next.19 to 0.0.2-next.20
|
|
189
786
|
|
|
190
|
-
## [0.0.2-next.19](https://github.com/
|
|
787
|
+
## [0.0.2-next.19](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.18...engine-server-types-v0.0.2-next.19) (2025-10-02)
|
|
191
788
|
|
|
192
789
|
|
|
193
790
|
### Features
|
|
194
791
|
|
|
195
|
-
* simplify config building ([732c871](https://github.com/
|
|
792
|
+
* simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
|
|
196
793
|
|
|
197
794
|
|
|
198
795
|
### Dependencies
|
|
@@ -202,12 +799,12 @@
|
|
|
202
799
|
* @twin.org/engine-models bumped from 0.0.2-next.18 to 0.0.2-next.19
|
|
203
800
|
* @twin.org/engine-types bumped from 0.0.2-next.18 to 0.0.2-next.19
|
|
204
801
|
|
|
205
|
-
## [0.0.2-next.18](https://github.com/
|
|
802
|
+
## [0.0.2-next.18](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.17...engine-server-types-v0.0.2-next.18) (2025-09-29)
|
|
206
803
|
|
|
207
804
|
|
|
208
805
|
### Features
|
|
209
806
|
|
|
210
|
-
* upgrade framework components ([efd52e8](https://github.com/
|
|
807
|
+
* upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
|
|
211
808
|
|
|
212
809
|
|
|
213
810
|
### Dependencies
|
|
@@ -217,7 +814,7 @@
|
|
|
217
814
|
* @twin.org/engine-models bumped from 0.0.2-next.17 to 0.0.2-next.18
|
|
218
815
|
* @twin.org/engine-types bumped from 0.0.2-next.17 to 0.0.2-next.18
|
|
219
816
|
|
|
220
|
-
## [0.0.2-next.17](https://github.com/
|
|
817
|
+
## [0.0.2-next.17](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.16...engine-server-types-v0.0.2-next.17) (2025-09-26)
|
|
221
818
|
|
|
222
819
|
|
|
223
820
|
### Miscellaneous Chores
|
|
@@ -232,7 +829,7 @@
|
|
|
232
829
|
* @twin.org/engine-models bumped from 0.0.2-next.16 to 0.0.2-next.17
|
|
233
830
|
* @twin.org/engine-types bumped from 0.0.2-next.16 to 0.0.2-next.17
|
|
234
831
|
|
|
235
|
-
## [0.0.2-next.16](https://github.com/
|
|
832
|
+
## [0.0.2-next.16](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.15...engine-server-types-v0.0.2-next.16) (2025-09-25)
|
|
236
833
|
|
|
237
834
|
|
|
238
835
|
### Miscellaneous Chores
|
|
@@ -247,12 +844,12 @@
|
|
|
247
844
|
* @twin.org/engine-models bumped from 0.0.2-next.15 to 0.0.2-next.16
|
|
248
845
|
* @twin.org/engine-types bumped from 0.0.2-next.15 to 0.0.2-next.16
|
|
249
846
|
|
|
250
|
-
## [0.0.2-next.15](https://github.com/
|
|
847
|
+
## [0.0.2-next.15](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.14...engine-server-types-v0.0.2-next.15) (2025-09-24)
|
|
251
848
|
|
|
252
849
|
|
|
253
850
|
### Features
|
|
254
851
|
|
|
255
|
-
* update rights management and add authentication generators ([f728a1e](https://github.com/
|
|
852
|
+
* update rights management and add authentication generators ([f728a1e](https://github.com/iotaledger/twin-engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
|
|
256
853
|
|
|
257
854
|
|
|
258
855
|
### Dependencies
|
|
@@ -262,12 +859,12 @@
|
|
|
262
859
|
* @twin.org/engine-models bumped from 0.0.2-next.14 to 0.0.2-next.15
|
|
263
860
|
* @twin.org/engine-types bumped from 0.0.2-next.14 to 0.0.2-next.15
|
|
264
861
|
|
|
265
|
-
## [0.0.2-next.14](https://github.com/
|
|
862
|
+
## [0.0.2-next.14](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.13...engine-server-types-v0.0.2-next.14) (2025-09-19)
|
|
266
863
|
|
|
267
864
|
|
|
268
865
|
### Features
|
|
269
866
|
|
|
270
|
-
* add latest rights management components ([2d305c8](https://github.com/
|
|
867
|
+
* add latest rights management components ([2d305c8](https://github.com/iotaledger/twin-engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
|
|
271
868
|
|
|
272
869
|
|
|
273
870
|
### Dependencies
|
|
@@ -277,7 +874,7 @@
|
|
|
277
874
|
* @twin.org/engine-models bumped from 0.0.2-next.13 to 0.0.2-next.14
|
|
278
875
|
* @twin.org/engine-types bumped from 0.0.2-next.13 to 0.0.2-next.14
|
|
279
876
|
|
|
280
|
-
## [0.0.2-next.13](https://github.com/
|
|
877
|
+
## [0.0.2-next.13](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.12...engine-server-types-v0.0.2-next.13) (2025-09-08)
|
|
281
878
|
|
|
282
879
|
|
|
283
880
|
### Miscellaneous Chores
|
|
@@ -292,12 +889,12 @@
|
|
|
292
889
|
* @twin.org/engine-models bumped from 0.0.2-next.12 to 0.0.2-next.13
|
|
293
890
|
* @twin.org/engine-types bumped from 0.0.2-next.12 to 0.0.2-next.13
|
|
294
891
|
|
|
295
|
-
## [0.0.2-next.12](https://github.com/
|
|
892
|
+
## [0.0.2-next.12](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.11...engine-server-types-v0.0.2-next.12) (2025-09-05)
|
|
296
893
|
|
|
297
894
|
|
|
298
895
|
### Features
|
|
299
896
|
|
|
300
|
-
* add rights management negotiation ([84ef46b](https://github.com/
|
|
897
|
+
* add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
|
|
301
898
|
|
|
302
899
|
|
|
303
900
|
### Dependencies
|
|
@@ -307,12 +904,12 @@
|
|
|
307
904
|
* @twin.org/engine-models bumped from 0.0.2-next.11 to 0.0.2-next.12
|
|
308
905
|
* @twin.org/engine-types bumped from 0.0.2-next.11 to 0.0.2-next.12
|
|
309
906
|
|
|
310
|
-
## [0.0.2-next.11](https://github.com/
|
|
907
|
+
## [0.0.2-next.11](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.10...engine-server-types-v0.0.2-next.11) (2025-08-29)
|
|
311
908
|
|
|
312
909
|
|
|
313
910
|
### Features
|
|
314
911
|
|
|
315
|
-
* eslint migration to flat config ([6b978da](https://github.com/
|
|
912
|
+
* eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
|
|
316
913
|
|
|
317
914
|
|
|
318
915
|
### Dependencies
|
|
@@ -322,12 +919,12 @@
|
|
|
322
919
|
* @twin.org/engine-models bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
323
920
|
* @twin.org/engine-types bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
324
921
|
|
|
325
|
-
## [0.0.2-next.10](https://github.com/
|
|
922
|
+
## [0.0.2-next.10](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.9...engine-server-types-v0.0.2-next.10) (2025-08-26)
|
|
326
923
|
|
|
327
924
|
|
|
328
925
|
### Features
|
|
329
926
|
|
|
330
|
-
* add data space connector ([a824d99](https://github.com/
|
|
927
|
+
* add data space connector ([a824d99](https://github.com/iotaledger/twin-engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
|
|
331
928
|
|
|
332
929
|
|
|
333
930
|
### Dependencies
|
|
@@ -337,7 +934,7 @@
|
|
|
337
934
|
* @twin.org/engine-models bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
338
935
|
* @twin.org/engine-types bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
339
936
|
|
|
340
|
-
## [0.0.2-next.9](https://github.com/
|
|
937
|
+
## [0.0.2-next.9](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.8...engine-server-types-v0.0.2-next.9) (2025-08-25)
|
|
341
938
|
|
|
342
939
|
|
|
343
940
|
### Miscellaneous Chores
|
|
@@ -352,12 +949,12 @@
|
|
|
352
949
|
* @twin.org/engine-models bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
353
950
|
* @twin.org/engine-types bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
354
951
|
|
|
355
|
-
## [0.0.2-next.8](https://github.com/
|
|
952
|
+
## [0.0.2-next.8](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.7...engine-server-types-v0.0.2-next.8) (2025-08-22)
|
|
356
953
|
|
|
357
954
|
|
|
358
955
|
### Features
|
|
359
956
|
|
|
360
|
-
* add rights management modules ([e02cadc](https://github.com/
|
|
957
|
+
* add rights management modules ([e02cadc](https://github.com/iotaledger/twin-engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
|
|
361
958
|
|
|
362
959
|
|
|
363
960
|
### Dependencies
|
|
@@ -367,7 +964,7 @@
|
|
|
367
964
|
* @twin.org/engine-models bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
368
965
|
* @twin.org/engine-types bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
369
966
|
|
|
370
|
-
## [0.0.2-next.7](https://github.com/
|
|
967
|
+
## [0.0.2-next.7](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.6...engine-server-types-v0.0.2-next.7) (2025-08-22)
|
|
371
968
|
|
|
372
969
|
|
|
373
970
|
### Miscellaneous Chores
|
|
@@ -382,12 +979,12 @@
|
|
|
382
979
|
* @twin.org/engine-models bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
383
980
|
* @twin.org/engine-types bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
384
981
|
|
|
385
|
-
## [0.0.2-next.6](https://github.com/
|
|
982
|
+
## [0.0.2-next.6](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.5...engine-server-types-v0.0.2-next.6) (2025-08-21)
|
|
386
983
|
|
|
387
984
|
|
|
388
985
|
### Features
|
|
389
986
|
|
|
390
|
-
* update framework core ([acc0f8d](https://github.com/
|
|
987
|
+
* update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
|
|
391
988
|
|
|
392
989
|
|
|
393
990
|
### Dependencies
|
|
@@ -397,12 +994,12 @@
|
|
|
397
994
|
* @twin.org/engine-models bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
398
995
|
* @twin.org/engine-types bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
399
996
|
|
|
400
|
-
## [0.0.2-next.5](https://github.com/
|
|
997
|
+
## [0.0.2-next.5](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.4...engine-server-types-v0.0.2-next.5) (2025-08-14)
|
|
401
998
|
|
|
402
999
|
|
|
403
1000
|
### Features
|
|
404
1001
|
|
|
405
|
-
* add synchronised storage support ([5142e34](https://github.com/
|
|
1002
|
+
* add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
|
|
406
1003
|
|
|
407
1004
|
|
|
408
1005
|
### Dependencies
|
|
@@ -412,12 +1009,12 @@
|
|
|
412
1009
|
* @twin.org/engine-models bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
413
1010
|
* @twin.org/engine-types bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
414
1011
|
|
|
415
|
-
## [0.0.2-next.4](https://github.com/
|
|
1012
|
+
## [0.0.2-next.4](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.3...engine-server-types-v0.0.2-next.4) (2025-07-25)
|
|
416
1013
|
|
|
417
1014
|
|
|
418
1015
|
### Features
|
|
419
1016
|
|
|
420
|
-
* add default logging component for web server ([8ad94f0](https://github.com/
|
|
1017
|
+
* add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
|
|
421
1018
|
|
|
422
1019
|
|
|
423
1020
|
### Dependencies
|
|
@@ -427,7 +1024,7 @@
|
|
|
427
1024
|
* @twin.org/engine-models bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
428
1025
|
* @twin.org/engine-types bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
429
1026
|
|
|
430
|
-
## [0.0.2-next.3](https://github.com/
|
|
1027
|
+
## [0.0.2-next.3](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.2...engine-server-types-v0.0.2-next.3) (2025-07-24)
|
|
431
1028
|
|
|
432
1029
|
|
|
433
1030
|
### Miscellaneous Chores
|
|
@@ -442,12 +1039,12 @@
|
|
|
442
1039
|
* @twin.org/engine-models bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
443
1040
|
* @twin.org/engine-types bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
444
1041
|
|
|
445
|
-
## [0.0.2-next.2](https://github.com/
|
|
1042
|
+
## [0.0.2-next.2](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.1...engine-server-types-v0.0.2-next.2) (2025-07-21)
|
|
446
1043
|
|
|
447
1044
|
|
|
448
1045
|
### Features
|
|
449
1046
|
|
|
450
|
-
* add rest clients as components ([c6f956a](https://github.com/
|
|
1047
|
+
* add rest clients as components ([c6f956a](https://github.com/iotaledger/twin-engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
|
|
451
1048
|
|
|
452
1049
|
|
|
453
1050
|
### Dependencies
|
|
@@ -457,19 +1054,19 @@
|
|
|
457
1054
|
* @twin.org/engine-models bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
458
1055
|
* @twin.org/engine-types bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
459
1056
|
|
|
460
|
-
## [0.0.2-next.1](https://github.com/
|
|
1057
|
+
## [0.0.2-next.1](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.2-next.0...engine-server-types-v0.0.2-next.1) (2025-07-11)
|
|
461
1058
|
|
|
462
1059
|
|
|
463
1060
|
### Features
|
|
464
1061
|
|
|
465
|
-
* add auth admin component ([201cd06](https://github.com/
|
|
466
|
-
* add federated catalogue ([1b15dd0](https://github.com/
|
|
467
|
-
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/
|
|
468
|
-
* add task scheduler ([0951107](https://github.com/
|
|
469
|
-
* modifying the engine to run the new services ([#10](https://github.com/
|
|
470
|
-
* switch to devDeps ([32832ac](https://github.com/
|
|
471
|
-
* update dependencies ([97c9f64](https://github.com/
|
|
472
|
-
* use shared store mechanism ([#2](https://github.com/
|
|
1062
|
+
* add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
|
|
1063
|
+
* add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
|
|
1064
|
+
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
|
|
1065
|
+
* add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
|
|
1066
|
+
* modifying the engine to run the new services ([#10](https://github.com/iotaledger/twin-engine/issues/10)) ([6f7141f](https://github.com/iotaledger/twin-engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
|
|
1067
|
+
* switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
|
|
1068
|
+
* update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
|
|
1069
|
+
* use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
|
|
473
1070
|
|
|
474
1071
|
|
|
475
1072
|
### Dependencies
|
|
@@ -484,15 +1081,15 @@
|
|
|
484
1081
|
|
|
485
1082
|
### Features
|
|
486
1083
|
|
|
487
|
-
* add federated catalogue ([1b15dd0](https://github.com/
|
|
488
|
-
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/
|
|
489
|
-
* add task scheduler ([0951107](https://github.com/
|
|
490
|
-
* modifying the engine to run the new services ([#10](https://github.com/
|
|
491
|
-
* release to production ([3a4acd1](https://github.com/
|
|
492
|
-
* release to production ([5559958](https://github.com/
|
|
493
|
-
* switch to devDeps ([32832ac](https://github.com/
|
|
494
|
-
* update dependencies ([97c9f64](https://github.com/
|
|
495
|
-
* use shared store mechanism ([#2](https://github.com/
|
|
1084
|
+
* add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
|
|
1085
|
+
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
|
|
1086
|
+
* add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
|
|
1087
|
+
* modifying the engine to run the new services ([#10](https://github.com/iotaledger/twin-engine/issues/10)) ([6f7141f](https://github.com/iotaledger/twin-engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
|
|
1088
|
+
* release to production ([3a4acd1](https://github.com/iotaledger/twin-engine/commit/3a4acd1f6c66b841d80b6fd3bc1a439a77148fa5))
|
|
1089
|
+
* release to production ([5559958](https://github.com/iotaledger/twin-engine/commit/5559958e2128e6ec3a81e779d1ebd3f370bbb081))
|
|
1090
|
+
* switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
|
|
1091
|
+
* update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
|
|
1092
|
+
* use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
|
|
496
1093
|
|
|
497
1094
|
|
|
498
1095
|
### Dependencies
|
|
@@ -502,7 +1099,7 @@
|
|
|
502
1099
|
* @twin.org/engine-models bumped from 0.0.1-next.84 to 0.0.1
|
|
503
1100
|
* @twin.org/engine-types bumped from 0.0.1-next.84 to 0.0.1
|
|
504
1101
|
|
|
505
|
-
## [0.0.1-next.84](https://github.com/
|
|
1102
|
+
## [0.0.1-next.84](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.83...engine-server-types-v0.0.1-next.84) (2025-07-11)
|
|
506
1103
|
|
|
507
1104
|
|
|
508
1105
|
### Miscellaneous Chores
|
|
@@ -517,18 +1114,18 @@
|
|
|
517
1114
|
* @twin.org/engine-models bumped from 0.0.1-next.83 to 0.0.1-next.84
|
|
518
1115
|
* @twin.org/engine-types bumped from 0.0.1-next.83 to 0.0.1-next.84
|
|
519
1116
|
|
|
520
|
-
## [0.0.1-next.83](https://github.com/
|
|
1117
|
+
## [0.0.1-next.83](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.82...engine-server-types-v0.0.1-next.83) (2025-07-10)
|
|
521
1118
|
|
|
522
1119
|
|
|
523
1120
|
### Features
|
|
524
1121
|
|
|
525
|
-
* add federated catalogue ([1b15dd0](https://github.com/
|
|
526
|
-
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/
|
|
527
|
-
* add task scheduler ([0951107](https://github.com/
|
|
528
|
-
* modifying the engine to run the new services ([#10](https://github.com/
|
|
529
|
-
* switch to devDeps ([32832ac](https://github.com/
|
|
530
|
-
* update dependencies ([97c9f64](https://github.com/
|
|
531
|
-
* use shared store mechanism ([#2](https://github.com/
|
|
1122
|
+
* add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
|
|
1123
|
+
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
|
|
1124
|
+
* add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
|
|
1125
|
+
* modifying the engine to run the new services ([#10](https://github.com/iotaledger/twin-engine/issues/10)) ([6f7141f](https://github.com/iotaledger/twin-engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
|
|
1126
|
+
* switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
|
|
1127
|
+
* update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
|
|
1128
|
+
* use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
|
|
532
1129
|
|
|
533
1130
|
|
|
534
1131
|
### Dependencies
|
|
@@ -538,7 +1135,7 @@
|
|
|
538
1135
|
* @twin.org/engine-models bumped from 0.0.1-next.81 to 0.0.1-next.83
|
|
539
1136
|
* @twin.org/engine-types bumped from 0.0.1-next.81 to 0.0.1-next.83
|
|
540
1137
|
|
|
541
|
-
## [0.0.1-next.81](https://github.com/
|
|
1138
|
+
## [0.0.1-next.81](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.80...engine-server-types-v0.0.1-next.81) (2025-07-07)
|
|
542
1139
|
|
|
543
1140
|
|
|
544
1141
|
### Miscellaneous Chores
|
|
@@ -553,12 +1150,12 @@
|
|
|
553
1150
|
* @twin.org/engine-models bumped from 0.0.1-next.80 to 0.0.1-next.81
|
|
554
1151
|
* @twin.org/engine-types bumped from 0.0.1-next.80 to 0.0.1-next.81
|
|
555
1152
|
|
|
556
|
-
## [0.0.1-next.80](https://github.com/
|
|
1153
|
+
## [0.0.1-next.80](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.79...engine-server-types-v0.0.1-next.80) (2025-06-23)
|
|
557
1154
|
|
|
558
1155
|
|
|
559
1156
|
### Features
|
|
560
1157
|
|
|
561
|
-
* add task scheduler ([0951107](https://github.com/
|
|
1158
|
+
* add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
|
|
562
1159
|
|
|
563
1160
|
|
|
564
1161
|
### Dependencies
|
|
@@ -568,7 +1165,7 @@
|
|
|
568
1165
|
* @twin.org/engine-models bumped from 0.0.1-next.79 to 0.0.1-next.80
|
|
569
1166
|
* @twin.org/engine-types bumped from 0.0.1-next.79 to 0.0.1-next.80
|
|
570
1167
|
|
|
571
|
-
## [0.0.1-next.79](https://github.com/
|
|
1168
|
+
## [0.0.1-next.79](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.78...engine-server-types-v0.0.1-next.79) (2025-06-18)
|
|
572
1169
|
|
|
573
1170
|
|
|
574
1171
|
### Miscellaneous Chores
|
|
@@ -583,7 +1180,7 @@
|
|
|
583
1180
|
* @twin.org/engine-models bumped from 0.0.1-next.78 to 0.0.1-next.79
|
|
584
1181
|
* @twin.org/engine-types bumped from 0.0.1-next.78 to 0.0.1-next.79
|
|
585
1182
|
|
|
586
|
-
## [0.0.1-next.78](https://github.com/
|
|
1183
|
+
## [0.0.1-next.78](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.77...engine-server-types-v0.0.1-next.78) (2025-06-18)
|
|
587
1184
|
|
|
588
1185
|
|
|
589
1186
|
### Miscellaneous Chores
|
|
@@ -598,7 +1195,7 @@
|
|
|
598
1195
|
* @twin.org/engine-models bumped from 0.0.1-next.77 to 0.0.1-next.78
|
|
599
1196
|
* @twin.org/engine-types bumped from 0.0.1-next.77 to 0.0.1-next.78
|
|
600
1197
|
|
|
601
|
-
## [0.0.1-next.77](https://github.com/
|
|
1198
|
+
## [0.0.1-next.77](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.76...engine-server-types-v0.0.1-next.77) (2025-06-18)
|
|
602
1199
|
|
|
603
1200
|
|
|
604
1201
|
### Miscellaneous Chores
|
|
@@ -613,12 +1210,12 @@
|
|
|
613
1210
|
* @twin.org/engine-models bumped from 0.0.1-next.76 to 0.0.1-next.77
|
|
614
1211
|
* @twin.org/engine-types bumped from 0.0.1-next.76 to 0.0.1-next.77
|
|
615
1212
|
|
|
616
|
-
## [0.0.1-next.76](https://github.com/
|
|
1213
|
+
## [0.0.1-next.76](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.75...engine-server-types-v0.0.1-next.76) (2025-06-12)
|
|
617
1214
|
|
|
618
1215
|
|
|
619
1216
|
### Features
|
|
620
1217
|
|
|
621
|
-
* update dependencies ([97c9f64](https://github.com/
|
|
1218
|
+
* update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
|
|
622
1219
|
|
|
623
1220
|
|
|
624
1221
|
### Dependencies
|
|
@@ -628,12 +1225,12 @@
|
|
|
628
1225
|
* @twin.org/engine-models bumped from 0.0.1-next.75 to 0.0.1-next.76
|
|
629
1226
|
* @twin.org/engine-types bumped from 0.0.1-next.75 to 0.0.1-next.76
|
|
630
1227
|
|
|
631
|
-
## [0.0.1-next.75](https://github.com/
|
|
1228
|
+
## [0.0.1-next.75](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.74...engine-server-types-v0.0.1-next.75) (2025-05-29)
|
|
632
1229
|
|
|
633
1230
|
|
|
634
1231
|
### Features
|
|
635
1232
|
|
|
636
|
-
* modifying the engine to run the new services ([#10](https://github.com/
|
|
1233
|
+
* modifying the engine to run the new services ([#10](https://github.com/iotaledger/twin-engine/issues/10)) ([6f7141f](https://github.com/iotaledger/twin-engine/commit/6f7141fe0a6d05c725066b274bcc18b5490e580b))
|
|
637
1234
|
|
|
638
1235
|
|
|
639
1236
|
### Dependencies
|
|
@@ -643,12 +1240,12 @@
|
|
|
643
1240
|
* @twin.org/engine-models bumped from 0.0.1-next.74 to 0.0.1-next.75
|
|
644
1241
|
* @twin.org/engine-types bumped from 0.0.1-next.74 to 0.0.1-next.75
|
|
645
1242
|
|
|
646
|
-
## [0.0.1-next.74](https://github.com/
|
|
1243
|
+
## [0.0.1-next.74](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.73...engine-server-types-v0.0.1-next.74) (2025-05-23)
|
|
647
1244
|
|
|
648
1245
|
|
|
649
1246
|
### Features
|
|
650
1247
|
|
|
651
|
-
* add federated catalogue ([1b15dd0](https://github.com/
|
|
1248
|
+
* add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
|
|
652
1249
|
|
|
653
1250
|
|
|
654
1251
|
### Dependencies
|
|
@@ -658,7 +1255,7 @@
|
|
|
658
1255
|
* @twin.org/engine-models bumped from 0.0.1-next.73 to 0.0.1-next.74
|
|
659
1256
|
* @twin.org/engine-types bumped from 0.0.1-next.73 to 0.0.1-next.74
|
|
660
1257
|
|
|
661
|
-
## [0.0.1-next.73](https://github.com/
|
|
1258
|
+
## [0.0.1-next.73](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.72...engine-server-types-v0.0.1-next.73) (2025-05-22)
|
|
662
1259
|
|
|
663
1260
|
|
|
664
1261
|
### Miscellaneous Chores
|
|
@@ -673,13 +1270,13 @@
|
|
|
673
1270
|
* @twin.org/engine-models bumped from 0.0.1-next.72 to 0.0.1-next.73
|
|
674
1271
|
* @twin.org/engine-types bumped from 0.0.1-next.72 to 0.0.1-next.73
|
|
675
1272
|
|
|
676
|
-
## [0.0.1-next.72](https://github.com/
|
|
1273
|
+
## [0.0.1-next.72](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.71...engine-server-types-v0.0.1-next.72) (2025-05-06)
|
|
677
1274
|
|
|
678
1275
|
|
|
679
1276
|
### Features
|
|
680
1277
|
|
|
681
|
-
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/
|
|
682
|
-
* use shared store mechanism ([#2](https://github.com/
|
|
1278
|
+
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
|
|
1279
|
+
* use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
|
|
683
1280
|
|
|
684
1281
|
|
|
685
1282
|
### Dependencies
|
|
@@ -689,7 +1286,7 @@
|
|
|
689
1286
|
* @twin.org/engine-models bumped from 0.0.1-next.71 to 0.0.1-next.72
|
|
690
1287
|
* @twin.org/engine-types bumped from 0.0.1-next.71 to 0.0.1-next.72
|
|
691
1288
|
|
|
692
|
-
## [0.0.1-next.71](https://github.com/
|
|
1289
|
+
## [0.0.1-next.71](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.70...engine-server-types-v0.0.1-next.71) (2025-05-06)
|
|
693
1290
|
|
|
694
1291
|
|
|
695
1292
|
### Miscellaneous Chores
|
|
@@ -704,7 +1301,7 @@
|
|
|
704
1301
|
* @twin.org/engine-models bumped from 0.0.1-next.70 to 0.0.1-next.71
|
|
705
1302
|
* @twin.org/engine-types bumped from 0.0.1-next.70 to 0.0.1-next.71
|
|
706
1303
|
|
|
707
|
-
## [0.0.1-next.70](https://github.com/
|
|
1304
|
+
## [0.0.1-next.70](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.69...engine-server-types-v0.0.1-next.70) (2025-04-28)
|
|
708
1305
|
|
|
709
1306
|
|
|
710
1307
|
### Miscellaneous Chores
|
|
@@ -719,7 +1316,7 @@
|
|
|
719
1316
|
* @twin.org/engine-models bumped from 0.0.1-next.69 to 0.0.1-next.70
|
|
720
1317
|
* @twin.org/engine-types bumped from 0.0.1-next.69 to 0.0.1-next.70
|
|
721
1318
|
|
|
722
|
-
## [0.0.1-next.69](https://github.com/
|
|
1319
|
+
## [0.0.1-next.69](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.68...engine-server-types-v0.0.1-next.69) (2025-04-25)
|
|
723
1320
|
|
|
724
1321
|
|
|
725
1322
|
### Miscellaneous Chores
|
|
@@ -734,12 +1331,12 @@
|
|
|
734
1331
|
* @twin.org/engine-models bumped from 0.0.1-next.68 to 0.0.1-next.69
|
|
735
1332
|
* @twin.org/engine-types bumped from 0.0.1-next.68 to 0.0.1-next.69
|
|
736
1333
|
|
|
737
|
-
## [0.0.1-next.68](https://github.com/
|
|
1334
|
+
## [0.0.1-next.68](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.67...engine-server-types-v0.0.1-next.68) (2025-04-17)
|
|
738
1335
|
|
|
739
1336
|
|
|
740
1337
|
### Features
|
|
741
1338
|
|
|
742
|
-
* use shared store mechanism ([#2](https://github.com/
|
|
1339
|
+
* use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
|
|
743
1340
|
|
|
744
1341
|
|
|
745
1342
|
### Dependencies
|
|
@@ -749,12 +1346,12 @@
|
|
|
749
1346
|
* @twin.org/engine-models bumped from 0.0.1-next.67 to 0.0.1-next.68
|
|
750
1347
|
* @twin.org/engine-types bumped from 0.0.1-next.67 to 0.0.1-next.68
|
|
751
1348
|
|
|
752
|
-
## [0.0.1-next.67](https://github.com/
|
|
1349
|
+
## [0.0.1-next.67](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.1-next.66...engine-server-types-v0.0.1-next.67) (2025-03-28)
|
|
753
1350
|
|
|
754
1351
|
|
|
755
1352
|
### Features
|
|
756
1353
|
|
|
757
|
-
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/
|
|
1354
|
+
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
|
|
758
1355
|
|
|
759
1356
|
|
|
760
1357
|
### Dependencies
|