@twin.org/engine-server-types 0.0.3-next.4 → 0.0.3-next.41
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 +730 -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,623 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.0.3-next.
|
|
3
|
+
## [0.0.3-next.41](https://github.com/iotaledger/twin-engine/compare/engine-server-types-v0.0.3-next.40...engine-server-types-v0.0.3-next.41) (2026-05-26)
|
|
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.40 to 0.0.3-next.41
|
|
16
|
+
* @twin.org/engine-types bumped from 0.0.3-next.40 to 0.0.3-next.41
|
|
17
|
+
|
|
18
|
+
## [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)
|
|
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.39 to 0.0.3-next.40
|
|
31
|
+
* @twin.org/engine-types bumped from 0.0.3-next.39 to 0.0.3-next.40
|
|
32
|
+
|
|
33
|
+
## [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)
|
|
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.38 to 0.0.3-next.39
|
|
46
|
+
* @twin.org/engine-types bumped from 0.0.3-next.38 to 0.0.3-next.39
|
|
47
|
+
|
|
48
|
+
## [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)
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
### Miscellaneous Chores
|
|
52
|
+
|
|
53
|
+
* **engine-server-types:** Synchronize repo versions
|
|
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.37 to 0.0.3-next.38
|
|
61
|
+
* @twin.org/engine-types bumped from 0.0.3-next.37 to 0.0.3-next.38
|
|
62
|
+
|
|
63
|
+
## [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)
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
### Features
|
|
67
|
+
|
|
68
|
+
* typescript 6 update ([b227f52](https://github.com/iotaledger/twin-engine/commit/b227f5271b18ac627b932ea8e59d2879ff01ebd7))
|
|
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.36 to 0.0.3-next.37
|
|
76
|
+
* @twin.org/engine-types bumped from 0.0.3-next.36 to 0.0.3-next.37
|
|
77
|
+
|
|
78
|
+
## [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)
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
### Miscellaneous Chores
|
|
82
|
+
|
|
83
|
+
* **engine-server-types:** Synchronize repo versions
|
|
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.35 to 0.0.3-next.36
|
|
91
|
+
* @twin.org/engine-types bumped from 0.0.3-next.35 to 0.0.3-next.36
|
|
92
|
+
|
|
93
|
+
## [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)
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
### Bug Fixes
|
|
97
|
+
|
|
98
|
+
* constructing TenantProcessor ([4dad604](https://github.com/iotaledger/twin-engine/commit/4dad604c0e424a3ffa65f3d6cef173058b21ec76))
|
|
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.34 to 0.0.3-next.35
|
|
106
|
+
* @twin.org/engine-types bumped from 0.0.3-next.34 to 0.0.3-next.35
|
|
107
|
+
|
|
108
|
+
## [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)
|
|
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.33 to 0.0.3-next.34
|
|
121
|
+
* @twin.org/engine-types bumped from 0.0.3-next.33 to 0.0.3-next.34
|
|
122
|
+
|
|
123
|
+
## [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)
|
|
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.32 to 0.0.3-next.33
|
|
136
|
+
* @twin.org/engine-types bumped from 0.0.3-next.32 to 0.0.3-next.33
|
|
137
|
+
|
|
138
|
+
## [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)
|
|
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.31 to 0.0.3-next.32
|
|
151
|
+
* @twin.org/engine-types bumped from 0.0.3-next.31 to 0.0.3-next.32
|
|
152
|
+
|
|
153
|
+
## [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)
|
|
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.30 to 0.0.3-next.31
|
|
166
|
+
* @twin.org/engine-types bumped from 0.0.3-next.30 to 0.0.3-next.31
|
|
167
|
+
|
|
168
|
+
## [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)
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
### Miscellaneous Chores
|
|
172
|
+
|
|
173
|
+
* **engine-server-types:** Synchronize repo versions
|
|
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.29 to 0.0.3-next.30
|
|
181
|
+
* @twin.org/engine-types bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
182
|
+
|
|
183
|
+
## [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)
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
### Features
|
|
187
|
+
|
|
188
|
+
* add authentication rate and audit services ([#95](https://github.com/iotaledger/twin-engine/issues/95)) ([55e2b08](https://github.com/iotaledger/twin-engine/commit/55e2b089661529e0556115817cc435cc6e4292cc))
|
|
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.28 to 0.0.3-next.29
|
|
196
|
+
* @twin.org/engine-types bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
197
|
+
|
|
198
|
+
## [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)
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
### Miscellaneous Chores
|
|
202
|
+
|
|
203
|
+
* **engine-server-types:** Synchronize repo versions
|
|
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.27 to 0.0.3-next.28
|
|
211
|
+
* @twin.org/engine-types bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
212
|
+
|
|
213
|
+
## [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)
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
### Features
|
|
217
|
+
|
|
218
|
+
* update dependencies ([e6ebe42](https://github.com/iotaledger/twin-engine/commit/e6ebe42b9d61066227ad8b45dae14c8f8615b760))
|
|
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.26 to 0.0.3-next.27
|
|
226
|
+
* @twin.org/engine-types bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
227
|
+
|
|
228
|
+
## [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)
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
### Miscellaneous Chores
|
|
232
|
+
|
|
233
|
+
* **engine-server-types:** Synchronize repo versions
|
|
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.25 to 0.0.3-next.26
|
|
241
|
+
* @twin.org/engine-types bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
242
|
+
|
|
243
|
+
## [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)
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
### Features
|
|
247
|
+
|
|
248
|
+
* 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))
|
|
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.24 to 0.0.3-next.25
|
|
256
|
+
* @twin.org/engine-types bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
257
|
+
|
|
258
|
+
## [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)
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
### Miscellaneous Chores
|
|
262
|
+
|
|
263
|
+
* **engine-server-types:** Synchronize repo versions
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
### Dependencies
|
|
267
|
+
|
|
268
|
+
* The following workspace dependencies were updated
|
|
269
|
+
* dependencies
|
|
270
|
+
* @twin.org/engine-models bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
271
|
+
* @twin.org/engine-types bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
272
|
+
|
|
273
|
+
## [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)
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
### Features
|
|
277
|
+
|
|
278
|
+
* add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
|
|
279
|
+
* add context id features ([#51](https://github.com/iotaledger/twin-engine/issues/51)) ([eaef180](https://github.com/iotaledger/twin-engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
|
|
280
|
+
* add data space connector ([a824d99](https://github.com/iotaledger/twin-engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
|
|
281
|
+
* add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
|
|
282
|
+
* add fed cat filters ([a52cbf1](https://github.com/iotaledger/twin-engine/commit/a52cbf1eaf85e6cad61de9ea9448932fb5ae0f43))
|
|
283
|
+
* add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
|
|
284
|
+
* add hosting component ([#70](https://github.com/iotaledger/twin-engine/issues/70)) ([2ab0dec](https://github.com/iotaledger/twin-engine/commit/2ab0dec8fdb979395c639b73f394a40a0dd7e55a))
|
|
285
|
+
* add latest rights management components ([2d305c8](https://github.com/iotaledger/twin-engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
|
|
286
|
+
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
|
|
287
|
+
* add rest clients as components ([c6f956a](https://github.com/iotaledger/twin-engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
|
|
288
|
+
* add rights management modules ([e02cadc](https://github.com/iotaledger/twin-engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
|
|
289
|
+
* add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
|
|
290
|
+
* add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
|
|
291
|
+
* add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
|
|
292
|
+
* add trust and rights management plugins ([eea0807](https://github.com/iotaledger/twin-engine/commit/eea0807601833220bd9fd8605b5e4383fbc0ebae))
|
|
293
|
+
* add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
|
|
294
|
+
* context id handlers repopulated after engine clone ([9712e32](https://github.com/iotaledger/twin-engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
|
|
295
|
+
* eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
|
|
296
|
+
* 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))
|
|
297
|
+
* multi instance component support ([#83](https://github.com/iotaledger/twin-engine/issues/83)) ([6012b50](https://github.com/iotaledger/twin-engine/commit/6012b50959df5af893f05516d42eea2e0800b31a))
|
|
298
|
+
* remove additional identity auth components ([409b2e6](https://github.com/iotaledger/twin-engine/commit/409b2e6a5a543d0795b01916349b39922afb6d88))
|
|
299
|
+
* remove authentication generator components ([#67](https://github.com/iotaledger/twin-engine/issues/67)) ([62f7984](https://github.com/iotaledger/twin-engine/commit/62f798468f567fdbf648401aa0dc51cda871c913))
|
|
300
|
+
* remove dap and darp ([d568c4f](https://github.com/iotaledger/twin-engine/commit/d568c4fc58a3159378e1d65f93228ae84f34a31d))
|
|
301
|
+
* simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
|
|
302
|
+
* standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
|
|
303
|
+
* switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
|
|
304
|
+
* update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
|
|
305
|
+
* update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
|
|
306
|
+
* update rights management and add authentication generators ([f728a1e](https://github.com/iotaledger/twin-engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
|
|
307
|
+
* upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
|
|
308
|
+
* use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
|
|
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.22 to 0.0.3-next.23
|
|
316
|
+
* @twin.org/engine-types bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
317
|
+
|
|
318
|
+
## [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)
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
### Miscellaneous Chores
|
|
322
|
+
|
|
323
|
+
* **engine-server-types:** Synchronize repo versions
|
|
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.21 to 0.0.3-next.22
|
|
331
|
+
* @twin.org/engine-types bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
332
|
+
|
|
333
|
+
## [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)
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
### Features
|
|
337
|
+
|
|
338
|
+
* multi instance component support ([#83](https://github.com/iotaledger/twin-engine/issues/83)) ([6012b50](https://github.com/iotaledger/twin-engine/commit/6012b50959df5af893f05516d42eea2e0800b31a))
|
|
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.20 to 0.0.3-next.21
|
|
346
|
+
* @twin.org/engine-types bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
347
|
+
|
|
348
|
+
## [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)
|
|
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.19 to 0.0.3-next.20
|
|
361
|
+
* @twin.org/engine-types bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
362
|
+
|
|
363
|
+
## [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)
|
|
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.18 to 0.0.3-next.19
|
|
376
|
+
* @twin.org/engine-types bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
377
|
+
|
|
378
|
+
## [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)
|
|
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.17 to 0.0.3-next.18
|
|
391
|
+
* @twin.org/engine-types bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
392
|
+
|
|
393
|
+
## [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)
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
### Miscellaneous Chores
|
|
397
|
+
|
|
398
|
+
* **engine-server-types:** Synchronize repo versions
|
|
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.16 to 0.0.3-next.17
|
|
406
|
+
* @twin.org/engine-types bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
407
|
+
|
|
408
|
+
## [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)
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
### Features
|
|
412
|
+
|
|
413
|
+
* remove dap and darp ([d568c4f](https://github.com/iotaledger/twin-engine/commit/d568c4fc58a3159378e1d65f93228ae84f34a31d))
|
|
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.15 to 0.0.3-next.16
|
|
421
|
+
* @twin.org/engine-types bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
422
|
+
|
|
423
|
+
## [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)
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
### Features
|
|
427
|
+
|
|
428
|
+
* add hosting component ([#70](https://github.com/iotaledger/twin-engine/issues/70)) ([2ab0dec](https://github.com/iotaledger/twin-engine/commit/2ab0dec8fdb979395c639b73f394a40a0dd7e55a))
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
### Dependencies
|
|
432
|
+
|
|
433
|
+
* The following workspace dependencies were updated
|
|
434
|
+
* dependencies
|
|
435
|
+
* @twin.org/engine-models bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
436
|
+
* @twin.org/engine-types bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
437
|
+
|
|
438
|
+
## [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)
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
### Features
|
|
442
|
+
|
|
443
|
+
* add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
|
|
444
|
+
* add context id features ([#51](https://github.com/iotaledger/twin-engine/issues/51)) ([eaef180](https://github.com/iotaledger/twin-engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
|
|
445
|
+
* add data space connector ([a824d99](https://github.com/iotaledger/twin-engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
|
|
446
|
+
* add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
|
|
447
|
+
* add fed cat filters ([a52cbf1](https://github.com/iotaledger/twin-engine/commit/a52cbf1eaf85e6cad61de9ea9448932fb5ae0f43))
|
|
448
|
+
* add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
|
|
449
|
+
* add latest rights management components ([2d305c8](https://github.com/iotaledger/twin-engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
|
|
450
|
+
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
|
|
451
|
+
* add rest clients as components ([c6f956a](https://github.com/iotaledger/twin-engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
|
|
452
|
+
* add rights management modules ([e02cadc](https://github.com/iotaledger/twin-engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
|
|
453
|
+
* add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
|
|
454
|
+
* add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
|
|
455
|
+
* add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
|
|
456
|
+
* add trust and rights management plugins ([eea0807](https://github.com/iotaledger/twin-engine/commit/eea0807601833220bd9fd8605b5e4383fbc0ebae))
|
|
457
|
+
* add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
|
|
458
|
+
* context id handlers repopulated after engine clone ([9712e32](https://github.com/iotaledger/twin-engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
|
|
459
|
+
* eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
|
|
460
|
+
* 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))
|
|
461
|
+
* remove additional identity auth components ([409b2e6](https://github.com/iotaledger/twin-engine/commit/409b2e6a5a543d0795b01916349b39922afb6d88))
|
|
462
|
+
* remove authentication generator components ([#67](https://github.com/iotaledger/twin-engine/issues/67)) ([62f7984](https://github.com/iotaledger/twin-engine/commit/62f798468f567fdbf648401aa0dc51cda871c913))
|
|
463
|
+
* simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
|
|
464
|
+
* standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
|
|
465
|
+
* switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
|
|
466
|
+
* update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
|
|
467
|
+
* update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
|
|
468
|
+
* update rights management and add authentication generators ([f728a1e](https://github.com/iotaledger/twin-engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
|
|
469
|
+
* upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
|
|
470
|
+
* use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
|
|
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.13 to 0.0.3-next.14
|
|
478
|
+
* @twin.org/engine-types bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
479
|
+
|
|
480
|
+
## [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)
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
### Features
|
|
484
|
+
|
|
485
|
+
* remove authentication generator components ([#67](https://github.com/iotaledger/twin-engine/issues/67)) ([62f7984](https://github.com/iotaledger/twin-engine/commit/62f798468f567fdbf648401aa0dc51cda871c913))
|
|
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.12 to 0.0.3-next.13
|
|
493
|
+
* @twin.org/engine-types bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
494
|
+
|
|
495
|
+
## [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)
|
|
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.11 to 0.0.3-next.12
|
|
508
|
+
* @twin.org/engine-types bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
509
|
+
|
|
510
|
+
## [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)
|
|
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.10 to 0.0.3-next.11
|
|
523
|
+
* @twin.org/engine-types bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
524
|
+
|
|
525
|
+
## [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)
|
|
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.9 to 0.0.3-next.10
|
|
538
|
+
* @twin.org/engine-types bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
539
|
+
|
|
540
|
+
## [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)
|
|
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.8 to 0.0.3-next.9
|
|
553
|
+
* @twin.org/engine-types bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
554
|
+
|
|
555
|
+
## [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)
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
### Miscellaneous Chores
|
|
559
|
+
|
|
560
|
+
* **engine-server-types:** Synchronize repo versions
|
|
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.7 to 0.0.3-next.8
|
|
568
|
+
* @twin.org/engine-types bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
569
|
+
|
|
570
|
+
## [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)
|
|
571
|
+
|
|
572
|
+
|
|
573
|
+
### Features
|
|
574
|
+
|
|
575
|
+
* add trust and rights management plugins ([eea0807](https://github.com/iotaledger/twin-engine/commit/eea0807601833220bd9fd8605b5e4383fbc0ebae))
|
|
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.6 to 0.0.3-next.7
|
|
583
|
+
* @twin.org/engine-types bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
584
|
+
|
|
585
|
+
## [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)
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
### Features
|
|
589
|
+
|
|
590
|
+
* add fed cat filters ([a52cbf1](https://github.com/iotaledger/twin-engine/commit/a52cbf1eaf85e6cad61de9ea9448932fb5ae0f43))
|
|
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.5 to 0.0.3-next.6
|
|
598
|
+
* @twin.org/engine-types bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
599
|
+
|
|
600
|
+
## [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)
|
|
601
|
+
|
|
602
|
+
|
|
603
|
+
### Miscellaneous Chores
|
|
604
|
+
|
|
605
|
+
* **engine-server-types:** Synchronize repo versions
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
### Dependencies
|
|
609
|
+
|
|
610
|
+
* The following workspace dependencies were updated
|
|
611
|
+
* dependencies
|
|
612
|
+
* @twin.org/engine-models bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
613
|
+
* @twin.org/engine-types bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
614
|
+
|
|
615
|
+
## [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
616
|
|
|
5
617
|
|
|
6
618
|
### Features
|
|
7
619
|
|
|
8
|
-
* context id handlers repopulated after engine clone ([9712e32](https://github.com/
|
|
620
|
+
* context id handlers repopulated after engine clone ([9712e32](https://github.com/iotaledger/twin-engine/commit/9712e328f4607f5b2c82355c394c61bde0ee39bf))
|
|
9
621
|
|
|
10
622
|
|
|
11
623
|
### Dependencies
|
|
@@ -15,7 +627,7 @@
|
|
|
15
627
|
* @twin.org/engine-models bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
16
628
|
* @twin.org/engine-types bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
17
629
|
|
|
18
|
-
## [0.0.3-next.3](https://github.com/
|
|
630
|
+
## [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
631
|
|
|
20
632
|
|
|
21
633
|
### Miscellaneous Chores
|
|
@@ -30,7 +642,7 @@
|
|
|
30
642
|
* @twin.org/engine-models bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
31
643
|
* @twin.org/engine-types bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
32
644
|
|
|
33
|
-
## [0.0.3-next.2](https://github.com/
|
|
645
|
+
## [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
646
|
|
|
35
647
|
|
|
36
648
|
### Miscellaneous Chores
|
|
@@ -45,34 +657,34 @@
|
|
|
45
657
|
* @twin.org/engine-models bumped from 0.0.3-next.1 to 0.0.3-next.2
|
|
46
658
|
* @twin.org/engine-types bumped from 0.0.3-next.1 to 0.0.3-next.2
|
|
47
659
|
|
|
48
|
-
## [0.0.3-next.1](https://github.com/
|
|
660
|
+
## [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
661
|
|
|
50
662
|
|
|
51
663
|
### Features
|
|
52
664
|
|
|
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/
|
|
665
|
+
* add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
|
|
666
|
+
* add context id features ([#51](https://github.com/iotaledger/twin-engine/issues/51)) ([eaef180](https://github.com/iotaledger/twin-engine/commit/eaef1807397a907bc7655ef1545a151a710ca2f1))
|
|
667
|
+
* add data space connector ([a824d99](https://github.com/iotaledger/twin-engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
|
|
668
|
+
* add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
|
|
669
|
+
* add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
|
|
670
|
+
* add latest rights management components ([2d305c8](https://github.com/iotaledger/twin-engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
|
|
671
|
+
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
|
|
672
|
+
* add rest clients as components ([c6f956a](https://github.com/iotaledger/twin-engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
|
|
673
|
+
* add rights management modules ([e02cadc](https://github.com/iotaledger/twin-engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
|
|
674
|
+
* add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
|
|
675
|
+
* add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
|
|
676
|
+
* add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
|
|
677
|
+
* add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
|
|
678
|
+
* eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
|
|
679
|
+
* 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))
|
|
680
|
+
* simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
|
|
681
|
+
* standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
|
|
682
|
+
* switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
|
|
683
|
+
* update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
|
|
684
|
+
* update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
|
|
685
|
+
* update rights management and add authentication generators ([f728a1e](https://github.com/iotaledger/twin-engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
|
|
686
|
+
* upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
|
|
687
|
+
* use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
|
|
76
688
|
|
|
77
689
|
|
|
78
690
|
### Dependencies
|
|
@@ -82,7 +694,7 @@
|
|
|
82
694
|
* @twin.org/engine-models bumped from 0.0.3-next.0 to 0.0.3-next.1
|
|
83
695
|
* @twin.org/engine-types bumped from 0.0.3-next.0 to 0.0.3-next.1
|
|
84
696
|
|
|
85
|
-
## [0.0.2-next.26](https://github.com/
|
|
697
|
+
## [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
698
|
|
|
87
699
|
|
|
88
700
|
### Miscellaneous Chores
|
|
@@ -97,12 +709,12 @@
|
|
|
97
709
|
* @twin.org/engine-models bumped from 0.0.2-next.25 to 0.0.2-next.26
|
|
98
710
|
* @twin.org/engine-types bumped from 0.0.2-next.25 to 0.0.2-next.26
|
|
99
711
|
|
|
100
|
-
## [0.0.2-next.25](https://github.com/
|
|
712
|
+
## [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
713
|
|
|
102
714
|
|
|
103
715
|
### Features
|
|
104
716
|
|
|
105
|
-
* add validate-locales ([b92ea09](https://github.com/
|
|
717
|
+
* add validate-locales ([b92ea09](https://github.com/iotaledger/twin-engine/commit/b92ea09dbcfe35225271a51f24d231f59e2d363e))
|
|
106
718
|
|
|
107
719
|
|
|
108
720
|
### Dependencies
|
|
@@ -112,7 +724,7 @@
|
|
|
112
724
|
* @twin.org/engine-models bumped from 0.0.2-next.24 to 0.0.2-next.25
|
|
113
725
|
* @twin.org/engine-types bumped from 0.0.2-next.24 to 0.0.2-next.25
|
|
114
726
|
|
|
115
|
-
## [0.0.2-next.24](https://github.com/
|
|
727
|
+
## [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
728
|
|
|
117
729
|
|
|
118
730
|
### Miscellaneous Chores
|
|
@@ -127,7 +739,7 @@
|
|
|
127
739
|
* @twin.org/engine-models bumped from 0.0.2-next.23 to 0.0.2-next.24
|
|
128
740
|
* @twin.org/engine-types bumped from 0.0.2-next.23 to 0.0.2-next.24
|
|
129
741
|
|
|
130
|
-
## [0.0.2-next.23](https://github.com/
|
|
742
|
+
## [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
743
|
|
|
132
744
|
|
|
133
745
|
### Miscellaneous Chores
|
|
@@ -142,7 +754,7 @@
|
|
|
142
754
|
* @twin.org/engine-models bumped from 0.0.2-next.22 to 0.0.2-next.23
|
|
143
755
|
* @twin.org/engine-types bumped from 0.0.2-next.22 to 0.0.2-next.23
|
|
144
756
|
|
|
145
|
-
## [0.0.2-next.22](https://github.com/
|
|
757
|
+
## [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
758
|
|
|
147
759
|
|
|
148
760
|
### Miscellaneous Chores
|
|
@@ -157,7 +769,7 @@
|
|
|
157
769
|
* @twin.org/engine-models bumped from 0.0.2-next.21 to 0.0.2-next.22
|
|
158
770
|
* @twin.org/engine-types bumped from 0.0.2-next.21 to 0.0.2-next.22
|
|
159
771
|
|
|
160
|
-
## [0.0.2-next.21](https://github.com/
|
|
772
|
+
## [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
773
|
|
|
162
774
|
|
|
163
775
|
### Miscellaneous Chores
|
|
@@ -172,12 +784,12 @@
|
|
|
172
784
|
* @twin.org/engine-models bumped from 0.0.2-next.20 to 0.0.2-next.21
|
|
173
785
|
* @twin.org/engine-types bumped from 0.0.2-next.20 to 0.0.2-next.21
|
|
174
786
|
|
|
175
|
-
## [0.0.2-next.20](https://github.com/
|
|
787
|
+
## [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
788
|
|
|
177
789
|
|
|
178
790
|
### Features
|
|
179
791
|
|
|
180
|
-
* standardised engine logging naming ([0dbf857](https://github.com/
|
|
792
|
+
* standardised engine logging naming ([0dbf857](https://github.com/iotaledger/twin-engine/commit/0dbf857587641f86ddf010143519d0e8333489ff))
|
|
181
793
|
|
|
182
794
|
|
|
183
795
|
### Dependencies
|
|
@@ -187,12 +799,12 @@
|
|
|
187
799
|
* @twin.org/engine-models bumped from 0.0.2-next.19 to 0.0.2-next.20
|
|
188
800
|
* @twin.org/engine-types bumped from 0.0.2-next.19 to 0.0.2-next.20
|
|
189
801
|
|
|
190
|
-
## [0.0.2-next.19](https://github.com/
|
|
802
|
+
## [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
803
|
|
|
192
804
|
|
|
193
805
|
### Features
|
|
194
806
|
|
|
195
|
-
* simplify config building ([732c871](https://github.com/
|
|
807
|
+
* simplify config building ([732c871](https://github.com/iotaledger/twin-engine/commit/732c871c5aca236759168f4bc15aeffd98a330a8))
|
|
196
808
|
|
|
197
809
|
|
|
198
810
|
### Dependencies
|
|
@@ -202,12 +814,12 @@
|
|
|
202
814
|
* @twin.org/engine-models bumped from 0.0.2-next.18 to 0.0.2-next.19
|
|
203
815
|
* @twin.org/engine-types bumped from 0.0.2-next.18 to 0.0.2-next.19
|
|
204
816
|
|
|
205
|
-
## [0.0.2-next.18](https://github.com/
|
|
817
|
+
## [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
818
|
|
|
207
819
|
|
|
208
820
|
### Features
|
|
209
821
|
|
|
210
|
-
* upgrade framework components ([efd52e8](https://github.com/
|
|
822
|
+
* upgrade framework components ([efd52e8](https://github.com/iotaledger/twin-engine/commit/efd52e80564fff29c3897bfa09b6305b3a322812))
|
|
211
823
|
|
|
212
824
|
|
|
213
825
|
### Dependencies
|
|
@@ -217,7 +829,7 @@
|
|
|
217
829
|
* @twin.org/engine-models bumped from 0.0.2-next.17 to 0.0.2-next.18
|
|
218
830
|
* @twin.org/engine-types bumped from 0.0.2-next.17 to 0.0.2-next.18
|
|
219
831
|
|
|
220
|
-
## [0.0.2-next.17](https://github.com/
|
|
832
|
+
## [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
833
|
|
|
222
834
|
|
|
223
835
|
### Miscellaneous Chores
|
|
@@ -232,7 +844,7 @@
|
|
|
232
844
|
* @twin.org/engine-models bumped from 0.0.2-next.16 to 0.0.2-next.17
|
|
233
845
|
* @twin.org/engine-types bumped from 0.0.2-next.16 to 0.0.2-next.17
|
|
234
846
|
|
|
235
|
-
## [0.0.2-next.16](https://github.com/
|
|
847
|
+
## [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
848
|
|
|
237
849
|
|
|
238
850
|
### Miscellaneous Chores
|
|
@@ -247,12 +859,12 @@
|
|
|
247
859
|
* @twin.org/engine-models bumped from 0.0.2-next.15 to 0.0.2-next.16
|
|
248
860
|
* @twin.org/engine-types bumped from 0.0.2-next.15 to 0.0.2-next.16
|
|
249
861
|
|
|
250
|
-
## [0.0.2-next.15](https://github.com/
|
|
862
|
+
## [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
863
|
|
|
252
864
|
|
|
253
865
|
### Features
|
|
254
866
|
|
|
255
|
-
* update rights management and add authentication generators ([f728a1e](https://github.com/
|
|
867
|
+
* update rights management and add authentication generators ([f728a1e](https://github.com/iotaledger/twin-engine/commit/f728a1efea15ada8d10cfbe17cafe7e2b252f527))
|
|
256
868
|
|
|
257
869
|
|
|
258
870
|
### Dependencies
|
|
@@ -262,12 +874,12 @@
|
|
|
262
874
|
* @twin.org/engine-models bumped from 0.0.2-next.14 to 0.0.2-next.15
|
|
263
875
|
* @twin.org/engine-types bumped from 0.0.2-next.14 to 0.0.2-next.15
|
|
264
876
|
|
|
265
|
-
## [0.0.2-next.14](https://github.com/
|
|
877
|
+
## [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
878
|
|
|
267
879
|
|
|
268
880
|
### Features
|
|
269
881
|
|
|
270
|
-
* add latest rights management components ([2d305c8](https://github.com/
|
|
882
|
+
* add latest rights management components ([2d305c8](https://github.com/iotaledger/twin-engine/commit/2d305c8c85c77bb4f5694c76422db4a11efc1a40))
|
|
271
883
|
|
|
272
884
|
|
|
273
885
|
### Dependencies
|
|
@@ -277,7 +889,7 @@
|
|
|
277
889
|
* @twin.org/engine-models bumped from 0.0.2-next.13 to 0.0.2-next.14
|
|
278
890
|
* @twin.org/engine-types bumped from 0.0.2-next.13 to 0.0.2-next.14
|
|
279
891
|
|
|
280
|
-
## [0.0.2-next.13](https://github.com/
|
|
892
|
+
## [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
893
|
|
|
282
894
|
|
|
283
895
|
### Miscellaneous Chores
|
|
@@ -292,12 +904,12 @@
|
|
|
292
904
|
* @twin.org/engine-models bumped from 0.0.2-next.12 to 0.0.2-next.13
|
|
293
905
|
* @twin.org/engine-types bumped from 0.0.2-next.12 to 0.0.2-next.13
|
|
294
906
|
|
|
295
|
-
## [0.0.2-next.12](https://github.com/
|
|
907
|
+
## [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
908
|
|
|
297
909
|
|
|
298
910
|
### Features
|
|
299
911
|
|
|
300
|
-
* add rights management negotiation ([84ef46b](https://github.com/
|
|
912
|
+
* add rights management negotiation ([84ef46b](https://github.com/iotaledger/twin-engine/commit/84ef46bff110611a19512793425c8c873ee2a590))
|
|
301
913
|
|
|
302
914
|
|
|
303
915
|
### Dependencies
|
|
@@ -307,12 +919,12 @@
|
|
|
307
919
|
* @twin.org/engine-models bumped from 0.0.2-next.11 to 0.0.2-next.12
|
|
308
920
|
* @twin.org/engine-types bumped from 0.0.2-next.11 to 0.0.2-next.12
|
|
309
921
|
|
|
310
|
-
## [0.0.2-next.11](https://github.com/
|
|
922
|
+
## [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
923
|
|
|
312
924
|
|
|
313
925
|
### Features
|
|
314
926
|
|
|
315
|
-
* eslint migration to flat config ([6b978da](https://github.com/
|
|
927
|
+
* eslint migration to flat config ([6b978da](https://github.com/iotaledger/twin-engine/commit/6b978daf777a615d7758b63c3df57d5a376f6dfb))
|
|
316
928
|
|
|
317
929
|
|
|
318
930
|
### Dependencies
|
|
@@ -322,12 +934,12 @@
|
|
|
322
934
|
* @twin.org/engine-models bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
323
935
|
* @twin.org/engine-types bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
324
936
|
|
|
325
|
-
## [0.0.2-next.10](https://github.com/
|
|
937
|
+
## [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
938
|
|
|
327
939
|
|
|
328
940
|
### Features
|
|
329
941
|
|
|
330
|
-
* add data space connector ([a824d99](https://github.com/
|
|
942
|
+
* add data space connector ([a824d99](https://github.com/iotaledger/twin-engine/commit/a824d9931faeaa8115e01f8e7545b802d0e7ac70))
|
|
331
943
|
|
|
332
944
|
|
|
333
945
|
### Dependencies
|
|
@@ -337,7 +949,7 @@
|
|
|
337
949
|
* @twin.org/engine-models bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
338
950
|
* @twin.org/engine-types bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
339
951
|
|
|
340
|
-
## [0.0.2-next.9](https://github.com/
|
|
952
|
+
## [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
953
|
|
|
342
954
|
|
|
343
955
|
### Miscellaneous Chores
|
|
@@ -352,12 +964,12 @@
|
|
|
352
964
|
* @twin.org/engine-models bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
353
965
|
* @twin.org/engine-types bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
354
966
|
|
|
355
|
-
## [0.0.2-next.8](https://github.com/
|
|
967
|
+
## [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
968
|
|
|
357
969
|
|
|
358
970
|
### Features
|
|
359
971
|
|
|
360
|
-
* add rights management modules ([e02cadc](https://github.com/
|
|
972
|
+
* add rights management modules ([e02cadc](https://github.com/iotaledger/twin-engine/commit/e02cadc840d242fe16a73ab41ba61376c7467e50))
|
|
361
973
|
|
|
362
974
|
|
|
363
975
|
### Dependencies
|
|
@@ -367,7 +979,7 @@
|
|
|
367
979
|
* @twin.org/engine-models bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
368
980
|
* @twin.org/engine-types bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
369
981
|
|
|
370
|
-
## [0.0.2-next.7](https://github.com/
|
|
982
|
+
## [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
983
|
|
|
372
984
|
|
|
373
985
|
### Miscellaneous Chores
|
|
@@ -382,12 +994,12 @@
|
|
|
382
994
|
* @twin.org/engine-models bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
383
995
|
* @twin.org/engine-types bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
384
996
|
|
|
385
|
-
## [0.0.2-next.6](https://github.com/
|
|
997
|
+
## [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
998
|
|
|
387
999
|
|
|
388
1000
|
### Features
|
|
389
1001
|
|
|
390
|
-
* update framework core ([acc0f8d](https://github.com/
|
|
1002
|
+
* update framework core ([acc0f8d](https://github.com/iotaledger/twin-engine/commit/acc0f8d455a4b8ec47f1da643139fa0f07775fa6))
|
|
391
1003
|
|
|
392
1004
|
|
|
393
1005
|
### Dependencies
|
|
@@ -397,12 +1009,12 @@
|
|
|
397
1009
|
* @twin.org/engine-models bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
398
1010
|
* @twin.org/engine-types bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
399
1011
|
|
|
400
|
-
## [0.0.2-next.5](https://github.com/
|
|
1012
|
+
## [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
1013
|
|
|
402
1014
|
|
|
403
1015
|
### Features
|
|
404
1016
|
|
|
405
|
-
* add synchronised storage support ([5142e34](https://github.com/
|
|
1017
|
+
* add synchronised storage support ([5142e34](https://github.com/iotaledger/twin-engine/commit/5142e3488f09195cf9f48a9c6c6d1014231a4c2c))
|
|
406
1018
|
|
|
407
1019
|
|
|
408
1020
|
### Dependencies
|
|
@@ -412,12 +1024,12 @@
|
|
|
412
1024
|
* @twin.org/engine-models bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
413
1025
|
* @twin.org/engine-types bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
414
1026
|
|
|
415
|
-
## [0.0.2-next.4](https://github.com/
|
|
1027
|
+
## [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
1028
|
|
|
417
1029
|
|
|
418
1030
|
### Features
|
|
419
1031
|
|
|
420
|
-
* add default logging component for web server ([8ad94f0](https://github.com/
|
|
1032
|
+
* add default logging component for web server ([8ad94f0](https://github.com/iotaledger/twin-engine/commit/8ad94f0d2d9a5241a8854b1e59fb9a55ce310142))
|
|
421
1033
|
|
|
422
1034
|
|
|
423
1035
|
### Dependencies
|
|
@@ -427,7 +1039,7 @@
|
|
|
427
1039
|
* @twin.org/engine-models bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
428
1040
|
* @twin.org/engine-types bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
429
1041
|
|
|
430
|
-
## [0.0.2-next.3](https://github.com/
|
|
1042
|
+
## [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
1043
|
|
|
432
1044
|
|
|
433
1045
|
### Miscellaneous Chores
|
|
@@ -442,12 +1054,12 @@
|
|
|
442
1054
|
* @twin.org/engine-models bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
443
1055
|
* @twin.org/engine-types bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
444
1056
|
|
|
445
|
-
## [0.0.2-next.2](https://github.com/
|
|
1057
|
+
## [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
1058
|
|
|
447
1059
|
|
|
448
1060
|
### Features
|
|
449
1061
|
|
|
450
|
-
* add rest clients as components ([c6f956a](https://github.com/
|
|
1062
|
+
* add rest clients as components ([c6f956a](https://github.com/iotaledger/twin-engine/commit/c6f956afe4fc22cd552174539c92a109448dc242))
|
|
451
1063
|
|
|
452
1064
|
|
|
453
1065
|
### Dependencies
|
|
@@ -457,19 +1069,19 @@
|
|
|
457
1069
|
* @twin.org/engine-models bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
458
1070
|
* @twin.org/engine-types bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
459
1071
|
|
|
460
|
-
## [0.0.2-next.1](https://github.com/
|
|
1072
|
+
## [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
1073
|
|
|
462
1074
|
|
|
463
1075
|
### Features
|
|
464
1076
|
|
|
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/
|
|
1077
|
+
* add auth admin component ([201cd06](https://github.com/iotaledger/twin-engine/commit/201cd061be83afccb5a6b06856ffe7cf8db7d6b3))
|
|
1078
|
+
* add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
|
|
1079
|
+
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
|
|
1080
|
+
* add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
|
|
1081
|
+
* 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))
|
|
1082
|
+
* switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
|
|
1083
|
+
* update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
|
|
1084
|
+
* use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
|
|
473
1085
|
|
|
474
1086
|
|
|
475
1087
|
### Dependencies
|
|
@@ -484,15 +1096,15 @@
|
|
|
484
1096
|
|
|
485
1097
|
### Features
|
|
486
1098
|
|
|
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/
|
|
1099
|
+
* add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
|
|
1100
|
+
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
|
|
1101
|
+
* add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
|
|
1102
|
+
* 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))
|
|
1103
|
+
* release to production ([3a4acd1](https://github.com/iotaledger/twin-engine/commit/3a4acd1f6c66b841d80b6fd3bc1a439a77148fa5))
|
|
1104
|
+
* release to production ([5559958](https://github.com/iotaledger/twin-engine/commit/5559958e2128e6ec3a81e779d1ebd3f370bbb081))
|
|
1105
|
+
* switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
|
|
1106
|
+
* update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
|
|
1107
|
+
* use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
|
|
496
1108
|
|
|
497
1109
|
|
|
498
1110
|
### Dependencies
|
|
@@ -502,7 +1114,7 @@
|
|
|
502
1114
|
* @twin.org/engine-models bumped from 0.0.1-next.84 to 0.0.1
|
|
503
1115
|
* @twin.org/engine-types bumped from 0.0.1-next.84 to 0.0.1
|
|
504
1116
|
|
|
505
|
-
## [0.0.1-next.84](https://github.com/
|
|
1117
|
+
## [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
1118
|
|
|
507
1119
|
|
|
508
1120
|
### Miscellaneous Chores
|
|
@@ -517,18 +1129,18 @@
|
|
|
517
1129
|
* @twin.org/engine-models bumped from 0.0.1-next.83 to 0.0.1-next.84
|
|
518
1130
|
* @twin.org/engine-types bumped from 0.0.1-next.83 to 0.0.1-next.84
|
|
519
1131
|
|
|
520
|
-
## [0.0.1-next.83](https://github.com/
|
|
1132
|
+
## [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
1133
|
|
|
522
1134
|
|
|
523
1135
|
### Features
|
|
524
1136
|
|
|
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/
|
|
1137
|
+
* add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
|
|
1138
|
+
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
|
|
1139
|
+
* add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
|
|
1140
|
+
* 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))
|
|
1141
|
+
* switch to devDeps ([32832ac](https://github.com/iotaledger/twin-engine/commit/32832acd934e1e5569474281a527c9b118d30732))
|
|
1142
|
+
* update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
|
|
1143
|
+
* use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
|
|
532
1144
|
|
|
533
1145
|
|
|
534
1146
|
### Dependencies
|
|
@@ -538,7 +1150,7 @@
|
|
|
538
1150
|
* @twin.org/engine-models bumped from 0.0.1-next.81 to 0.0.1-next.83
|
|
539
1151
|
* @twin.org/engine-types bumped from 0.0.1-next.81 to 0.0.1-next.83
|
|
540
1152
|
|
|
541
|
-
## [0.0.1-next.81](https://github.com/
|
|
1153
|
+
## [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
1154
|
|
|
543
1155
|
|
|
544
1156
|
### Miscellaneous Chores
|
|
@@ -553,12 +1165,12 @@
|
|
|
553
1165
|
* @twin.org/engine-models bumped from 0.0.1-next.80 to 0.0.1-next.81
|
|
554
1166
|
* @twin.org/engine-types bumped from 0.0.1-next.80 to 0.0.1-next.81
|
|
555
1167
|
|
|
556
|
-
## [0.0.1-next.80](https://github.com/
|
|
1168
|
+
## [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
1169
|
|
|
558
1170
|
|
|
559
1171
|
### Features
|
|
560
1172
|
|
|
561
|
-
* add task scheduler ([0951107](https://github.com/
|
|
1173
|
+
* add task scheduler ([0951107](https://github.com/iotaledger/twin-engine/commit/09511073ad042194a45206303f0ef31d8d6af5db))
|
|
562
1174
|
|
|
563
1175
|
|
|
564
1176
|
### Dependencies
|
|
@@ -568,7 +1180,7 @@
|
|
|
568
1180
|
* @twin.org/engine-models bumped from 0.0.1-next.79 to 0.0.1-next.80
|
|
569
1181
|
* @twin.org/engine-types bumped from 0.0.1-next.79 to 0.0.1-next.80
|
|
570
1182
|
|
|
571
|
-
## [0.0.1-next.79](https://github.com/
|
|
1183
|
+
## [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
1184
|
|
|
573
1185
|
|
|
574
1186
|
### Miscellaneous Chores
|
|
@@ -583,7 +1195,7 @@
|
|
|
583
1195
|
* @twin.org/engine-models bumped from 0.0.1-next.78 to 0.0.1-next.79
|
|
584
1196
|
* @twin.org/engine-types bumped from 0.0.1-next.78 to 0.0.1-next.79
|
|
585
1197
|
|
|
586
|
-
## [0.0.1-next.78](https://github.com/
|
|
1198
|
+
## [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
1199
|
|
|
588
1200
|
|
|
589
1201
|
### Miscellaneous Chores
|
|
@@ -598,7 +1210,7 @@
|
|
|
598
1210
|
* @twin.org/engine-models bumped from 0.0.1-next.77 to 0.0.1-next.78
|
|
599
1211
|
* @twin.org/engine-types bumped from 0.0.1-next.77 to 0.0.1-next.78
|
|
600
1212
|
|
|
601
|
-
## [0.0.1-next.77](https://github.com/
|
|
1213
|
+
## [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
1214
|
|
|
603
1215
|
|
|
604
1216
|
### Miscellaneous Chores
|
|
@@ -613,12 +1225,12 @@
|
|
|
613
1225
|
* @twin.org/engine-models bumped from 0.0.1-next.76 to 0.0.1-next.77
|
|
614
1226
|
* @twin.org/engine-types bumped from 0.0.1-next.76 to 0.0.1-next.77
|
|
615
1227
|
|
|
616
|
-
## [0.0.1-next.76](https://github.com/
|
|
1228
|
+
## [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
1229
|
|
|
618
1230
|
|
|
619
1231
|
### Features
|
|
620
1232
|
|
|
621
|
-
* update dependencies ([97c9f64](https://github.com/
|
|
1233
|
+
* update dependencies ([97c9f64](https://github.com/iotaledger/twin-engine/commit/97c9f64b6ef096963bcc5de338a2a9e99bdc1a11))
|
|
622
1234
|
|
|
623
1235
|
|
|
624
1236
|
### Dependencies
|
|
@@ -628,12 +1240,12 @@
|
|
|
628
1240
|
* @twin.org/engine-models bumped from 0.0.1-next.75 to 0.0.1-next.76
|
|
629
1241
|
* @twin.org/engine-types bumped from 0.0.1-next.75 to 0.0.1-next.76
|
|
630
1242
|
|
|
631
|
-
## [0.0.1-next.75](https://github.com/
|
|
1243
|
+
## [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
1244
|
|
|
633
1245
|
|
|
634
1246
|
### Features
|
|
635
1247
|
|
|
636
|
-
* modifying the engine to run the new services ([#10](https://github.com/
|
|
1248
|
+
* 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
1249
|
|
|
638
1250
|
|
|
639
1251
|
### Dependencies
|
|
@@ -643,12 +1255,12 @@
|
|
|
643
1255
|
* @twin.org/engine-models bumped from 0.0.1-next.74 to 0.0.1-next.75
|
|
644
1256
|
* @twin.org/engine-types bumped from 0.0.1-next.74 to 0.0.1-next.75
|
|
645
1257
|
|
|
646
|
-
## [0.0.1-next.74](https://github.com/
|
|
1258
|
+
## [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
1259
|
|
|
648
1260
|
|
|
649
1261
|
### Features
|
|
650
1262
|
|
|
651
|
-
* add federated catalogue ([1b15dd0](https://github.com/
|
|
1263
|
+
* add federated catalogue ([1b15dd0](https://github.com/iotaledger/twin-engine/commit/1b15dd059a11446457651c411a73145fab37f025))
|
|
652
1264
|
|
|
653
1265
|
|
|
654
1266
|
### Dependencies
|
|
@@ -658,7 +1270,7 @@
|
|
|
658
1270
|
* @twin.org/engine-models bumped from 0.0.1-next.73 to 0.0.1-next.74
|
|
659
1271
|
* @twin.org/engine-types bumped from 0.0.1-next.73 to 0.0.1-next.74
|
|
660
1272
|
|
|
661
|
-
## [0.0.1-next.73](https://github.com/
|
|
1273
|
+
## [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
1274
|
|
|
663
1275
|
|
|
664
1276
|
### Miscellaneous Chores
|
|
@@ -673,13 +1285,13 @@
|
|
|
673
1285
|
* @twin.org/engine-models bumped from 0.0.1-next.72 to 0.0.1-next.73
|
|
674
1286
|
* @twin.org/engine-types bumped from 0.0.1-next.72 to 0.0.1-next.73
|
|
675
1287
|
|
|
676
|
-
## [0.0.1-next.72](https://github.com/
|
|
1288
|
+
## [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
1289
|
|
|
678
1290
|
|
|
679
1291
|
### Features
|
|
680
1292
|
|
|
681
|
-
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/
|
|
682
|
-
* use shared store mechanism ([#2](https://github.com/
|
|
1293
|
+
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
|
|
1294
|
+
* use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
|
|
683
1295
|
|
|
684
1296
|
|
|
685
1297
|
### Dependencies
|
|
@@ -689,7 +1301,7 @@
|
|
|
689
1301
|
* @twin.org/engine-models bumped from 0.0.1-next.71 to 0.0.1-next.72
|
|
690
1302
|
* @twin.org/engine-types bumped from 0.0.1-next.71 to 0.0.1-next.72
|
|
691
1303
|
|
|
692
|
-
## [0.0.1-next.71](https://github.com/
|
|
1304
|
+
## [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
1305
|
|
|
694
1306
|
|
|
695
1307
|
### Miscellaneous Chores
|
|
@@ -704,7 +1316,7 @@
|
|
|
704
1316
|
* @twin.org/engine-models bumped from 0.0.1-next.70 to 0.0.1-next.71
|
|
705
1317
|
* @twin.org/engine-types bumped from 0.0.1-next.70 to 0.0.1-next.71
|
|
706
1318
|
|
|
707
|
-
## [0.0.1-next.70](https://github.com/
|
|
1319
|
+
## [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
1320
|
|
|
709
1321
|
|
|
710
1322
|
### Miscellaneous Chores
|
|
@@ -719,7 +1331,7 @@
|
|
|
719
1331
|
* @twin.org/engine-models bumped from 0.0.1-next.69 to 0.0.1-next.70
|
|
720
1332
|
* @twin.org/engine-types bumped from 0.0.1-next.69 to 0.0.1-next.70
|
|
721
1333
|
|
|
722
|
-
## [0.0.1-next.69](https://github.com/
|
|
1334
|
+
## [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
1335
|
|
|
724
1336
|
|
|
725
1337
|
### Miscellaneous Chores
|
|
@@ -734,12 +1346,12 @@
|
|
|
734
1346
|
* @twin.org/engine-models bumped from 0.0.1-next.68 to 0.0.1-next.69
|
|
735
1347
|
* @twin.org/engine-types bumped from 0.0.1-next.68 to 0.0.1-next.69
|
|
736
1348
|
|
|
737
|
-
## [0.0.1-next.68](https://github.com/
|
|
1349
|
+
## [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
1350
|
|
|
739
1351
|
|
|
740
1352
|
### Features
|
|
741
1353
|
|
|
742
|
-
* use shared store mechanism ([#2](https://github.com/
|
|
1354
|
+
* use shared store mechanism ([#2](https://github.com/iotaledger/twin-engine/issues/2)) ([9eed8d7](https://github.com/iotaledger/twin-engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
|
|
743
1355
|
|
|
744
1356
|
|
|
745
1357
|
### Dependencies
|
|
@@ -749,12 +1361,12 @@
|
|
|
749
1361
|
* @twin.org/engine-models bumped from 0.0.1-next.67 to 0.0.1-next.68
|
|
750
1362
|
* @twin.org/engine-types bumped from 0.0.1-next.67 to 0.0.1-next.68
|
|
751
1363
|
|
|
752
|
-
## [0.0.1-next.67](https://github.com/
|
|
1364
|
+
## [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
1365
|
|
|
754
1366
|
|
|
755
1367
|
### Features
|
|
756
1368
|
|
|
757
|
-
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/
|
|
1369
|
+
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/iotaledger/twin-engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
|
|
758
1370
|
|
|
759
1371
|
|
|
760
1372
|
### Dependencies
|