@twin.org/cli-core 0.0.2-next.8 → 0.0.2

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.
Files changed (46) hide show
  1. package/README.md +2 -2
  2. package/dist/es/cliBase.js +122 -0
  3. package/dist/es/cliBase.js.map +1 -0
  4. package/dist/es/cliDisplay.js +166 -0
  5. package/dist/es/cliDisplay.js.map +1 -0
  6. package/dist/es/cliOptions.js +36 -0
  7. package/dist/es/cliOptions.js.map +1 -0
  8. package/dist/es/cliParam.js +248 -0
  9. package/dist/es/cliParam.js.map +1 -0
  10. package/dist/es/cliUtils.js +235 -0
  11. package/dist/es/cliUtils.js.map +1 -0
  12. package/dist/es/commands/global.js +61 -0
  13. package/dist/es/commands/global.js.map +1 -0
  14. package/dist/es/index.js +14 -0
  15. package/dist/es/index.js.map +1 -0
  16. package/dist/es/models/ICliOptions.js +2 -0
  17. package/dist/es/models/ICliOptions.js.map +1 -0
  18. package/dist/es/models/ICliOutputOptionsConsole.js +2 -0
  19. package/dist/es/models/ICliOutputOptionsConsole.js.map +1 -0
  20. package/dist/es/models/ICliOutputOptionsEnv.js +2 -0
  21. package/dist/es/models/ICliOutputOptionsEnv.js.map +1 -0
  22. package/dist/es/models/ICliOutputOptionsJson.js +2 -0
  23. package/dist/es/models/ICliOutputOptionsJson.js.map +1 -0
  24. package/dist/es/models/cliOutputOptions.js +2 -0
  25. package/dist/es/models/cliOutputOptions.js.map +1 -0
  26. package/dist/types/cliBase.d.ts +1 -1
  27. package/dist/types/cliDisplay.d.ts +5 -0
  28. package/dist/types/cliParam.d.ts +10 -9
  29. package/dist/types/index.d.ts +11 -11
  30. package/dist/types/models/cliOutputOptions.d.ts +3 -3
  31. package/docs/changelog.md +1197 -71
  32. package/docs/examples.md +82 -1
  33. package/docs/reference/classes/CLIBase.md +3 -3
  34. package/docs/reference/classes/CLIDisplay.md +46 -26
  35. package/docs/reference/classes/CLIOptions.md +1 -1
  36. package/docs/reference/classes/CLIParam.md +97 -85
  37. package/docs/reference/classes/CLIUtils.md +25 -25
  38. package/docs/reference/interfaces/ICliOptions.md +12 -12
  39. package/docs/reference/interfaces/ICliOutputOptionsConsole.md +1 -1
  40. package/docs/reference/interfaces/ICliOutputOptionsEnv.md +3 -3
  41. package/docs/reference/interfaces/ICliOutputOptionsJson.md +3 -3
  42. package/locales/.validate-ignore +1 -0
  43. package/locales/en.json +0 -1
  44. package/package.json +28 -16
  45. package/dist/cjs/index.cjs +0 -878
  46. package/dist/esm/index.mjs +0 -849
package/docs/changelog.md CHANGED
@@ -1,6 +1,1132 @@
1
- # @twin.org/cli-core - Changelog
1
+ # Changelog
2
2
 
