@twin.org/cli-core 0.0.2-next.9 → 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.
- package/README.md +2 -2
- package/dist/es/cliBase.js +122 -0
- package/dist/es/cliBase.js.map +1 -0
- package/dist/es/cliDisplay.js +166 -0
- package/dist/es/cliDisplay.js.map +1 -0
- package/dist/es/cliOptions.js +36 -0
- package/dist/es/cliOptions.js.map +1 -0
- package/dist/es/cliParam.js +248 -0
- package/dist/es/cliParam.js.map +1 -0
- package/dist/es/cliUtils.js +235 -0
- package/dist/es/cliUtils.js.map +1 -0
- package/dist/es/commands/global.js +61 -0
- package/dist/es/commands/global.js.map +1 -0
- package/dist/es/index.js +14 -0
- package/dist/es/index.js.map +1 -0
- package/dist/es/models/ICliOptions.js +2 -0
- package/dist/es/models/ICliOptions.js.map +1 -0
- package/dist/es/models/ICliOutputOptionsConsole.js +2 -0
- package/dist/es/models/ICliOutputOptionsConsole.js.map +1 -0
- package/dist/es/models/ICliOutputOptionsEnv.js +2 -0
- package/dist/es/models/ICliOutputOptionsEnv.js.map +1 -0
- package/dist/es/models/ICliOutputOptionsJson.js +2 -0
- package/dist/es/models/ICliOutputOptionsJson.js.map +1 -0
- package/dist/es/models/cliOutputOptions.js +2 -0
- package/dist/es/models/cliOutputOptions.js.map +1 -0
- package/dist/types/cliBase.d.ts +1 -1
- package/dist/types/cliDisplay.d.ts +5 -0
- package/dist/types/cliParam.d.ts +10 -9
- package/dist/types/index.d.ts +11 -11
- package/dist/types/models/cliOutputOptions.d.ts +3 -3
- package/docs/changelog.md +1179 -72
- package/docs/examples.md +82 -1
- package/docs/reference/classes/CLIBase.md +3 -3
- package/docs/reference/classes/CLIDisplay.md +46 -26
- package/docs/reference/classes/CLIOptions.md +1 -1
- package/docs/reference/classes/CLIParam.md +97 -85
- package/docs/reference/classes/CLIUtils.md +25 -25
- package/docs/reference/interfaces/ICliOptions.md +12 -12
- package/docs/reference/interfaces/ICliOutputOptionsConsole.md +1 -1
- package/docs/reference/interfaces/ICliOutputOptionsEnv.md +3 -3
- package/docs/reference/interfaces/ICliOutputOptionsJson.md +3 -3
- package/locales/.validate-ignore +1 -0
- package/locales/en.json +0 -1
- package/package.json +28 -16
- package/dist/cjs/index.cjs +0 -878
- package/dist/esm/index.mjs +0 -849
package/docs/changelog.md
CHANGED
|
@@ -1,6 +1,1113 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.0.2
|
|
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)
|
|
4
1111
|
|
|
5
1112
|
|
|
6
1113
|
### Miscellaneous Chores
|
|
@@ -19,7 +1126,7 @@
|
|
|
19
1126
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
20
1127
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
21
1128
|
|
|
22
|
-
## [0.0.2-next.8](https://github.com/
|
|
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)
|
|
23
1130
|
|
|
24
1131
|
|
|
25
1132
|
### Miscellaneous Chores
|
|
@@ -38,12 +1145,12 @@
|
|
|
38
1145
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
39
1146
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
40
1147
|
|
|
41
|
-
## [0.0.2-next.7](https://github.com/
|
|
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)
|
|
42
1149
|
|
|
43
1150
|
|
|
44
1151
|
### Features
|
|
45
1152
|
|
|
46
|
-
* eslint migration to flat config ([74427d7](https://github.com/
|
|
1153
|
+
* eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
|
|
47
1154
|
|
|
48
1155
|
|
|
49
1156
|
### Dependencies
|
|
@@ -57,7 +1164,7 @@
|
|
|
57
1164
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
58
1165
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
59
1166
|
|
|
60
|
-
## [0.0.2-next.6](https://github.com/
|
|
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)
|
|
61
1168
|
|
|
62
1169
|
|
|
63
1170
|
### Miscellaneous Chores
|
|
@@ -76,12 +1183,12 @@
|
|
|
76
1183
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
77
1184
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
78
1185
|
|
|
79
|
-
## [0.0.2-next.5](https://github.com/
|
|
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)
|
|
80
1187
|
|
|
81
1188
|
|
|
82
1189
|
### Features
|
|
83
1190
|
|
|
84
|
-
* use cause instead of inner for errors ([1f4acc4](https://github.com/
|
|
1191
|
+
* use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
|
|
85
1192
|
|
|
86
1193
|
|
|
87
1194
|
### Dependencies
|
|
@@ -95,7 +1202,7 @@
|
|
|
95
1202
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
96
1203
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
97
1204
|
|
|
98
|
-
## [0.0.2-next.4](https://github.com/
|
|
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)
|
|
99
1206
|
|
|
100
1207
|
|
|
101
1208
|
### Miscellaneous Chores
|
|
@@ -114,21 +1221,21 @@
|
|
|
114
1221
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
115
1222
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
116
1223
|
|
|
117
|
-
## [0.0.2-next.3](https://github.com/
|
|
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)
|
|
118
1225
|
|
|
119
1226
|
|
|
120
1227
|
### Features
|
|
121
1228
|
|
|
122
|
-
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/
|
|
123
|
-
* improve error display in CLI ([94b6ca8](https://github.com/
|
|
124
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
125
|
-
* update dependencies ([f3bd015](https://github.com/
|
|
126
|
-
* use new shared store mechanism ([#131](https://github.com/
|
|
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))
|
|
127
1234
|
|
|
128
1235
|
|
|
129
1236
|
### Bug Fixes
|
|
130
1237
|
|
|
131
|
-
* framework pr naming convention ([#142](https://github.com/
|
|
1238
|
+
* framework pr naming convention ([#142](https://github.com/iotaledger/twin-framework/issues/142)) ([e29acee](https://github.com/iotaledger/twin-framework/commit/e29acee2fbec42506091956d6ba8b8ce25a90008))
|
|
132
1239
|
|
|
133
1240
|
|
|
134
1241
|
### Dependencies
|
|
@@ -142,21 +1249,21 @@
|
|
|
142
1249
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
143
1250
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
144
1251
|
|
|
145
|
-
## [0.0.2-next.2](https://github.com/
|
|
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)
|
|
146
1253
|
|
|
147
1254
|
|
|
148
1255
|
### Features
|
|
149
1256
|
|
|
150
|
-
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/
|
|
151
|
-
* improve error display in CLI ([94b6ca8](https://github.com/
|
|
152
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
153
|
-
* update dependencies ([f3bd015](https://github.com/
|
|
154
|
-
* use new shared store mechanism ([#131](https://github.com/
|
|
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))
|
|
155
1262
|
|
|
156
1263
|
|
|
157
1264
|
### Bug Fixes
|
|
158
1265
|
|
|
159
|
-
* framework pr naming convention ([#142](https://github.com/
|
|
1266
|
+
* framework pr naming convention ([#142](https://github.com/iotaledger/twin-framework/issues/142)) ([e29acee](https://github.com/iotaledger/twin-framework/commit/e29acee2fbec42506091956d6ba8b8ce25a90008))
|
|
160
1267
|
|
|
161
1268
|
|
|
162
1269
|
### Dependencies
|
|
@@ -170,21 +1277,21 @@
|
|
|
170
1277
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
171
1278
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
172
1279
|
|
|
173
|
-
## [0.0.2-next.1](https://github.com/
|
|
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)
|
|
174
1281
|
|
|
175
1282
|
|
|
176
1283
|
### Features
|
|
177
1284
|
|
|
178
|
-
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/
|
|
179
|
-
* improve error display in CLI ([94b6ca8](https://github.com/
|
|
180
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
181
|
-
* update dependencies ([f3bd015](https://github.com/
|
|
182
|
-
* use new shared store mechanism ([#131](https://github.com/
|
|
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))
|
|
183
1290
|
|
|
184
1291
|
|
|
185
1292
|
### Bug Fixes
|
|
186
1293
|
|
|
187
|
-
* framework pr naming convention ([#142](https://github.com/
|
|
1294
|
+
* framework pr naming convention ([#142](https://github.com/iotaledger/twin-framework/issues/142)) ([e29acee](https://github.com/iotaledger/twin-framework/commit/e29acee2fbec42506091956d6ba8b8ce25a90008))
|
|
188
1295
|
|
|
189
1296
|
|
|
190
1297
|
### Dependencies
|
|
@@ -203,8 +1310,8 @@
|
|
|
203
1310
|
|
|
204
1311
|
### Features
|
|
205
1312
|
|
|
206
|
-
* release to production ([829d53d](https://github.com/
|
|
207
|
-
* release to production ([5cf3a76](https://github.com/
|
|
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))
|
|
208
1315
|
|
|
209
1316
|
|
|
210
1317
|
### Dependencies
|
|
@@ -218,20 +1325,20 @@
|
|
|
218
1325
|
* @twin.org/nameof-transformer bumped from ^0.0.0 to ^0.0.1
|
|
219
1326
|
* @twin.org/nameof-vitest-plugin bumped from ^0.0.0 to ^0.0.1
|
|
220
1327
|
|
|
221
|
-
## [0.0.1-next.70](https://github.com/
|
|
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)
|
|
222
1329
|
|
|
223
1330
|
|
|
224
1331
|
### Features
|
|
225
1332
|
|
|
226
|
-
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/
|
|
227
|
-
* improve error display in CLI ([94b6ca8](https://github.com/
|
|
228
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
229
|
-
* use new shared store mechanism ([#131](https://github.com/
|
|
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))
|
|
230
1337
|
|
|
231
1338
|
|
|
232
1339
|
### Bug Fixes
|
|
233
1340
|
|
|
234
|
-
* framework pr naming convention ([#142](https://github.com/
|
|
1341
|
+
* framework pr naming convention ([#142](https://github.com/iotaledger/twin-framework/issues/142)) ([e29acee](https://github.com/iotaledger/twin-framework/commit/e29acee2fbec42506091956d6ba8b8ce25a90008))
|
|
235
1342
|
|
|
236
1343
|
|
|
237
1344
|
### Dependencies
|
|
@@ -245,20 +1352,20 @@
|
|
|
245
1352
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.69 to 0.0.1-next.70
|
|
246
1353
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.69 to 0.0.1-next.70
|
|
247
1354
|
|
|
248
|
-
## [0.0.1-next.69](https://github.com/
|
|
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)
|
|
249
1356
|
|
|
250
1357
|
|
|
251
1358
|
### Features
|
|
252
1359
|
|
|
253
|
-
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/
|
|
254
|
-
* improve error display in CLI ([94b6ca8](https://github.com/
|
|
255
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
256
|
-
* use new shared store mechanism ([#131](https://github.com/
|
|
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))
|
|
257
1364
|
|
|
258
1365
|
|
|
259
1366
|
### Bug Fixes
|
|
260
1367
|
|
|
261
|
-
* framework pr naming convention ([#142](https://github.com/
|
|
1368
|
+
* framework pr naming convention ([#142](https://github.com/iotaledger/twin-framework/issues/142)) ([e29acee](https://github.com/iotaledger/twin-framework/commit/e29acee2fbec42506091956d6ba8b8ce25a90008))
|
|
262
1369
|
|
|
263
1370
|
|
|
264
1371
|
### Dependencies
|
|
@@ -272,12 +1379,12 @@
|
|
|
272
1379
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.68 to 0.0.1-next.69
|
|
273
1380
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.68 to 0.0.1-next.69
|
|
274
1381
|
|
|
275
|
-
## [0.0.1-next.68](https://github.com/
|
|
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)
|
|
276
1383
|
|
|
277
1384
|
|
|
278
1385
|
### Features
|
|
279
1386
|
|
|
280
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
1387
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
281
1388
|
|
|
282
1389
|
|
|
283
1390
|
### Dependencies
|
|
@@ -291,7 +1398,7 @@
|
|
|
291
1398
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.67 to 0.0.1-next.68
|
|
292
1399
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.67 to 0.0.1-next.68
|
|
293
1400
|
|
|
294
|
-
## [0.0.1-next.67](https://github.com/
|
|
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)
|
|
295
1402
|
|
|
296
1403
|
|
|
297
1404
|
### Miscellaneous Chores
|
|
@@ -306,7 +1413,7 @@
|
|
|
306
1413
|
* @twin.org/core bumped from 0.0.1-next.66 to 0.0.1-next.67
|
|
307
1414
|
* @twin.org/crypto bumped from 0.0.1-next.66 to 0.0.1-next.67
|
|
308
1415
|
|
|
309
|
-
## [0.0.1-next.66](https://github.com/
|
|
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)
|
|
310
1417
|
|
|
311
1418
|
|
|
312
1419
|
### Miscellaneous Chores
|
|
@@ -321,7 +1428,7 @@
|
|
|
321
1428
|
* @twin.org/core bumped from 0.0.1-next.65 to 0.0.1-next.66
|
|
322
1429
|
* @twin.org/crypto bumped from 0.0.1-next.65 to 0.0.1-next.66
|
|
323
1430
|
|
|
324
|
-
## [0.0.1-next.65](https://github.com/
|
|
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)
|
|
325
1432
|
|
|
326
1433
|
|
|
327
1434
|
### Miscellaneous Chores
|
|
@@ -336,7 +1443,7 @@
|
|
|
336
1443
|
* @twin.org/core bumped from 0.0.1-next.64 to 0.0.1-next.65
|
|
337
1444
|
* @twin.org/crypto bumped from 0.0.1-next.64 to 0.0.1-next.65
|
|
338
1445
|
|
|
339
|
-
## [0.0.1-next.64](https://github.com/
|
|
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)
|
|
340
1447
|
|
|
341
1448
|
|
|
342
1449
|
### Miscellaneous Chores
|
|
@@ -351,7 +1458,7 @@
|
|
|
351
1458
|
* @twin.org/core bumped from 0.0.1-next.63 to 0.0.1-next.64
|
|
352
1459
|
* @twin.org/crypto bumped from 0.0.1-next.63 to 0.0.1-next.64
|
|
353
1460
|
|
|
354
|
-
## [0.0.1-next.63](https://github.com/
|
|
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)
|
|
355
1462
|
|
|
356
1463
|
|
|
357
1464
|
### Miscellaneous Chores
|
|
@@ -366,19 +1473,19 @@
|
|
|
366
1473
|
* @twin.org/core bumped from 0.0.1-next.62 to 0.0.1-next.63
|
|
367
1474
|
* @twin.org/crypto bumped from 0.0.1-next.62 to 0.0.1-next.63
|
|
368
1475
|
|
|
369
|
-
## [0.0.1-next.62](https://github.com/
|
|
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)
|
|
370
1477
|
|
|
371
1478
|
|
|
372
1479
|
### Features
|
|
373
1480
|
|
|
374
|
-
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/
|
|
375
|
-
* improve error display in CLI ([94b6ca8](https://github.com/
|
|
376
|
-
* use new shared store mechanism ([#131](https://github.com/
|
|
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))
|
|
377
1484
|
|
|
378
1485
|
|
|
379
1486
|
### Bug Fixes
|
|
380
1487
|
|
|
381
|
-
* framework pr naming convention ([#142](https://github.com/
|
|
1488
|
+
* framework pr naming convention ([#142](https://github.com/iotaledger/twin-framework/issues/142)) ([e29acee](https://github.com/iotaledger/twin-framework/commit/e29acee2fbec42506091956d6ba8b8ce25a90008))
|
|
382
1489
|
|
|
383
1490
|
|
|
384
1491
|
### Dependencies
|
|
@@ -388,7 +1495,7 @@
|
|
|
388
1495
|
* @twin.org/core bumped from 0.0.1-next.61 to 0.0.1-next.62
|
|
389
1496
|
* @twin.org/crypto bumped from 0.0.1-next.61 to 0.0.1-next.62
|
|
390
1497
|
|
|
391
|
-
## [0.0.1-next.61](https://github.com/
|
|
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)
|
|
392
1499
|
|
|
393
1500
|
|
|
394
1501
|
### Miscellaneous Chores
|
|
@@ -403,12 +1510,12 @@
|
|
|
403
1510
|
* @twin.org/core bumped from 0.0.1-next.60 to 0.0.1-next.61
|
|
404
1511
|
* @twin.org/crypto bumped from 0.0.1-next.60 to 0.0.1-next.61
|
|
405
1512
|
|
|
406
|
-
## [0.0.1-next.60](https://github.com/
|
|
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)
|
|
407
1514
|
|
|
408
1515
|
|
|
409
1516
|
### Features
|
|
410
1517
|
|
|
411
|
-
* improve error display in CLI ([94b6ca8](https://github.com/
|
|
1518
|
+
* improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
|
|
412
1519
|
|
|
413
1520
|
|
|
414
1521
|
### Dependencies
|
|
@@ -418,7 +1525,7 @@
|
|
|
418
1525
|
* @twin.org/core bumped from 0.0.1-next.59 to 0.0.1-next.60
|
|
419
1526
|
* @twin.org/crypto bumped from 0.0.1-next.59 to 0.0.1-next.60
|
|
420
1527
|
|
|
421
|
-
## [0.0.1-next.59](https://github.com/
|
|
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)
|
|
422
1529
|
|
|
423
1530
|
|
|
424
1531
|
### Miscellaneous Chores
|
|
@@ -433,12 +1540,12 @@
|
|
|
433
1540
|
* @twin.org/core bumped from 0.0.1-next.58 to 0.0.1-next.59
|
|
434
1541
|
* @twin.org/crypto bumped from 0.0.1-next.58 to 0.0.1-next.59
|
|
435
1542
|
|
|
436
|
-
## [0.0.1-next.58](https://github.com/
|
|
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)
|
|
437
1544
|
|
|
438
1545
|
|
|
439
1546
|
### Bug Fixes
|
|
440
1547
|
|
|
441
|
-
* framework pr naming convention ([#142](https://github.com/
|
|
1548
|
+
* framework pr naming convention ([#142](https://github.com/iotaledger/twin-framework/issues/142)) ([e29acee](https://github.com/iotaledger/twin-framework/commit/e29acee2fbec42506091956d6ba8b8ce25a90008))
|
|
442
1549
|
|
|
443
1550
|
|
|
444
1551
|
### Dependencies
|
|
@@ -448,12 +1555,12 @@
|
|
|
448
1555
|
* @twin.org/core bumped from 0.0.1-next.57 to 0.0.1-next.58
|
|
449
1556
|
* @twin.org/crypto bumped from 0.0.1-next.57 to 0.0.1-next.58
|
|
450
1557
|
|
|
451
|
-
## [0.0.1-next.57](https://github.com/
|
|
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)
|
|
452
1559
|
|
|
453
1560
|
|
|
454
1561
|
### Features
|
|
455
1562
|
|
|
456
|
-
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/
|
|
1563
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
457
1564
|
|
|
458
1565
|
|
|
459
1566
|
### Dependencies
|
|
@@ -463,7 +1570,7 @@
|
|
|
463
1570
|
* @twin.org/core bumped from 0.0.1-next.56 to 0.0.1-next.57
|
|
464
1571
|
* @twin.org/crypto bumped from 0.0.1-next.56 to 0.0.1-next.57
|
|
465
1572
|
|
|
466
|
-
## [0.0.1-next.56](https://github.com/
|
|
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)
|
|
467
1574
|
|
|
468
1575
|
|
|
469
1576
|
### Miscellaneous Chores
|
|
@@ -478,7 +1585,7 @@
|
|
|
478
1585
|
* @twin.org/core bumped from 0.0.1-next.55 to 0.0.1-next.56
|
|
479
1586
|
* @twin.org/crypto bumped from 0.0.1-next.55 to 0.0.1-next.56
|
|
480
1587
|
|
|
481
|
-
## [0.0.1-next.55](https://github.com/
|
|
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)
|
|
482
1589
|
|
|
483
1590
|
|
|
484
1591
|
### Miscellaneous Chores
|
|
@@ -493,7 +1600,7 @@
|
|
|
493
1600
|
* @twin.org/core bumped from 0.0.1-next.54 to 0.0.1-next.55
|
|
494
1601
|
* @twin.org/crypto bumped from 0.0.1-next.54 to 0.0.1-next.55
|
|
495
1602
|
|
|
496
|
-
## [0.0.1-next.54](https://github.com/
|
|
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)
|
|
497
1604
|
|
|
498
1605
|
|
|
499
1606
|
### Miscellaneous Chores
|
|
@@ -508,7 +1615,7 @@
|
|
|
508
1615
|
* @twin.org/core bumped from 0.0.1-next.53 to 0.0.1-next.54
|
|
509
1616
|
* @twin.org/crypto bumped from 0.0.1-next.53 to 0.0.1-next.54
|
|
510
1617
|
|
|
511
|
-
## [0.0.1-next.53](https://github.com/
|
|
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)
|
|
512
1619
|
|
|
513
1620
|
|
|
514
1621
|
### Miscellaneous Chores
|
|
@@ -523,12 +1630,12 @@
|
|
|
523
1630
|
* @twin.org/core bumped from 0.0.1-next.52 to 0.0.1-next.53
|
|
524
1631
|
* @twin.org/crypto bumped from 0.0.1-next.52 to 0.0.1-next.53
|
|
525
1632
|
|
|
526
|
-
## [0.0.1-next.52](https://github.com/
|
|
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)
|
|
527
1634
|
|
|
528
1635
|
|
|
529
1636
|
### Features
|
|
530
1637
|
|
|
531
|
-
* use new shared store mechanism ([#131](https://github.com/
|
|
1638
|
+
* use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
532
1639
|
|
|
533
1640
|
|
|
534
1641
|
### Dependencies
|
|
@@ -538,7 +1645,7 @@
|
|
|
538
1645
|
* @twin.org/core bumped from 0.0.1-next.51 to 0.0.1-next.52
|
|
539
1646
|
* @twin.org/crypto bumped from 0.0.1-next.51 to 0.0.1-next.52
|
|
540
1647
|
|
|
541
|
-
## [0.0.1-next.51](https://github.com/
|
|
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)
|
|
542
1649
|
|
|
543
1650
|
|
|
544
1651
|
### Miscellaneous Chores
|
|
@@ -553,7 +1660,7 @@
|
|
|
553
1660
|
* @twin.org/core bumped from 0.0.1-next.50 to 0.0.1-next.51
|
|
554
1661
|
* @twin.org/crypto bumped from 0.0.1-next.50 to 0.0.1-next.51
|
|
555
1662
|
|
|
556
|
-
## [0.0.1-next.50](https://github.com/
|
|
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)
|
|
557
1664
|
|
|
558
1665
|
|
|
559
1666
|
### Miscellaneous Chores
|