3
- ## [0.0.2-next.8](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.2-next.7...cli-core-v0.0.2-next.8) (2025-09-05)
3
+ ## [0.0.2](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.1...cli-core-v0.0.2) (2026-05-20)
4
+
5
+
6
+ ### Features
7
+
8
+ * release to production ([f7c6586](https://github.com/iotaledger/twin-framework/commit/f7c6586f6976b903b647b4c5ac5ad9421e0c9051))
9
+
10
+
11
+ ### Miscellaneous Chores
12
+
13
+ * release to production ([63cae24](https://github.com/iotaledger/twin-framework/commit/63cae2401f6c11f93b2a01260b665064e8bd28e0))
14
+
15
+
16
+ ### Dependencies
17
+
18
+ * The following workspace dependencies were updated
19
+ * dependencies
20
+ * @twin.org/core bumped from 0.0.3-next.44 to 0.0.2
21
+ * @twin.org/nameof bumped from 0.0.3-next.44 to 0.0.2
22
+ * devDependencies
23
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.44 to 0.0.2
24
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.44 to 0.0.2
25
+
26
+ ## [0.0.3-next.44](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.43...cli-core-v0.0.3-next.44) (2026-05-19)
27
+
28
+
29
+ ### Features
30
+
31
+ * update dependencies ([4da77ab](https://github.com/iotaledger/twin-framework/commit/4da77ab30f499e52825ac5a76f51436ceb59c26e))
32
+
33
+
34
+ ### Dependencies
35
+
36
+ * The following workspace dependencies were updated
37
+ * dependencies
38
+ * @twin.org/core bumped from 0.0.3-next.43 to 0.0.3-next.44
39
+ * @twin.org/nameof bumped from 0.0.3-next.43 to 0.0.3-next.44
40
+ * devDependencies
41
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.43 to 0.0.3-next.44
42
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.43 to 0.0.3-next.44
43
+
44
+ ## [0.0.3-next.43](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.42...cli-core-v0.0.3-next.43) (2026-05-18)
45
+
46
+
47
+ ### Miscellaneous Chores
48
+
49
+ * **cli-core:** Synchronize repo versions
50
+
51
+
52
+ ### Dependencies
53
+
54
+ * The following workspace dependencies were updated
55
+ * dependencies
56
+ * @twin.org/core bumped from 0.0.3-next.42 to 0.0.3-next.43
57
+ * @twin.org/nameof bumped from 0.0.3-next.42 to 0.0.3-next.43
58
+ * devDependencies
59
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.42 to 0.0.3-next.43
60
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.42 to 0.0.3-next.43
61
+
62
+ ## [0.0.3-next.42](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.41...cli-core-v0.0.3-next.42) (2026-05-15)
63
+
64
+
65
+ ### Miscellaneous Chores
66
+
67
+ * **cli-core:** Synchronize repo versions
68
+
69
+
70
+ ### Dependencies
71
+
72
+ * The following workspace dependencies were updated
73
+ * dependencies
74
+ * @twin.org/core bumped from 0.0.3-next.41 to 0.0.3-next.42
75
+ * @twin.org/nameof bumped from 0.0.3-next.41 to 0.0.3-next.42
76
+ * devDependencies
77
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.41 to 0.0.3-next.42
78
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.41 to 0.0.3-next.42
79
+
80
+ ## [0.0.3-next.41](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.40...cli-core-v0.0.3-next.41) (2026-05-13)
81
+
82
+
83
+ ### Miscellaneous Chores
84
+
85
+ * **cli-core:** Synchronize repo versions
86
+
87
+
88
+ ### Dependencies
89
+
90
+ * The following workspace dependencies were updated
91
+ * dependencies
92
+ * @twin.org/core bumped from 0.0.3-next.40 to 0.0.3-next.41
93
+ * @twin.org/nameof bumped from 0.0.3-next.40 to 0.0.3-next.41
94
+ * devDependencies
95
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.40 to 0.0.3-next.41
96
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.40 to 0.0.3-next.41
97
+
98
+ ## [0.0.3-next.40](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.39...cli-core-v0.0.3-next.40) (2026-05-13)
99
+
100
+
101
+ ### Miscellaneous Chores
102
+
103
+ * **cli-core:** Synchronize repo versions
104
+
105
+
106
+ ### Dependencies
107
+
108
+ * The following workspace dependencies were updated
109
+ * dependencies
110
+ * @twin.org/core bumped from 0.0.3-next.39 to 0.0.3-next.40
111
+ * @twin.org/nameof bumped from 0.0.3-next.39 to 0.0.3-next.40
112
+ * devDependencies
113
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.39 to 0.0.3-next.40
114
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.39 to 0.0.3-next.40
115
+
116
+ ## [0.0.3-next.39](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.38...cli-core-v0.0.3-next.39) (2026-05-13)
117
+
118
+
119
+ ### Features
120
+
121
+ * improve signatures ([bcc21ae](https://github.com/iotaledger/twin-framework/commit/bcc21aed3e10a264ef5c8515bde8dcac8a05c719))
122
+ * improve signatures ([cdd24be](https://github.com/iotaledger/twin-framework/commit/cdd24be6fb898d33955b6f2f93c3ddbd73582269))
123
+
124
+
125
+ ### Dependencies
126
+
127
+ * The following workspace dependencies were updated
128
+ * dependencies
129
+ * @twin.org/core bumped from 0.0.3-next.38 to 0.0.3-next.39
130
+ * @twin.org/nameof bumped from 0.0.3-next.38 to 0.0.3-next.39
131
+ * devDependencies
132
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.38 to 0.0.3-next.39
133
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.38 to 0.0.3-next.39
134
+
135
+ ## [0.0.3-next.38](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.37...cli-core-v0.0.3-next.38) (2026-05-11)
136
+
137
+
138
+ ### Features
139
+
140
+ * typescript 6 update ([1d10f31](https://github.com/iotaledger/twin-framework/commit/1d10f31e6516ec622773f45e88af82fe749b384a))
141
+
142
+
143
+ ### Dependencies
144
+
145
+ * The following workspace dependencies were updated
146
+ * dependencies
147
+ * @twin.org/core bumped from 0.0.3-next.37 to 0.0.3-next.38
148
+ * @twin.org/nameof bumped from 0.0.3-next.37 to 0.0.3-next.38
149
+ * devDependencies
150
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.37 to 0.0.3-next.38
151
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.37 to 0.0.3-next.38
152
+
153
+ ## [0.0.3-next.37](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.36...cli-core-v0.0.3-next.37) (2026-05-07)
154
+
155
+
156
+ ### Miscellaneous Chores
157
+
158
+ * **cli-core:** Synchronize repo versions
159
+
160
+
161
+ ### Dependencies
162
+
163
+ * The following workspace dependencies were updated
164
+ * dependencies
165
+ * @twin.org/core bumped from 0.0.3-next.36 to 0.0.3-next.37
166
+ * @twin.org/nameof bumped from 0.0.3-next.36 to 0.0.3-next.37
167
+ * devDependencies
168
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.36 to 0.0.3-next.37
169
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.36 to 0.0.3-next.37
170
+
171
+ ## [0.0.3-next.36](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.35...cli-core-v0.0.3-next.36) (2026-05-07)
172
+
173
+
174
+ ### Miscellaneous Chores
175
+
176
+ * **cli-core:** Synchronize repo versions
177
+
178
+
179
+ ### Dependencies
180
+
181
+ * The following workspace dependencies were updated
182
+ * dependencies
183
+ * @twin.org/core bumped from 0.0.3-next.35 to 0.0.3-next.36
184
+ * @twin.org/nameof bumped from 0.0.3-next.35 to 0.0.3-next.36
185
+ * devDependencies
186
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.35 to 0.0.3-next.36
187
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.35 to 0.0.3-next.36
188
+
189
+ ## [0.0.3-next.35](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.34...cli-core-v0.0.3-next.35) (2026-05-06)
190
+
191
+
192
+ ### Miscellaneous Chores
193
+
194
+ * **cli-core:** Synchronize repo versions
195
+
196
+
197
+ ### Dependencies
198
+
199
+ * The following workspace dependencies were updated
200
+ * dependencies
201
+ * @twin.org/core bumped from 0.0.3-next.34 to 0.0.3-next.35
202
+ * @twin.org/nameof bumped from 0.0.3-next.34 to 0.0.3-next.35
203
+ * devDependencies
204
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.34 to 0.0.3-next.35
205
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.34 to 0.0.3-next.35
206
+
207
+ ## [0.0.3-next.34](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.33...cli-core-v0.0.3-next.34) (2026-05-06)
208
+
209
+
210
+ ### Miscellaneous Chores
211
+
212
+ * **cli-core:** Synchronize repo versions
213
+
214
+
215
+ ### Dependencies
216
+
217
+ * The following workspace dependencies were updated
218
+ * dependencies
219
+ * @twin.org/core bumped from 0.0.3-next.33 to 0.0.3-next.34
220
+ * @twin.org/nameof bumped from 0.0.3-next.33 to 0.0.3-next.34
221
+ * devDependencies
222
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.33 to 0.0.3-next.34
223
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.33 to 0.0.3-next.34
224
+
225
+ ## [0.0.3-next.33](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.32...cli-core-v0.0.3-next.33) (2026-05-05)
226
+
227
+
228
+ ### Miscellaneous Chores
229
+
230
+ * **cli-core:** Synchronize repo versions
231
+
232
+
233
+ ### Dependencies
234
+
235
+ * The following workspace dependencies were updated
236
+ * dependencies
237
+ * @twin.org/core bumped from 0.0.3-next.32 to 0.0.3-next.33
238
+ * @twin.org/nameof bumped from 0.0.3-next.32 to 0.0.3-next.33
239
+ * devDependencies
240
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.32 to 0.0.3-next.33
241
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.32 to 0.0.3-next.33
242
+
243
+ ## [0.0.3-next.32](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.31...cli-core-v0.0.3-next.32) (2026-04-30)
244
+
245
+
246
+ ### Miscellaneous Chores
247
+
248
+ * **cli-core:** Synchronize repo versions
249
+
250
+
251
+ ### Dependencies
252
+
253
+ * The following workspace dependencies were updated
254
+ * dependencies
255
+ * @twin.org/core bumped from 0.0.3-next.31 to 0.0.3-next.32
256
+ * @twin.org/nameof bumped from 0.0.3-next.31 to 0.0.3-next.32
257
+ * devDependencies
258
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.31 to 0.0.3-next.32
259
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.31 to 0.0.3-next.32
260
+
261
+ ## [0.0.3-next.31](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.30...cli-core-v0.0.3-next.31) (2026-04-14)
262
+
263
+
264
+ ### Miscellaneous Chores
265
+
266
+ * **cli-core:** Synchronize repo versions
267
+
268
+
269
+ ### Dependencies
270
+
271
+ * The following workspace dependencies were updated
272
+ * dependencies
273
+ * @twin.org/core bumped from 0.0.3-next.30 to 0.0.3-next.31
274
+ * @twin.org/nameof bumped from 0.0.3-next.30 to 0.0.3-next.31
275
+ * devDependencies
276
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.30 to 0.0.3-next.31
277
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.30 to 0.0.3-next.31
278
+
279
+ ## [0.0.3-next.30](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.29...cli-core-v0.0.3-next.30) (2026-04-14)
280
+
281
+
282
+ ### Miscellaneous Chores
283
+
284
+ * **cli-core:** Synchronize repo versions
285
+
286
+
287
+ ### Dependencies
288
+
289
+ * The following workspace dependencies were updated
290
+ * dependencies
291
+ * @twin.org/core bumped from 0.0.3-next.29 to 0.0.3-next.30
292
+ * @twin.org/nameof bumped from 0.0.3-next.29 to 0.0.3-next.30
293
+ * devDependencies
294
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.29 to 0.0.3-next.30
295
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.29 to 0.0.3-next.30
296
+
297
+ ## [0.0.3-next.29](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.28...cli-core-v0.0.3-next.29) (2026-04-14)
298
+
299
+
300
+ ### Miscellaneous Chores
301
+
302
+ * **cli-core:** Synchronize repo versions
303
+
304
+
305
+ ### Dependencies
306
+
307
+ * The following workspace dependencies were updated
308
+ * dependencies
309
+ * @twin.org/core bumped from 0.0.3-next.28 to 0.0.3-next.29
310
+ * @twin.org/nameof bumped from 0.0.3-next.28 to 0.0.3-next.29
311
+ * devDependencies
312
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.28 to 0.0.3-next.29
313
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.28 to 0.0.3-next.29
314
+
315
+ ## [0.0.3-next.28](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.27...cli-core-v0.0.3-next.28) (2026-03-27)
316
+
317
+
318
+ ### Miscellaneous Chores
319
+
320
+ * **cli-core:** Synchronize repo versions
321
+
322
+
323
+ ### Dependencies
324
+
325
+ * The following workspace dependencies were updated
326
+ * dependencies
327
+ * @twin.org/core bumped from 0.0.3-next.27 to 0.0.3-next.28
328
+ * @twin.org/nameof bumped from 0.0.3-next.27 to 0.0.3-next.28
329
+ * devDependencies
330
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.27 to 0.0.3-next.28
331
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.27 to 0.0.3-next.28
332
+
333
+ ## [0.0.3-next.27](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.26...cli-core-v0.0.3-next.27) (2026-03-27)
334
+
335
+
336
+ ### Miscellaneous Chores
337
+
338
+ * **cli-core:** Synchronize repo versions
339
+
340
+
341
+ ### Dependencies
342
+
343
+ * The following workspace dependencies were updated
344
+ * dependencies
345
+ * @twin.org/core bumped from 0.0.3-next.26 to 0.0.3-next.27
346
+ * @twin.org/nameof bumped from 0.0.3-next.26 to 0.0.3-next.27
347
+ * devDependencies
348
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.26 to 0.0.3-next.27
349
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.26 to 0.0.3-next.27
350
+
351
+ ## [0.0.3-next.26](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.25...cli-core-v0.0.3-next.26) (2026-03-24)
352
+
353
+
354
+ ### Miscellaneous Chores
355
+
356
+ * **cli-core:** Synchronize repo versions
357
+
358
+
359
+ ### Dependencies
360
+
361
+ * The following workspace dependencies were updated
362
+ * dependencies
363
+ * @twin.org/core bumped from 0.0.3-next.25 to 0.0.3-next.26
364
+ * @twin.org/nameof bumped from 0.0.3-next.25 to 0.0.3-next.26
365
+ * devDependencies
366
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.25 to 0.0.3-next.26
367
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.25 to 0.0.3-next.26
368
+
369
+ ## [0.0.3-next.25](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.24...cli-core-v0.0.3-next.25) (2026-03-23)
370
+
371
+
372
+ ### Miscellaneous Chores
373
+
374
+ * **cli-core:** Synchronize repo versions
375
+
376
+
377
+ ### Dependencies
378
+
379
+ * The following workspace dependencies were updated
380
+ * dependencies
381
+ * @twin.org/core bumped from 0.0.3-next.24 to 0.0.3-next.25
382
+ * @twin.org/nameof bumped from 0.0.3-next.24 to 0.0.3-next.25
383
+ * devDependencies
384
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.24 to 0.0.3-next.25
385
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.24 to 0.0.3-next.25
386
+
387
+ ## [0.0.3-next.24](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.23...cli-core-v0.0.3-next.24) (2026-03-19)
388
+
389
+
390
+ ### Bug Fixes
391
+
392
+ * ensure __decorate is defined for decorators ([103a563](https://github.com/iotaledger/twin-framework/commit/103a563ce01ebdef6240d2e590e7b026e8692684))
393
+
394
+
395
+ ### Dependencies
396
+
397
+ * The following workspace dependencies were updated
398
+ * dependencies
399
+ * @twin.org/core bumped from 0.0.3-next.23 to 0.0.3-next.24
400
+ * @twin.org/nameof bumped from 0.0.3-next.23 to 0.0.3-next.24
401
+ * devDependencies
402
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.23 to 0.0.3-next.24
403
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.23 to 0.0.3-next.24
404
+
405
+ ## [0.0.3-next.23](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.22...cli-core-v0.0.3-next.23) (2026-03-17)
406
+
407
+
408
+ ### Miscellaneous Chores
409
+
410
+ * **cli-core:** Synchronize repo versions
411
+
412
+
413
+ ### Dependencies
414
+
415
+ * The following workspace dependencies were updated
416
+ * dependencies
417
+ * @twin.org/core bumped from 0.0.3-next.22 to 0.0.3-next.23
418
+ * @twin.org/nameof bumped from 0.0.3-next.22 to 0.0.3-next.23
419
+ * devDependencies
420
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.22 to 0.0.3-next.23
421
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.22 to 0.0.3-next.23
422
+
423
+ ## [0.0.3-next.22](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.21...cli-core-v0.0.3-next.22) (2026-02-26)
424
+
425
+
426
+ ### Miscellaneous Chores
427
+
428
+ * **cli-core:** Synchronize repo versions
429
+
430
+
431
+ ### Dependencies
432
+
433
+ * The following workspace dependencies were updated
434
+ * dependencies
435
+ * @twin.org/core bumped from 0.0.3-next.21 to 0.0.3-next.22
436
+ * @twin.org/nameof bumped from 0.0.3-next.21 to 0.0.3-next.22
437
+ * devDependencies
438
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.21 to 0.0.3-next.22
439
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.21 to 0.0.3-next.22
440
+
441
+ ## [0.0.3-next.21](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.20...cli-core-v0.0.3-next.21) (2026-02-26)
442
+
443
+
444
+ ### Features
445
+
446
+ * add CLIParam.arrayOneOf ([18f0815](https://github.com/iotaledger/twin-framework/commit/18f08157e5305cddf65d09b36a51a91a0873e396))
447
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
448
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
449
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
450
+ * improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
451
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
452
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
453
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
454
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
455
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
456
+
457
+
458
+ ### Bug Fixes
459
+
460
+ * cli display output for JSON to allow infinite depth ([2a06f52](https://github.com/iotaledger/twin-framework/commit/2a06f52c92dbc51a4969d651486a0c3548529929))
461
+ * export the json locales for cli-core ([188b47d](https://github.com/iotaledger/twin-framework/commit/188b47d3339deb42d08c32715909337749fb0e4a))
462
+ * framework pr naming convention ([#142](https://github.com/iotaledger/twin-framework/issues/142)) ([e29acee](https://github.com/iotaledger/twin-framework/commit/e29acee2fbec42506091956d6ba8b8ce25a90008))
463
+
464
+
465
+ ### Dependencies
466
+
467
+ * The following workspace dependencies were updated
468
+ * dependencies
469
+ * @twin.org/core bumped from 0.0.3-next.20 to 0.0.3-next.21
470
+ * @twin.org/nameof bumped from 0.0.3-next.20 to 0.0.3-next.21
471
+ * devDependencies
472
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.20 to 0.0.3-next.21
473
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.20 to 0.0.3-next.21
474
+
475
+ ## [0.0.3-next.20](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.19...cli-core-v0.0.3-next.20) (2026-02-26)
476
+
477
+
478
+ ### Miscellaneous Chores
479
+
480
+ * **cli-core:** Synchronize repo versions
481
+
482
+
483
+ ### Dependencies
484
+
485
+ * The following workspace dependencies were updated
486
+ * dependencies
487
+ * @twin.org/core bumped from 0.0.3-next.19 to 0.0.3-next.20
488
+ * @twin.org/nameof bumped from 0.0.3-next.19 to 0.0.3-next.20
489
+ * devDependencies
490
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.19 to 0.0.3-next.20
491
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.19 to 0.0.3-next.20
492
+
493
+ ## [0.0.3-next.19](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.18...cli-core-v0.0.3-next.19) (2026-02-26)
494
+
495
+
496
+ ### Miscellaneous Chores
497
+
498
+ * **cli-core:** Synchronize repo versions
499
+
500
+
501
+ ### Dependencies
502
+
503
+ * The following workspace dependencies were updated
504
+ * dependencies
505
+ * @twin.org/core bumped from 0.0.3-next.18 to 0.0.3-next.19
506
+ * @twin.org/nameof bumped from 0.0.3-next.18 to 0.0.3-next.19
507
+ * devDependencies
508
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.18 to 0.0.3-next.19
509
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.18 to 0.0.3-next.19
510
+
511
+ ## [0.0.3-next.18](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.17...cli-core-v0.0.3-next.18) (2026-02-23)
512
+
513
+
514
+ ### Bug Fixes
515
+
516
+ * export the json locales for cli-core ([188b47d](https://github.com/iotaledger/twin-framework/commit/188b47d3339deb42d08c32715909337749fb0e4a))
517
+
518
+
519
+ ### Dependencies
520
+
521
+ * The following workspace dependencies were updated
522
+ * dependencies
523
+ * @twin.org/core bumped from 0.0.3-next.17 to 0.0.3-next.18
524
+ * @twin.org/nameof bumped from 0.0.3-next.17 to 0.0.3-next.18
525
+ * devDependencies
526
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.17 to 0.0.3-next.18
527
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.17 to 0.0.3-next.18
528
+
529
+ ## [0.0.3-next.17](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.16...cli-core-v0.0.3-next.17) (2026-02-09)
530
+
531
+
532
+ ### Miscellaneous Chores
533
+
534
+ * **cli-core:** Synchronize repo versions
535
+
536
+
537
+ ### Dependencies
538
+
539
+ * The following workspace dependencies were updated
540
+ * dependencies
541
+ * @twin.org/core bumped from 0.0.3-next.16 to 0.0.3-next.17
542
+ * @twin.org/nameof bumped from 0.0.3-next.16 to 0.0.3-next.17
543
+ * devDependencies
544
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.16 to 0.0.3-next.17
545
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.16 to 0.0.3-next.17
546
+
547
+ ## [0.0.3-next.16](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.15...cli-core-v0.0.3-next.16) (2026-02-06)
548
+
549
+
550
+ ### Miscellaneous Chores
551
+
552
+ * **cli-core:** Synchronize repo versions
553
+
554
+
555
+ ### Dependencies
556
+
557
+ * The following workspace dependencies were updated
558
+ * dependencies
559
+ * @twin.org/core bumped from 0.0.3-next.15 to 0.0.3-next.16
560
+ * @twin.org/nameof bumped from 0.0.3-next.15 to 0.0.3-next.16
561
+ * devDependencies
562
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.15 to 0.0.3-next.16
563
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.15 to 0.0.3-next.16
564
+
565
+ ## [0.0.3-next.15](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.14...cli-core-v0.0.3-next.15) (2026-01-29)
566
+
567
+
568
+ ### Miscellaneous Chores
569
+
570
+ * **cli-core:** Synchronize repo versions
571
+
572
+
573
+ ### Dependencies
574
+
575
+ * The following workspace dependencies were updated
576
+ * dependencies
577
+ * @twin.org/core bumped from 0.0.3-next.14 to 0.0.3-next.15
578
+ * @twin.org/nameof bumped from 0.0.3-next.14 to 0.0.3-next.15
579
+ * devDependencies
580
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.14 to 0.0.3-next.15
581
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.14 to 0.0.3-next.15
582
+
583
+ ## [0.0.3-next.14](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.13...cli-core-v0.0.3-next.14) (2026-01-22)
584
+
585
+
586
+ ### Miscellaneous Chores
587
+
588
+ * **cli-core:** Synchronize repo versions
589
+
590
+
591
+ ### Dependencies
592
+
593
+ * The following workspace dependencies were updated
594
+ * dependencies
595
+ * @twin.org/core bumped from 0.0.3-next.13 to 0.0.3-next.14
596
+ * @twin.org/nameof bumped from 0.0.3-next.13 to 0.0.3-next.14
597
+ * devDependencies
598
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.13 to 0.0.3-next.14
599
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.13 to 0.0.3-next.14
600
+
601
+ ## [0.0.3-next.13](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.12...cli-core-v0.0.3-next.13) (2026-01-08)
602
+
603
+
604
+ ### Miscellaneous Chores
605
+
606
+ * **cli-core:** Synchronize repo versions
607
+
608
+
609
+ ### Dependencies
610
+
611
+ * The following workspace dependencies were updated
612
+ * dependencies
613
+ * @twin.org/core bumped from 0.0.3-next.12 to 0.0.3-next.13
614
+ * @twin.org/nameof bumped from 0.0.3-next.12 to 0.0.3-next.13
615
+ * devDependencies
616
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.12 to 0.0.3-next.13
617
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.12 to 0.0.3-next.13
618
+
619
+ ## [0.0.3-next.12](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.11...cli-core-v0.0.3-next.12) (2026-01-08)
620
+
621
+
622
+ ### Miscellaneous Chores
623
+
624
+ * **cli-core:** Synchronize repo versions
625
+
626
+
627
+ ### Dependencies
628
+
629
+ * The following workspace dependencies were updated
630
+ * dependencies
631
+ * @twin.org/core bumped from 0.0.3-next.11 to 0.0.3-next.12
632
+ * @twin.org/nameof bumped from 0.0.3-next.11 to 0.0.3-next.12
633
+ * devDependencies
634
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.11 to 0.0.3-next.12
635
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.11 to 0.0.3-next.12
636
+
637
+ ## [0.0.3-next.11](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.10...cli-core-v0.0.3-next.11) (2026-01-07)
638
+
639
+
640
+ ### Miscellaneous Chores
641
+
642
+ * **cli-core:** Synchronize repo versions
643
+
644
+
645
+ ### Dependencies
646
+
647
+ * The following workspace dependencies were updated
648
+ * dependencies
649
+ * @twin.org/core bumped from 0.0.3-next.10 to 0.0.3-next.11
650
+ * @twin.org/nameof bumped from 0.0.3-next.10 to 0.0.3-next.11
651
+ * devDependencies
652
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.10 to 0.0.3-next.11
653
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.10 to 0.0.3-next.11
654
+
655
+ ## [0.0.3-next.10](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.9...cli-core-v0.0.3-next.10) (2026-01-07)
656
+
657
+
658
+ ### Miscellaneous Chores
659
+
660
+ * **cli-core:** Synchronize repo versions
661
+
662
+
663
+ ### Dependencies
664
+
665
+ * The following workspace dependencies were updated
666
+ * dependencies
667
+ * @twin.org/core bumped from 0.0.3-next.9 to 0.0.3-next.10
668
+ * @twin.org/nameof bumped from 0.0.3-next.9 to 0.0.3-next.10
669
+ * devDependencies
670
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.9 to 0.0.3-next.10
671
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.9 to 0.0.3-next.10
672
+
673
+ ## [0.0.3-next.9](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.8...cli-core-v0.0.3-next.9) (2026-01-05)
674
+
675
+
676
+ ### Miscellaneous Chores
677
+
678
+ * **cli-core:** Synchronize repo versions
679
+
680
+
681
+ ### Dependencies
682
+
683
+ * The following workspace dependencies were updated
684
+ * dependencies
685
+ * @twin.org/core bumped from 0.0.3-next.8 to 0.0.3-next.9
686
+ * @twin.org/nameof bumped from 0.0.3-next.8 to 0.0.3-next.9
687
+ * devDependencies
688
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.8 to 0.0.3-next.9
689
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.8 to 0.0.3-next.9
690
+
691
+ ## [0.0.3-next.8](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.7...cli-core-v0.0.3-next.8) (2025-11-26)
692
+
693
+
694
+ ### Miscellaneous Chores
695
+
696
+ * **cli-core:** Synchronize repo versions
697
+
698
+
699
+ ### Dependencies
700
+
701
+ * The following workspace dependencies were updated
702
+ * dependencies
703
+ * @twin.org/core bumped from 0.0.3-next.7 to 0.0.3-next.8
704
+ * @twin.org/nameof bumped from 0.0.3-next.7 to 0.0.3-next.8
705
+ * devDependencies
706
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.7 to 0.0.3-next.8
707
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.7 to 0.0.3-next.8
708
+
709
+ ## [0.0.3-next.7](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.6...cli-core-v0.0.3-next.7) (2025-11-25)
710
+
711
+
712
+ ### Features
713
+
714
+ * add CLIParam.arrayOneOf ([18f0815](https://github.com/iotaledger/twin-framework/commit/18f08157e5305cddf65d09b36a51a91a0873e396))
715
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
716
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
717
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
718
+ * improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
719
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
720
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
721
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
722
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
723
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
724
+
725
+
726
+ ### Bug Fixes
727
+
728
+ * cli display output for JSON to allow infinite depth ([2a06f52](https://github.com/iotaledger/twin-framework/commit/2a06f52c92dbc51a4969d651486a0c3548529929))
729
+ * framework pr naming convention ([#142](https://github.com/iotaledger/twin-framework/issues/142)) ([e29acee](https://github.com/iotaledger/twin-framework/commit/e29acee2fbec42506091956d6ba8b8ce25a90008))
730
+
731
+
732
+ ### Dependencies
733
+
734
+ * The following workspace dependencies were updated
735
+ * dependencies
736
+ * @twin.org/core bumped from 0.0.3-next.6 to 0.0.3-next.7
737
+ * @twin.org/nameof bumped from 0.0.3-next.6 to 0.0.3-next.7
738
+ * devDependencies
739
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.6 to 0.0.3-next.7
740
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.6 to 0.0.3-next.7
741
+
742
+ ## [0.0.3-next.6](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.5...cli-core-v0.0.3-next.6) (2025-11-25)
743
+
744
+
745
+ ### Miscellaneous Chores
746
+
747
+ * **cli-core:** Synchronize repo versions
748
+
749
+
750
+ ### Dependencies
751
+
752
+ * The following workspace dependencies were updated
753
+ * dependencies
754
+ * @twin.org/core bumped from 0.0.3-next.5 to 0.0.3-next.6
755
+ * @twin.org/nameof bumped from 0.0.3-next.5 to 0.0.3-next.6
756
+ * devDependencies
757
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.5 to 0.0.3-next.6
758
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.5 to 0.0.3-next.6
759
+
760
+ ## [0.0.3-next.5](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.4...cli-core-v0.0.3-next.5) (2025-11-20)
761
+
762
+
763
+ ### Miscellaneous Chores
764
+
765
+ * **cli-core:** Synchronize repo versions
766
+
767
+
768
+ ### Dependencies
769
+
770
+ * The following workspace dependencies were updated
771
+ * dependencies
772
+ * @twin.org/core bumped from 0.0.3-next.4 to 0.0.3-next.5
773
+ * @twin.org/nameof bumped from 0.0.3-next.4 to 0.0.3-next.5
774
+ * devDependencies
775
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.4 to 0.0.3-next.5
776
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.4 to 0.0.3-next.5
777
+
778
+ ## [0.0.3-next.4](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.3...cli-core-v0.0.3-next.4) (2025-11-13)
779
+
780
+
781
+ ### Miscellaneous Chores
782
+
783
+ * **cli-core:** Synchronize repo versions
784
+
785
+
786
+ ### Dependencies
787
+
788
+ * The following workspace dependencies were updated
789
+ * dependencies
790
+ * @twin.org/core bumped from 0.0.3-next.3 to 0.0.3-next.4
791
+ * @twin.org/nameof bumped from 0.0.3-next.3 to 0.0.3-next.4
792
+ * devDependencies
793
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.3 to 0.0.3-next.4
794
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.3 to 0.0.3-next.4
795
+
796
+ ## [0.0.3-next.3](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.2...cli-core-v0.0.3-next.3) (2025-11-12)
797
+
798
+
799
+ ### Miscellaneous Chores
800
+
801
+ * **cli-core:** Synchronize repo versions
802
+
803
+
804
+ ### Dependencies
805
+
806
+ * The following workspace dependencies were updated
807
+ * dependencies
808
+ * @twin.org/core bumped from 0.0.3-next.2 to 0.0.3-next.3
809
+ * @twin.org/nameof bumped from 0.0.3-next.2 to 0.0.3-next.3
810
+ * devDependencies
811
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.2 to 0.0.3-next.3
812
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.2 to 0.0.3-next.3
813
+
814
+ ## [0.0.3-next.2](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.1...cli-core-v0.0.3-next.2) (2025-11-12)
815
+
816
+
817
+ ### Miscellaneous Chores
818
+
819
+ * **cli-core:** Synchronize repo versions
820
+
821
+
822
+ ### Dependencies
823
+
824
+ * The following workspace dependencies were updated
825
+ * dependencies
826
+ * @twin.org/core bumped from 0.0.3-next.1 to 0.0.3-next.2
827
+ * @twin.org/nameof bumped from 0.0.3-next.1 to 0.0.3-next.2
828
+ * devDependencies
829
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.1 to 0.0.3-next.2
830
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.1 to 0.0.3-next.2
831
+
832
+ ## [0.0.3-next.1](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.3-next.0...cli-core-v0.0.3-next.1) (2025-11-10)
833
+
834
+
835
+ ### Features
836
+
837
+ * add CLIParam.arrayOneOf ([18f0815](https://github.com/iotaledger/twin-framework/commit/18f08157e5305cddf65d09b36a51a91a0873e396))
838
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
839
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
840
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
841
+ * improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
842
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
843
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
844
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
845
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
846
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
847
+
848
+
849
+ ### Bug Fixes
850
+
851
+ * cli display output for JSON to allow infinite depth ([2a06f52](https://github.com/iotaledger/twin-framework/commit/2a06f52c92dbc51a4969d651486a0c3548529929))
852
+ * framework pr naming convention ([#142](https://github.com/iotaledger/twin-framework/issues/142)) ([e29acee](https://github.com/iotaledger/twin-framework/commit/e29acee2fbec42506091956d6ba8b8ce25a90008))
853
+
854
+
855
+ ### Dependencies
856
+
857
+ * The following workspace dependencies were updated
858
+ * dependencies
859
+ * @twin.org/core bumped from 0.0.3-next.0 to 0.0.3-next.1
860
+ * @twin.org/nameof bumped from 0.0.3-next.0 to 0.0.3-next.1
861
+ * devDependencies
862
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.0 to 0.0.3-next.1
863
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.0 to 0.0.3-next.1
864
+
865
+ ## [0.0.2-next.22](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.2-next.21...cli-core-v0.0.2-next.22) (2025-10-10)
866
+
867
+
868
+ ### Miscellaneous Chores
869
+
870
+ * **cli-core:** Synchronize repo versions
871
+
872
+
873
+ ### Dependencies
874
+
875
+ * The following workspace dependencies were updated
876
+ * dependencies
877
+ * @twin.org/core bumped from 0.0.2-next.21 to 0.0.2-next.22
878
+ * @twin.org/nameof bumped from 0.0.2-next.21 to 0.0.2-next.22
879
+ * devDependencies
880
+ * @twin.org/nameof-transformer bumped from 0.0.2-next.21 to 0.0.2-next.22
881
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.21 to 0.0.2-next.22
882
+
883
+ ## [0.0.2-next.21](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.2-next.20...cli-core-v0.0.2-next.21) (2025-10-09)
884
+
885
+
886
+ ### Features
887
+
888
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
889
+
890
+
891
+ ### Dependencies
892
+
893
+ * The following workspace dependencies were updated
894
+ * dependencies
895
+ * @twin.org/core bumped from 0.0.2-next.20 to 0.0.2-next.21
896
+ * @twin.org/nameof bumped from 0.0.2-next.20 to 0.0.2-next.21
897
+ * devDependencies
898
+ * @twin.org/nameof-transformer bumped from 0.0.2-next.20 to 0.0.2-next.21
899
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.20 to 0.0.2-next.21
900
+
901
+ ## [0.0.2-next.20](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.2-next.19...cli-core-v0.0.2-next.20) (2025-10-02)
902
+
903
+
904
+ ### Miscellaneous Chores
905
+
906
+ * **cli-core:** Synchronize repo versions
907
+
908
+
909
+ ### Dependencies
910
+
911
+ * The following workspace dependencies were updated
912
+ * dependencies
913
+ * @twin.org/core bumped from 0.0.2-next.19 to 0.0.2-next.20
914
+ * @twin.org/crypto bumped from 0.0.2-next.19 to 0.0.2-next.20
915
+ * @twin.org/nameof bumped from 0.0.2-next.19 to 0.0.2-next.20
916
+ * devDependencies
917
+ * @twin.org/nameof-transformer bumped from 0.0.2-next.19 to 0.0.2-next.20
918
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.19 to 0.0.2-next.20
919
+
920
+ ## [0.0.2-next.19](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.2-next.18...cli-core-v0.0.2-next.19) (2025-09-30)
921
+
922
+
923
+ ### Miscellaneous Chores
924
+
925
+ * **cli-core:** Synchronize repo versions
926
+
927
+
928
+ ### Dependencies
929
+
930
+ * The following workspace dependencies were updated
931
+ * dependencies
932
+ * @twin.org/core bumped from 0.0.2-next.18 to 0.0.2-next.19
933
+ * @twin.org/crypto bumped from 0.0.2-next.18 to 0.0.2-next.19
934
+ * @twin.org/nameof bumped from 0.0.2-next.18 to 0.0.2-next.19
935
+ * devDependencies
936
+ * @twin.org/nameof-transformer bumped from 0.0.2-next.18 to 0.0.2-next.19
937
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.18 to 0.0.2-next.19
938
+
939
+ ## [0.0.2-next.18](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.2-next.17...cli-core-v0.0.2-next.18) (2025-09-29)
940
+
941
+
942
+ ### Miscellaneous Chores
943
+
944
+ * **cli-core:** Synchronize repo versions
945
+
946
+
947
+ ### Dependencies
948
+
949
+ * The following workspace dependencies were updated
950
+ * dependencies
951
+ * @twin.org/core bumped from 0.0.2-next.17 to 0.0.2-next.18
952
+ * @twin.org/crypto bumped from 0.0.2-next.17 to 0.0.2-next.18
953
+ * @twin.org/nameof bumped from 0.0.2-next.17 to 0.0.2-next.18
954
+ * devDependencies
955
+ * @twin.org/nameof-transformer bumped from 0.0.2-next.17 to 0.0.2-next.18
956
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.17 to 0.0.2-next.18
957
+
958
+ ## [0.0.2-next.17](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.2-next.16...cli-core-v0.0.2-next.17) (2025-09-29)
959
+
960
+
961
+ ### Miscellaneous Chores
962
+
963
+ * **cli-core:** Synchronize repo versions
964
+
965
+
966
+ ### Dependencies
967
+
968
+ * The following workspace dependencies were updated
969
+ * dependencies
970
+ * @twin.org/core bumped from 0.0.2-next.16 to 0.0.2-next.17
971
+ * @twin.org/crypto bumped from 0.0.2-next.16 to 0.0.2-next.17
972
+ * @twin.org/nameof bumped from 0.0.2-next.16 to 0.0.2-next.17
973
+ * devDependencies
974
+ * @twin.org/nameof-transformer bumped from 0.0.2-next.16 to 0.0.2-next.17
975
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.16 to 0.0.2-next.17
976
+
977
+ ## [0.0.2-next.16](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.2-next.15...cli-core-v0.0.2-next.16) (2025-09-28)
978
+
979
+
980
+ ### Miscellaneous Chores
981
+
982
+ * **cli-core:** Synchronize repo versions
983
+
984
+
985
+ ### Dependencies
986
+
987
+ * The following workspace dependencies were updated
988
+ * dependencies
989
+ * @twin.org/core bumped from 0.0.2-next.15 to 0.0.2-next.16
990
+ * @twin.org/crypto bumped from 0.0.2-next.15 to 0.0.2-next.16
991
+ * @twin.org/nameof bumped from 0.0.2-next.15 to 0.0.2-next.16
992
+ * devDependencies
993
+ * @twin.org/nameof-transformer bumped from 0.0.2-next.15 to 0.0.2-next.16
994
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.15 to 0.0.2-next.16
995
+
996
+ ## [0.0.2-next.15](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.2-next.14...cli-core-v0.0.2-next.15) (2025-09-22)
997
+
998
+
999
+ ### Miscellaneous Chores
1000
+
1001
+ * **cli-core:** Synchronize repo versions
1002
+
1003
+
1004
+ ### Dependencies
1005
+
1006
+ * The following workspace dependencies were updated
1007
+ * dependencies
1008
+ * @twin.org/core bumped from 0.0.2-next.14 to 0.0.2-next.15
1009
+ * @twin.org/crypto bumped from 0.0.2-next.14 to 0.0.2-next.15
1010
+ * @twin.org/nameof bumped from 0.0.2-next.14 to 0.0.2-next.15
1011
+ * devDependencies
1012
+ * @twin.org/nameof-transformer bumped from 0.0.2-next.14 to 0.0.2-next.15
1013
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.14 to 0.0.2-next.15
1014
+
1015
+ ## [0.0.2-next.14](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.2-next.13...cli-core-v0.0.2-next.14) (2025-09-22)
1016
+
1017
+
1018
+ ### Miscellaneous Chores
1019
+
1020
+ * **cli-core:** Synchronize repo versions
1021
+
1022
+
1023
+ ### Dependencies
1024
+
1025
+ * The following workspace dependencies were updated
1026
+ * dependencies
1027
+ * @twin.org/core bumped from 0.0.2-next.13 to 0.0.2-next.14
1028
+ * @twin.org/crypto bumped from 0.0.2-next.13 to 0.0.2-next.14
1029
+ * @twin.org/nameof bumped from 0.0.2-next.13 to 0.0.2-next.14
1030
+ * devDependencies
1031
+ * @twin.org/nameof-transformer bumped from 0.0.2-next.13 to 0.0.2-next.14
1032
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.13 to 0.0.2-next.14
1033
+
1034
+ ## [0.0.2-next.13](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.2-next.12...cli-core-v0.0.2-next.13) (2025-09-22)
1035
+
1036
+
1037
+ ### Miscellaneous Chores
1038
+
1039
+ * **cli-core:** Synchronize repo versions
1040
+
1041
+
1042
+ ### Dependencies
1043
+
1044
+ * The following workspace dependencies were updated
1045
+ * dependencies
1046
+ * @twin.org/core bumped from 0.0.2-next.12 to 0.0.2-next.13
1047
+ * @twin.org/crypto bumped from 0.0.2-next.12 to 0.0.2-next.13
1048
+ * @twin.org/nameof bumped from 0.0.2-next.12 to 0.0.2-next.13
1049
+ * devDependencies
1050
+ * @twin.org/nameof-transformer bumped from 0.0.2-next.12 to 0.0.2-next.13
1051
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.12 to 0.0.2-next.13
1052
+
1053
+ ## [0.0.2-next.12](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.2-next.11...cli-core-v0.0.2-next.12) (2025-09-15)
1054
+
1055
+
1056
+ ### Miscellaneous Chores
1057
+
1058
+ * **cli-core:** Synchronize repo versions
1059
+
1060
+
1061
+ ### Dependencies
1062
+
1063
+ * The following workspace dependencies were updated
1064
+ * dependencies
1065
+ * @twin.org/core bumped from 0.0.2-next.11 to 0.0.2-next.12
1066
+ * @twin.org/crypto bumped from 0.0.2-next.11 to 0.0.2-next.12
1067
+ * @twin.org/nameof bumped from 0.0.2-next.11 to 0.0.2-next.12
1068
+ * devDependencies
1069
+ * @twin.org/nameof-transformer bumped from 0.0.2-next.11 to 0.0.2-next.12
1070
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.11 to 0.0.2-next.12
1071
+
1072
+ ## [0.0.2-next.11](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.2-next.10...cli-core-v0.0.2-next.11) (2025-09-15)
1073
+
1074
+
1075
+ ### Bug Fixes
1076
+
1077
+ * cli display output for JSON to allow infinite depth ([2a06f52](https://github.com/iotaledger/twin-framework/commit/2a06f52c92dbc51a4969d651486a0c3548529929))
1078
+
1079
+
1080
+ ### Dependencies
1081
+
1082
+ * The following workspace dependencies were updated
1083
+ * dependencies
1084
+ * @twin.org/core bumped from 0.0.2-next.10 to 0.0.2-next.11
1085
+ * @twin.org/crypto bumped from 0.0.2-next.10 to 0.0.2-next.11
1086
+ * @twin.org/nameof bumped from 0.0.2-next.10 to 0.0.2-next.11
1087
+ * devDependencies
1088
+ * @twin.org/nameof-transformer bumped from 0.0.2-next.10 to 0.0.2-next.11
1089
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.10 to 0.0.2-next.11
1090
+
1091
+ ## [0.0.2-next.10](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.2-next.9...cli-core-v0.0.2-next.10) (2025-09-11)
1092
+
1093
+
1094
+ ### Features
1095
+
1096
+ * add CLIParam.arrayOneOf ([18f0815](https://github.com/iotaledger/twin-framework/commit/18f08157e5305cddf65d09b36a51a91a0873e396))
1097
+
1098
+
1099
+ ### Dependencies
1100
+
1101
+ * The following workspace dependencies were updated
1102
+ * dependencies
1103
+ * @twin.org/core bumped from 0.0.2-next.9 to 0.0.2-next.10
1104
+ * @twin.org/crypto bumped from 0.0.2-next.9 to 0.0.2-next.10
1105
+ * @twin.org/nameof bumped from 0.0.2-next.9 to 0.0.2-next.10
1106
+ * devDependencies
1107
+ * @twin.org/nameof-transformer bumped from 0.0.2-next.9 to 0.0.2-next.10
1108
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.9 to 0.0.2-next.10
1109
+
1110
+ ## [0.0.2-next.9](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.2-next.8...cli-core-v0.0.2-next.9) (2025-09-08)
1111
+
1112
+
1113
+ ### Miscellaneous Chores
1114
+
1115
+ * **cli-core:** Synchronize repo versions
1116
+
1117
+
1118
+ ### Dependencies
1119
+
1120
+ * The following workspace dependencies were updated
1121
+ * dependencies
1122
+ * @twin.org/core bumped from 0.0.2-next.8 to 0.0.2-next.9
1123
+ * @twin.org/crypto bumped from 0.0.2-next.8 to 0.0.2-next.9
1124
+ * @twin.org/nameof bumped from 0.0.2-next.8 to 0.0.2-next.9
1125
+ * devDependencies
1126
+ * @twin.org/nameof-transformer bumped from 0.0.2-next.8 to 0.0.2-next.9
1127
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.8 to 0.0.2-next.9
1128
+
1129
+ ## [0.0.2-next.8](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.2-next.7...cli-core-v0.0.2-next.8) (2025-09-05)
4
1130
 
5
1131
 
6
1132
  ### Miscellaneous Chores
@@ -19,12 +1145,12 @@
19
1145
  * @twin.org/nameof-transformer bumped from 0.0.2-next.7 to 0.0.2-next.8
20
1146
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.7 to 0.0.2-next.8
21
1147
 
22
- ## [0.0.2-next.7](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.2-next.6...cli-core-v0.0.2-next.7) (2025-08-29)
1148
+ ## [0.0.2-next.7](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.2-next.6...cli-core-v0.0.2-next.7) (2025-08-29)
23
1149
 
24
1150
 
25
1151
  ### Features
26
1152
 
27
- * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
1153
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
28
1154
 
29
1155
 
30
1156
  ### Dependencies
@@ -38,7 +1164,7 @@
38
1164
  * @twin.org/nameof-transformer bumped from 0.0.2-next.6 to 0.0.2-next.7
39
1165
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.6 to 0.0.2-next.7
40
1166
 
41
- ## [0.0.2-next.6](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.2-next.5...cli-core-v0.0.2-next.6) (2025-08-27)
1167
+ ## [0.0.2-next.6](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.2-next.5...cli-core-v0.0.2-next.6) (2025-08-27)
42
1168
 
43
1169
 
44
1170
  ### Miscellaneous Chores
@@ -57,12 +1183,12 @@
57
1183
  * @twin.org/nameof-transformer bumped from 0.0.2-next.5 to 0.0.2-next.6
58
1184
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.5 to 0.0.2-next.6
59
1185
 
60
- ## [0.0.2-next.5](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.2-next.4...cli-core-v0.0.2-next.5) (2025-08-19)
1186
+ ## [0.0.2-next.5](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.2-next.4...cli-core-v0.0.2-next.5) (2025-08-19)
61
1187
 
62
1188
 
63
1189
  ### Features
64
1190
 
65
- * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
1191
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
66
1192
 
67
1193
 
68
1194
  ### Dependencies
@@ -76,7 +1202,7 @@
76
1202
  * @twin.org/nameof-transformer bumped from 0.0.2-next.4 to 0.0.2-next.5
77
1203
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.4 to 0.0.2-next.5
78
1204
 
79
- ## [0.0.2-next.4](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.2-next.3...cli-core-v0.0.2-next.4) (2025-08-15)
1205
+ ## [0.0.2-next.4](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.2-next.3...cli-core-v0.0.2-next.4) (2025-08-15)
80
1206
 
81
1207
 
82
1208
  ### Miscellaneous Chores
@@ -95,21 +1221,21 @@
95
1221
  * @twin.org/nameof-transformer bumped from 0.0.2-next.3 to 0.0.2-next.4
96
1222
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.3 to 0.0.2-next.4
97
1223
 
98
- ## [0.0.2-next.3](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.2-next.2...cli-core-v0.0.2-next.3) (2025-08-06)
1224
+ ## [0.0.2-next.3](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.2-next.2...cli-core-v0.0.2-next.3) (2025-08-06)
99
1225
 
100
1226
 
101
1227
  ### Features
102
1228
 
103
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
104
- * improve error display in CLI ([94b6ca8](https://github.com/twinfoundation/framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
105
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
106
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
107
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1229
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1230
+ * improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
1231
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1232
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1233
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
108
1234
 
109
1235
 
110
1236
  ### Bug Fixes
111
1237
 
112
- * framework pr naming convention ([#142](https://github.com/twinfoundation/framework/issues/142)) ([e29acee](https://github.com/twinfoundation/framework/commit/e29acee2fbec42506091956d6ba8b8ce25a90008))
1238
+ * framework pr naming convention ([#142](https://github.com/iotaledger/twin-framework/issues/142)) ([e29acee](https://github.com/iotaledger/twin-framework/commit/e29acee2fbec42506091956d6ba8b8ce25a90008))
113
1239
 
114
1240
 
115
1241
  ### Dependencies
@@ -123,21 +1249,21 @@
123
1249
  * @twin.org/nameof-transformer bumped from 0.0.2-next.2 to 0.0.2-next.3
124
1250
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.2 to 0.0.2-next.3
125
1251
 
126
- ## [0.0.2-next.2](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.2-next.1...cli-core-v0.0.2-next.2) (2025-08-06)
1252
+ ## [0.0.2-next.2](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.2-next.1...cli-core-v0.0.2-next.2) (2025-08-06)
127
1253
 
128
1254
 
129
1255
  ### Features
130
1256
 
131
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
132
- * improve error display in CLI ([94b6ca8](https://github.com/twinfoundation/framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
133
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
134
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
135
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1257
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1258
+ * improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
1259
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1260
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1261
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
136
1262
 
137
1263
 
138
1264
  ### Bug Fixes
139
1265
 
140
- * framework pr naming convention ([#142](https://github.com/twinfoundation/framework/issues/142)) ([e29acee](https://github.com/twinfoundation/framework/commit/e29acee2fbec42506091956d6ba8b8ce25a90008))
1266
+ * framework pr naming convention ([#142](https://github.com/iotaledger/twin-framework/issues/142)) ([e29acee](https://github.com/iotaledger/twin-framework/commit/e29acee2fbec42506091956d6ba8b8ce25a90008))
141
1267
 
142
1268
 
143
1269
  ### Dependencies
@@ -151,21 +1277,21 @@
151
1277
  * @twin.org/nameof-transformer bumped from 0.0.2-next.1 to 0.0.2-next.2
152
1278
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.1 to 0.0.2-next.2
153
1279
 
154
- ## [0.0.2-next.1](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.2-next.0...cli-core-v0.0.2-next.1) (2025-08-06)
1280
+ ## [0.0.2-next.1](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.2-next.0...cli-core-v0.0.2-next.1) (2025-08-06)
155
1281
 
156
1282
 
157
1283
  ### Features
158
1284
 
159
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
160
- * improve error display in CLI ([94b6ca8](https://github.com/twinfoundation/framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
161
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
162
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
163
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1285
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1286
+ * improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
1287
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1288
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1289
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
164
1290
 
165
1291
 
166
1292
  ### Bug Fixes
167
1293
 
168
- * framework pr naming convention ([#142](https://github.com/twinfoundation/framework/issues/142)) ([e29acee](https://github.com/twinfoundation/framework/commit/e29acee2fbec42506091956d6ba8b8ce25a90008))
1294
+ * framework pr naming convention ([#142](https://github.com/iotaledger/twin-framework/issues/142)) ([e29acee](https://github.com/iotaledger/twin-framework/commit/e29acee2fbec42506091956d6ba8b8ce25a90008))
169
1295
 
170
1296
 
171
1297
  ### Dependencies
@@ -184,8 +1310,8 @@
184
1310
 
185
1311
  ### Features
186
1312
 
187
- * release to production ([829d53d](https://github.com/twinfoundation/framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
188
- * release to production ([5cf3a76](https://github.com/twinfoundation/framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
1313
+ * release to production ([829d53d](https://github.com/iotaledger/twin-framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
1314
+ * release to production ([5cf3a76](https://github.com/iotaledger/twin-framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
189
1315
 
190
1316
 
191
1317
  ### Dependencies
@@ -199,20 +1325,20 @@
199
1325
  * @twin.org/nameof-transformer bumped from ^0.0.0 to ^0.0.1
200
1326
  * @twin.org/nameof-vitest-plugin bumped from ^0.0.0 to ^0.0.1
201
1327
 
202
- ## [0.0.1-next.70](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.1-next.69...cli-core-v0.0.1-next.70) (2025-07-02)
1328
+ ## [0.0.1-next.70](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.1-next.69...cli-core-v0.0.1-next.70) (2025-07-02)
203
1329
 
204
1330
 
205
1331
  ### Features
206
1332
 
207
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
208
- * improve error display in CLI ([94b6ca8](https://github.com/twinfoundation/framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
209
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
210
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1333
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1334
+ * improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
1335
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1336
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
211
1337
 
212
1338
 
213
1339
  ### Bug Fixes
214
1340
 
215
- * framework pr naming convention ([#142](https://github.com/twinfoundation/framework/issues/142)) ([e29acee](https://github.com/twinfoundation/framework/commit/e29acee2fbec42506091956d6ba8b8ce25a90008))
1341
+ * framework pr naming convention ([#142](https://github.com/iotaledger/twin-framework/issues/142)) ([e29acee](https://github.com/iotaledger/twin-framework/commit/e29acee2fbec42506091956d6ba8b8ce25a90008))
216
1342
 
217
1343
 
218
1344
  ### Dependencies
@@ -226,20 +1352,20 @@
226
1352
  * @twin.org/nameof-transformer bumped from 0.0.1-next.69 to 0.0.1-next.70
227
1353
  * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.69 to 0.0.1-next.70
228
1354
 
229
- ## [0.0.1-next.69](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.1-next.68...cli-core-v0.0.1-next.69) (2025-07-02)
1355
+ ## [0.0.1-next.69](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.1-next.68...cli-core-v0.0.1-next.69) (2025-07-02)
230
1356
 
231
1357
 
232
1358
  ### Features
233
1359
 
234
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
235
- * improve error display in CLI ([94b6ca8](https://github.com/twinfoundation/framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
236
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
237
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1360
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1361
+ * improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
1362
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1363
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
238
1364
 
239
1365
 
240
1366
  ### Bug Fixes
241
1367
 
242
- * framework pr naming convention ([#142](https://github.com/twinfoundation/framework/issues/142)) ([e29acee](https://github.com/twinfoundation/framework/commit/e29acee2fbec42506091956d6ba8b8ce25a90008))
1368
+ * framework pr naming convention ([#142](https://github.com/iotaledger/twin-framework/issues/142)) ([e29acee](https://github.com/iotaledger/twin-framework/commit/e29acee2fbec42506091956d6ba8b8ce25a90008))
243
1369
 
244
1370
 
245
1371
  ### Dependencies
@@ -253,12 +1379,12 @@
253
1379
  * @twin.org/nameof-transformer bumped from 0.0.1-next.68 to 0.0.1-next.69
254
1380
  * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.68 to 0.0.1-next.69
255
1381
 
256
- ## [0.0.1-next.68](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.1-next.67...cli-core-v0.0.1-next.68) (2025-07-02)
1382
+ ## [0.0.1-next.68](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.1-next.67...cli-core-v0.0.1-next.68) (2025-07-02)
257
1383
 
258
1384
 
259
1385
  ### Features
260
1386
 
261
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1387
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
262
1388
 
263
1389
 
264
1390
  ### Dependencies
@@ -272,7 +1398,7 @@
272
1398
  * @twin.org/nameof-transformer bumped from 0.0.1-next.67 to 0.0.1-next.68
273
1399
  * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.67 to 0.0.1-next.68
274
1400
 
275
- ## [0.0.1-next.67](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.1-next.66...cli-core-v0.0.1-next.67) (2025-06-26)
1401
+ ## [0.0.1-next.67](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.1-next.66...cli-core-v0.0.1-next.67) (2025-06-26)
276
1402
 
277
1403
 
278
1404
  ### Miscellaneous Chores
@@ -287,7 +1413,7 @@
287
1413
  * @twin.org/core bumped from 0.0.1-next.66 to 0.0.1-next.67
288
1414
  * @twin.org/crypto bumped from 0.0.1-next.66 to 0.0.1-next.67
289
1415
 
290
- ## [0.0.1-next.66](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.1-next.65...cli-core-v0.0.1-next.66) (2025-06-26)
1416
+ ## [0.0.1-next.66](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.1-next.65...cli-core-v0.0.1-next.66) (2025-06-26)
291
1417
 
292
1418
 
293
1419
  ### Miscellaneous Chores
@@ -302,7 +1428,7 @@
302
1428
  * @twin.org/core bumped from 0.0.1-next.65 to 0.0.1-next.66
303
1429
  * @twin.org/crypto bumped from 0.0.1-next.65 to 0.0.1-next.66
304
1430
 
305
- ## [0.0.1-next.65](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.1-next.64...cli-core-v0.0.1-next.65) (2025-06-19)
1431
+ ## [0.0.1-next.65](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.1-next.64...cli-core-v0.0.1-next.65) (2025-06-19)
306
1432
 
307
1433
 
308
1434
  ### Miscellaneous Chores
@@ -317,7 +1443,7 @@
317
1443
  * @twin.org/core bumped from 0.0.1-next.64 to 0.0.1-next.65
318
1444
  * @twin.org/crypto bumped from 0.0.1-next.64 to 0.0.1-next.65
319
1445
 
320
- ## [0.0.1-next.64](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.1-next.63...cli-core-v0.0.1-next.64) (2025-06-19)
1446
+ ## [0.0.1-next.64](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.1-next.63...cli-core-v0.0.1-next.64) (2025-06-19)
321
1447
 
322
1448
 
323
1449
  ### Miscellaneous Chores
@@ -332,7 +1458,7 @@
332
1458
  * @twin.org/core bumped from 0.0.1-next.63 to 0.0.1-next.64
333
1459
  * @twin.org/crypto bumped from 0.0.1-next.63 to 0.0.1-next.64
334
1460
 
335
- ## [0.0.1-next.63](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.1-next.62...cli-core-v0.0.1-next.63) (2025-06-18)
1461
+ ## [0.0.1-next.63](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.1-next.62...cli-core-v0.0.1-next.63) (2025-06-18)
336
1462
 
337
1463
 
338
1464
  ### Miscellaneous Chores
@@ -347,19 +1473,19 @@
347
1473
  * @twin.org/core bumped from 0.0.1-next.62 to 0.0.1-next.63
348
1474
  * @twin.org/crypto bumped from 0.0.1-next.62 to 0.0.1-next.63
349
1475
 
350
- ## [0.0.1-next.62](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.1-next.61...cli-core-v0.0.1-next.62) (2025-06-17)
1476
+ ## [0.0.1-next.62](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.1-next.61...cli-core-v0.0.1-next.62) (2025-06-17)
351
1477
 
352
1478
 
353
1479
  ### Features
354
1480
 
355
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
356
- * improve error display in CLI ([94b6ca8](https://github.com/twinfoundation/framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
357
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1481
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1482
+ * improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
1483
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
358
1484
 
359
1485
 
360
1486
  ### Bug Fixes
361
1487
 
362
- * framework pr naming convention ([#142](https://github.com/twinfoundation/framework/issues/142)) ([e29acee](https://github.com/twinfoundation/framework/commit/e29acee2fbec42506091956d6ba8b8ce25a90008))
1488
+ * framework pr naming convention ([#142](https://github.com/iotaledger/twin-framework/issues/142)) ([e29acee](https://github.com/iotaledger/twin-framework/commit/e29acee2fbec42506091956d6ba8b8ce25a90008))
363
1489
 
364
1490
 
365
1491
  ### Dependencies
@@ -369,7 +1495,7 @@
369
1495
  * @twin.org/core bumped from 0.0.1-next.61 to 0.0.1-next.62
370
1496
  * @twin.org/crypto bumped from 0.0.1-next.61 to 0.0.1-next.62
371
1497
 
372
- ## [0.0.1-next.61](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.1-next.60...cli-core-v0.0.1-next.61) (2025-06-17)
1498
+ ## [0.0.1-next.61](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.1-next.60...cli-core-v0.0.1-next.61) (2025-06-17)
373
1499
 
374
1500
 
375
1501
  ### Miscellaneous Chores
@@ -384,12 +1510,12 @@
384
1510
  * @twin.org/core bumped from 0.0.1-next.60 to 0.0.1-next.61
385
1511
  * @twin.org/crypto bumped from 0.0.1-next.60 to 0.0.1-next.61
386
1512
 
387
- ## [0.0.1-next.60](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.1-next.59...cli-core-v0.0.1-next.60) (2025-06-17)
1513
+ ## [0.0.1-next.60](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.1-next.59...cli-core-v0.0.1-next.60) (2025-06-17)
388
1514
 
389
1515
 
390
1516
  ### Features
391
1517
 
392
- * improve error display in CLI ([94b6ca8](https://github.com/twinfoundation/framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
1518
+ * improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
393
1519
 
394
1520
 
395
1521
  ### Dependencies
@@ -399,7 +1525,7 @@
399
1525
  * @twin.org/core bumped from 0.0.1-next.59 to 0.0.1-next.60
400
1526
  * @twin.org/crypto bumped from 0.0.1-next.59 to 0.0.1-next.60
401
1527
 
402
- ## [0.0.1-next.59](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.1-next.58...cli-core-v0.0.1-next.59) (2025-06-17)
1528
+ ## [0.0.1-next.59](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.1-next.58...cli-core-v0.0.1-next.59) (2025-06-17)
403
1529
 
404
1530
 
405
1531
  ### Miscellaneous Chores
@@ -414,12 +1540,12 @@
414
1540
  * @twin.org/core bumped from 0.0.1-next.58 to 0.0.1-next.59
415
1541
  * @twin.org/crypto bumped from 0.0.1-next.58 to 0.0.1-next.59
416
1542
 
417
- ## [0.0.1-next.58](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.1-next.57...cli-core-v0.0.1-next.58) (2025-06-13)
1543
+ ## [0.0.1-next.58](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.1-next.57...cli-core-v0.0.1-next.58) (2025-06-13)
418
1544
 
419
1545
 
420
1546
  ### Bug Fixes
421
1547
 
422
- * framework pr naming convention ([#142](https://github.com/twinfoundation/framework/issues/142)) ([e29acee](https://github.com/twinfoundation/framework/commit/e29acee2fbec42506091956d6ba8b8ce25a90008))
1548
+ * framework pr naming convention ([#142](https://github.com/iotaledger/twin-framework/issues/142)) ([e29acee](https://github.com/iotaledger/twin-framework/commit/e29acee2fbec42506091956d6ba8b8ce25a90008))
423
1549
 
424
1550
 
425
1551
  ### Dependencies
@@ -429,12 +1555,12 @@
429
1555
  * @twin.org/core bumped from 0.0.1-next.57 to 0.0.1-next.58
430
1556
  * @twin.org/crypto bumped from 0.0.1-next.57 to 0.0.1-next.58
431
1557
 
432
- ## [0.0.1-next.57](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.1-next.56...cli-core-v0.0.1-next.57) (2025-06-10)
1558
+ ## [0.0.1-next.57](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.1-next.56...cli-core-v0.0.1-next.57) (2025-06-10)
433
1559
 
434
1560
 
435
1561
  ### Features
436
1562
 
437
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1563
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
438
1564
 
439
1565
 
440
1566
  ### Dependencies
@@ -444,7 +1570,7 @@
444
1570
  * @twin.org/core bumped from 0.0.1-next.56 to 0.0.1-next.57
445
1571
  * @twin.org/crypto bumped from 0.0.1-next.56 to 0.0.1-next.57
446
1572
 
447
- ## [0.0.1-next.56](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.1-next.55...cli-core-v0.0.1-next.56) (2025-05-08)
1573
+ ## [0.0.1-next.56](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.1-next.55...cli-core-v0.0.1-next.56) (2025-05-08)
448
1574
 
449
1575
 
450
1576
  ### Miscellaneous Chores
@@ -459,7 +1585,7 @@
459
1585
  * @twin.org/core bumped from 0.0.1-next.55 to 0.0.1-next.56
460
1586
  * @twin.org/crypto bumped from 0.0.1-next.55 to 0.0.1-next.56
461
1587
 
462
- ## [0.0.1-next.55](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.1-next.54...cli-core-v0.0.1-next.55) (2025-05-07)
1588
+ ## [0.0.1-next.55](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.1-next.54...cli-core-v0.0.1-next.55) (2025-05-07)
463
1589
 
464
1590
 
465
1591
  ### Miscellaneous Chores
@@ -474,7 +1600,7 @@
474
1600
  * @twin.org/core bumped from 0.0.1-next.54 to 0.0.1-next.55
475
1601
  * @twin.org/crypto bumped from 0.0.1-next.54 to 0.0.1-next.55
476
1602
 
477
- ## [0.0.1-next.54](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.1-next.53...cli-core-v0.0.1-next.54) (2025-05-06)
1603
+ ## [0.0.1-next.54](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.1-next.53...cli-core-v0.0.1-next.54) (2025-05-06)
478
1604
 
479
1605
 
480
1606
  ### Miscellaneous Chores
@@ -489,7 +1615,7 @@
489
1615
  * @twin.org/core bumped from 0.0.1-next.53 to 0.0.1-next.54
490
1616
  * @twin.org/crypto bumped from 0.0.1-next.53 to 0.0.1-next.54
491
1617
 
492
- ## [0.0.1-next.53](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.1-next.52...cli-core-v0.0.1-next.53) (2025-05-01)
1618
+ ## [0.0.1-next.53](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.1-next.52...cli-core-v0.0.1-next.53) (2025-05-01)
493
1619
 
494
1620
 
495
1621
  ### Miscellaneous Chores
@@ -504,12 +1630,12 @@
504
1630
  * @twin.org/core bumped from 0.0.1-next.52 to 0.0.1-next.53
505
1631
  * @twin.org/crypto bumped from 0.0.1-next.52 to 0.0.1-next.53
506
1632
 
507
- ## [0.0.1-next.52](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.1-next.51...cli-core-v0.0.1-next.52) (2025-04-17)
1633
+ ## [0.0.1-next.52](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.1-next.51...cli-core-v0.0.1-next.52) (2025-04-17)
508
1634
 
509
1635
 
510
1636
  ### Features
511
1637
 
512
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1638
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
513
1639
 
514
1640
 
515
1641
  ### Dependencies
@@ -519,7 +1645,7 @@
519
1645
  * @twin.org/core bumped from 0.0.1-next.51 to 0.0.1-next.52
520
1646
  * @twin.org/crypto bumped from 0.0.1-next.51 to 0.0.1-next.52
521
1647
 
522
- ## [0.0.1-next.51](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.1-next.50...cli-core-v0.0.1-next.51) (2025-03-27)
1648
+ ## [0.0.1-next.51](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.1-next.50...cli-core-v0.0.1-next.51) (2025-03-27)
523
1649
 
524
1650
 
525
1651
  ### Miscellaneous Chores
@@ -534,7 +1660,7 @@
534
1660
  * @twin.org/core bumped from 0.0.1-next.50 to 0.0.1-next.51
535
1661
  * @twin.org/crypto bumped from 0.0.1-next.50 to 0.0.1-next.51
536
1662
 
537
- ## [0.0.1-next.50](https://github.com/twinfoundation/framework/compare/cli-core-v0.0.1-next.49...cli-core-v0.0.1-next.50) (2025-03-26)
1663
+ ## [0.0.1-next.50](https://github.com/iotaledger/twin-framework/compare/cli-core-v0.0.1-next.49...cli-core-v0.0.1-next.50) (2025-03-26)
538
1664
 
539
1665
 
540
1666
  ### Miscellaneous Chores