@twin.org/core 0.0.3-next.9 → 0.0.3

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 (156) hide show
  1. package/README.md +1 -9
  2. package/dist/es/encoding/base32.js +1 -1
  3. package/dist/es/encoding/base32.js.map +1 -1
  4. package/dist/es/encoding/base64.js +1 -1
  5. package/dist/es/encoding/base64.js.map +1 -1
  6. package/dist/es/errors/alreadyExistsError.js +1 -1
  7. package/dist/es/errors/alreadyExistsError.js.map +1 -1
  8. package/dist/es/errors/baseError.js +1 -1
  9. package/dist/es/errors/baseError.js.map +1 -1
  10. package/dist/es/errors/conflictError.js +1 -1
  11. package/dist/es/errors/conflictError.js.map +1 -1
  12. package/dist/es/errors/generalError.js +1 -1
  13. package/dist/es/errors/generalError.js.map +1 -1
  14. package/dist/es/errors/guardError.js +1 -1
  15. package/dist/es/errors/guardError.js.map +1 -1
  16. package/dist/es/errors/notFoundError.js +1 -1
  17. package/dist/es/errors/notFoundError.js.map +1 -1
  18. package/dist/es/errors/notSupportedError.js +1 -1
  19. package/dist/es/errors/notSupportedError.js.map +1 -1
  20. package/dist/es/errors/unauthorizedError.js +2 -2
  21. package/dist/es/errors/unauthorizedError.js.map +1 -1
  22. package/dist/es/errors/unprocessableError.js +1 -1
  23. package/dist/es/errors/unprocessableError.js.map +1 -1
  24. package/dist/es/factories/factory.js +41 -0
  25. package/dist/es/factories/factory.js.map +1 -1
  26. package/dist/es/helpers/arrayHelper.js +2 -0
  27. package/dist/es/helpers/arrayHelper.js.map +1 -1
  28. package/dist/es/helpers/errorHelper.js +18 -14
  29. package/dist/es/helpers/errorHelper.js.map +1 -1
  30. package/dist/es/helpers/jsonHelper.js.map +1 -1
  31. package/dist/es/helpers/objectHelper.js +12 -36
  32. package/dist/es/helpers/objectHelper.js.map +1 -1
  33. package/dist/es/helpers/stringHelper.js +11 -0
  34. package/dist/es/helpers/stringHelper.js.map +1 -1
  35. package/dist/es/index.js +8 -1
  36. package/dist/es/index.js.map +1 -1
  37. package/dist/es/models/IComponent.js +0 -2
  38. package/dist/es/models/IComponent.js.map +1 -1
  39. package/dist/es/models/IError.js.map +1 -1
  40. package/dist/es/models/IHealth.js +2 -0
  41. package/dist/es/models/IHealth.js.map +1 -0
  42. package/dist/es/models/IMutexWorkerMessage.js +2 -0
  43. package/dist/es/models/IMutexWorkerMessage.js.map +1 -0
  44. package/dist/es/models/healthStatus.js +21 -0
  45. package/dist/es/models/healthStatus.js.map +1 -0
  46. package/dist/es/models/mutexMessageTypes.js +13 -0
  47. package/dist/es/models/mutexMessageTypes.js.map +1 -0
  48. package/dist/es/types/objectOrArray.js.map +1 -0
  49. package/dist/es/types/singleOccurrenceArray.js +2 -0
  50. package/dist/es/types/singleOccurrenceArray.js.map +1 -0
  51. package/dist/es/types/singleOccurrenceArrayDepthHelper.js +2 -0
  52. package/dist/es/types/singleOccurrenceArrayDepthHelper.js.map +1 -0
  53. package/dist/es/types/urn.js +1 -2
  54. package/dist/es/types/urn.js.map +1 -1
  55. package/dist/es/utils/asyncCache.js +236 -88
  56. package/dist/es/utils/asyncCache.js.map +1 -1
  57. package/dist/es/utils/guards.js.map +1 -1
  58. package/dist/es/utils/i18n.js.map +1 -1
  59. package/dist/es/utils/mutex.js +185 -0
  60. package/dist/es/utils/mutex.js.map +1 -0
  61. package/dist/types/encoding/base32.d.ts +1 -1
  62. package/dist/types/errors/alreadyExistsError.d.ts +1 -1
  63. package/dist/types/errors/baseError.d.ts +1 -1
  64. package/dist/types/errors/conflictError.d.ts +1 -1
  65. package/dist/types/errors/generalError.d.ts +1 -1
  66. package/dist/types/errors/guardError.d.ts +1 -1
  67. package/dist/types/errors/notFoundError.d.ts +1 -1
  68. package/dist/types/errors/notSupportedError.d.ts +1 -1
  69. package/dist/types/errors/unauthorizedError.d.ts +2 -2
  70. package/dist/types/errors/unprocessableError.d.ts +1 -1
  71. package/dist/types/factories/factory.d.ts +23 -1
  72. package/dist/types/helpers/arrayHelper.d.ts +1 -8
  73. package/dist/types/helpers/errorHelper.d.ts +11 -4
  74. package/dist/types/helpers/objectHelper.d.ts +18 -14
  75. package/dist/types/helpers/stringHelper.d.ts +6 -0
  76. package/dist/types/index.d.ts +8 -1
  77. package/dist/types/models/IComponent.d.ts +12 -0
  78. package/dist/types/models/IError.d.ts +1 -1
  79. package/dist/types/models/IHealth.d.ts +32 -0
  80. package/dist/types/models/IMutexWorkerMessage.d.ts +23 -0
  81. package/dist/types/models/healthStatus.d.ts +21 -0
  82. package/dist/types/models/mutexMessageTypes.d.ts +13 -0
  83. package/dist/types/types/singleOccurrenceArray.d.ts +6 -0
  84. package/dist/types/types/singleOccurrenceArrayDepthHelper.d.ts +4 -0
  85. package/dist/types/utils/asyncCache.d.ts +11 -3
  86. package/dist/types/utils/guards.d.ts +1 -1
  87. package/dist/types/utils/mutex.d.ts +53 -0
  88. package/docs/changelog.md +930 -218
  89. package/docs/examples.md +308 -1
  90. package/docs/reference/classes/AlreadyExistsError.md +36 -36
  91. package/docs/reference/classes/ArrayHelper.md +10 -44
  92. package/docs/reference/classes/AsyncCache.md +13 -12
  93. package/docs/reference/classes/Base32.md +4 -4
  94. package/docs/reference/classes/Base58.md +3 -3
  95. package/docs/reference/classes/Base64.md +4 -4
  96. package/docs/reference/classes/Base64Url.md +3 -3
  97. package/docs/reference/classes/BaseError.md +35 -35
  98. package/docs/reference/classes/BitString.md +6 -6
  99. package/docs/reference/classes/Coerce.md +11 -11
  100. package/docs/reference/classes/Compression.md +3 -3
  101. package/docs/reference/classes/ConflictError.md +36 -36
  102. package/docs/reference/classes/Converter.md +18 -18
  103. package/docs/reference/classes/EnvHelper.md +1 -1
  104. package/docs/reference/classes/ErrorHelper.md +20 -10
  105. package/docs/reference/classes/Factory.md +112 -18
  106. package/docs/reference/classes/FilenameHelper.md +1 -1
  107. package/docs/reference/classes/GeneralError.md +36 -36
  108. package/docs/reference/classes/GuardError.md +36 -36
  109. package/docs/reference/classes/Guards.md +33 -33
  110. package/docs/reference/classes/HexHelper.md +6 -6
  111. package/docs/reference/classes/I18n.md +14 -14
  112. package/docs/reference/classes/Is.md +42 -42
  113. package/docs/reference/classes/JsonHelper.md +10 -10
  114. package/docs/reference/classes/Mutex.md +128 -0
  115. package/docs/reference/classes/NotFoundError.md +36 -36
  116. package/docs/reference/classes/NotImplementedError.md +35 -35
  117. package/docs/reference/classes/NotSupportedError.md +36 -36
  118. package/docs/reference/classes/NumberHelper.md +2 -2
  119. package/docs/reference/classes/ObjectHelper.md +135 -73
  120. package/docs/reference/classes/RandomHelper.md +8 -8
  121. package/docs/reference/classes/SharedStore.md +3 -3
  122. package/docs/reference/classes/StringHelper.md +45 -23
  123. package/docs/reference/classes/Uint8ArrayHelper.md +1 -1
  124. package/docs/reference/classes/UnauthorizedError.md +37 -37
  125. package/docs/reference/classes/UnprocessableError.md +36 -36
  126. package/docs/reference/classes/Url.md +8 -8
  127. package/docs/reference/classes/Urn.md +24 -24
  128. package/docs/reference/classes/Validation.md +25 -25
  129. package/docs/reference/classes/ValidationError.md +35 -35
  130. package/docs/reference/index.md +9 -0
  131. package/docs/reference/interfaces/IComponent.md +40 -4
  132. package/docs/reference/interfaces/IError.md +11 -11
  133. package/docs/reference/interfaces/IHealth.md +55 -0
  134. package/docs/reference/interfaces/II18nShared.md +4 -4
  135. package/docs/reference/interfaces/IKeyValue.md +2 -2
  136. package/docs/reference/interfaces/ILabelledValue.md +2 -2
  137. package/docs/reference/interfaces/ILocale.md +2 -2
  138. package/docs/reference/interfaces/ILocaleDictionary.md +1 -1
  139. package/docs/reference/interfaces/ILocalesIndex.md +1 -1
  140. package/docs/reference/interfaces/IMutexWorkerMessage.md +35 -0
  141. package/docs/reference/interfaces/IPatchOperation.md +6 -6
  142. package/docs/reference/interfaces/IUrlParts.md +9 -9
  143. package/docs/reference/interfaces/IValidationFailure.md +4 -4
  144. package/docs/reference/type-aliases/HealthStatus.md +5 -0
  145. package/docs/reference/type-aliases/MutexMessageTypes.md +5 -0
  146. package/docs/reference/type-aliases/SingleOccurrenceArray.md +15 -0
  147. package/docs/reference/type-aliases/SingleOccurrenceArrayDepthHelper.md +19 -0
  148. package/docs/reference/variables/CoerceType.md +10 -10
  149. package/docs/reference/variables/CompressionType.md +2 -2
  150. package/docs/reference/variables/HealthStatus.md +25 -0
  151. package/docs/reference/variables/MutexMessageTypes.md +13 -0
  152. package/locales/en.json +8 -1
  153. package/package.json +6 -6
  154. package/dist/es/models/objectOrArray.js.map +0 -1
  155. /package/dist/es/{models → types}/objectOrArray.js +0 -0
  156. /package/dist/types/{models → types}/objectOrArray.d.ts +0 -0
package/docs/changelog.md CHANGED
@@ -1,11 +1,723 @@
1
- # @twin.org/core - Changelog
1
+ # Changelog
2
2
 
3
- ## [0.0.3-next.9](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.8...core-v0.0.3-next.9) (2026-01-05)
3
+ ## [0.0.3](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3...core-v0.0.3) (2026-05-27)
4
4
 
5
5
 
6
6
  ### Features
7
7
 
8
- * add uuidv7 support ([#219](https://github.com/twinfoundation/framework/issues/219)) ([916c657](https://github.com/twinfoundation/framework/commit/916c657d270ce99fafe554233739fdd9ca28635b))
8
+ * release to production ([b24cba1](https://github.com/iotaledger/twin-framework/commit/b24cba1b6a969278d638e632590602ec881e49fb))
9
+ * release to production ([787287d](https://github.com/iotaledger/twin-framework/commit/787287d06ea8319657401589d61fff369310c422))
10
+ * release to production ([53f4843](https://github.com/iotaledger/twin-framework/commit/53f484326b2851d7a506d2620db24c4a65cee7b3))
11
+ * release to production ([56cda4d](https://github.com/iotaledger/twin-framework/commit/56cda4da93e978c5be19ec7cfd421ae2a7fe4147))
12
+ * release to production ([f7c6586](https://github.com/iotaledger/twin-framework/commit/f7c6586f6976b903b647b4c5ac5ad9421e0c9051))
13
+ * release to production ([829d53d](https://github.com/iotaledger/twin-framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
14
+ * release to production ([5cf3a76](https://github.com/iotaledger/twin-framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
15
+ * release to production ([#330](https://github.com/iotaledger/twin-framework/issues/330)) ([d73f565](https://github.com/iotaledger/twin-framework/commit/d73f565588d156d23ef49b2a5718973756f7a696))
16
+
17
+
18
+ ### Miscellaneous Chores
19
+
20
+ * release to production ([63cae24](https://github.com/iotaledger/twin-framework/commit/63cae2401f6c11f93b2a01260b665064e8bd28e0))
21
+
22
+ ## [0.0.3-next.47](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.46...core-v0.0.3-next.47) (2026-05-25)
23
+
24
+
25
+ ### Features
26
+
27
+ * add mutex ([#316](https://github.com/iotaledger/twin-framework/issues/316)) ([1027e5a](https://github.com/iotaledger/twin-framework/commit/1027e5ac77aa9804178b4253abdeefd6f1c3d521))
28
+
29
+
30
+ ### Dependencies
31
+
32
+ * The following workspace dependencies were updated
33
+ * dependencies
34
+ * @twin.org/nameof bumped from 0.0.3-next.46 to 0.0.3-next.47
35
+ * devDependencies
36
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.46 to 0.0.3-next.47
37
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.46 to 0.0.3-next.47
38
+
39
+ ## [0.0.3-next.46](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.45...core-v0.0.3-next.46) (2026-05-22)
40
+
41
+
42
+ ### Features
43
+
44
+ * improve error formatting ([#313](https://github.com/iotaledger/twin-framework/issues/313)) ([5a19623](https://github.com/iotaledger/twin-framework/commit/5a196231bcbf088bf9ba92a93b7478d3b8c5593f))
45
+
46
+
47
+ ### Dependencies
48
+
49
+ * The following workspace dependencies were updated
50
+ * dependencies
51
+ * @twin.org/nameof bumped from 0.0.3-next.45 to 0.0.3-next.46
52
+ * devDependencies
53
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.45 to 0.0.3-next.46
54
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.45 to 0.0.3-next.46
55
+
56
+ ## [0.0.3-next.45](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.44...core-v0.0.3-next.45) (2026-05-21)
57
+
58
+
59
+ ### Bug Fixes
60
+
61
+ * remove misleading undefined from AsyncCache return type ([05b3291](https://github.com/iotaledger/twin-framework/commit/05b32914e03a63c7daf7b77952a2ebedb7ca7f6b))
62
+
63
+
64
+ ### Dependencies
65
+
66
+ * The following workspace dependencies were updated
67
+ * dependencies
68
+ * @twin.org/nameof bumped from 0.0.3-next.44 to 0.0.3-next.45
69
+ * devDependencies
70
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.44 to 0.0.3-next.45
71
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.44 to 0.0.3-next.45
72
+
73
+ ## [0.0.3-next.44](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.43...core-v0.0.3-next.44) (2026-05-19)
74
+
75
+
76
+ ### Features
77
+
78
+ * update dependencies ([4da77ab](https://github.com/iotaledger/twin-framework/commit/4da77ab30f499e52825ac5a76f51436ceb59c26e))
79
+
80
+
81
+ ### Dependencies
82
+
83
+ * The following workspace dependencies were updated
84
+ * dependencies
85
+ * @twin.org/nameof bumped from 0.0.3-next.43 to 0.0.3-next.44
86
+ * devDependencies
87
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.43 to 0.0.3-next.44
88
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.43 to 0.0.3-next.44
89
+
90
+ ## [0.0.3-next.43](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.42...core-v0.0.3-next.43) (2026-05-18)
91
+
92
+
93
+ ### Miscellaneous Chores
94
+
95
+ * **core:** Synchronize repo versions
96
+
97
+
98
+ ### Dependencies
99
+
100
+ * The following workspace dependencies were updated
101
+ * dependencies
102
+ * @twin.org/nameof bumped from 0.0.3-next.42 to 0.0.3-next.43
103
+ * devDependencies
104
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.42 to 0.0.3-next.43
105
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.42 to 0.0.3-next.43
106
+
107
+ ## [0.0.3-next.42](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.41...core-v0.0.3-next.42) (2026-05-15)
108
+
109
+
110
+ ### Miscellaneous Chores
111
+
112
+ * **core:** Synchronize repo versions
113
+
114
+
115
+ ### Dependencies
116
+
117
+ * The following workspace dependencies were updated
118
+ * dependencies
119
+ * @twin.org/nameof bumped from 0.0.3-next.41 to 0.0.3-next.42
120
+ * devDependencies
121
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.41 to 0.0.3-next.42
122
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.41 to 0.0.3-next.42
123
+
124
+ ## [0.0.3-next.41](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.40...core-v0.0.3-next.41) (2026-05-13)
125
+
126
+
127
+ ### Features
128
+
129
+ * improve signatures ([45a7d58](https://github.com/iotaledger/twin-framework/commit/45a7d58baa5b6abc8c0735656f393d402fabb4ad))
130
+
131
+
132
+ ### Dependencies
133
+
134
+ * The following workspace dependencies were updated
135
+ * dependencies
136
+ * @twin.org/nameof bumped from 0.0.3-next.40 to 0.0.3-next.41
137
+ * devDependencies
138
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.40 to 0.0.3-next.41
139
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.40 to 0.0.3-next.41
140
+
141
+ ## [0.0.3-next.40](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.39...core-v0.0.3-next.40) (2026-05-13)
142
+
143
+
144
+ ### Bug Fixes
145
+
146
+ * pick non iterable keys ([399399a](https://github.com/iotaledger/twin-framework/commit/399399abfb8947c4eb235df527532ffe186986b3))
147
+
148
+
149
+ ### Dependencies
150
+
151
+ * The following workspace dependencies were updated
152
+ * dependencies
153
+ * @twin.org/nameof bumped from 0.0.3-next.39 to 0.0.3-next.40
154
+ * devDependencies
155
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.39 to 0.0.3-next.40
156
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.39 to 0.0.3-next.40
157
+
158
+ ## [0.0.3-next.39](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.38...core-v0.0.3-next.39) (2026-05-13)
159
+
160
+
161
+ ### Features
162
+
163
+ * improve signatures ([cdd24be](https://github.com/iotaledger/twin-framework/commit/cdd24be6fb898d33955b6f2f93c3ddbd73582269))
164
+ * improve signatures ([2041ae2](https://github.com/iotaledger/twin-framework/commit/2041ae214cbd8d472d5e8be8d3403cd06a114040))
165
+ * improve signatures ([d8a0ee1](https://github.com/iotaledger/twin-framework/commit/d8a0ee16542134a3f8b0653065239f42045125b4))
166
+ * improve signatures ([1d084c5](https://github.com/iotaledger/twin-framework/commit/1d084c58c7eb41ae50b0ce80ce57e48a22dd3102))
167
+ * improve signatures ([#287](https://github.com/iotaledger/twin-framework/issues/287)) ([c9f38f0](https://github.com/iotaledger/twin-framework/commit/c9f38f00e1cea8759e1105b41872a650c66c00f4))
168
+
169
+
170
+ ### Dependencies
171
+
172
+ * The following workspace dependencies were updated
173
+ * dependencies
174
+ * @twin.org/nameof bumped from 0.0.3-next.38 to 0.0.3-next.39
175
+ * devDependencies
176
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.38 to 0.0.3-next.39
177
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.38 to 0.0.3-next.39
178
+
179
+ ## [0.0.3-next.38](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.37...core-v0.0.3-next.38) (2026-05-11)
180
+
181
+
182
+ ### Features
183
+
184
+ * typescript 6 update ([1d10f31](https://github.com/iotaledger/twin-framework/commit/1d10f31e6516ec622773f45e88af82fe749b384a))
185
+
186
+
187
+ ### Dependencies
188
+
189
+ * The following workspace dependencies were updated
190
+ * dependencies
191
+ * @twin.org/nameof bumped from 0.0.3-next.37 to 0.0.3-next.38
192
+ * devDependencies
193
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.37 to 0.0.3-next.38
194
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.37 to 0.0.3-next.38
195
+
196
+ ## [0.0.3-next.37](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.36...core-v0.0.3-next.37) (2026-05-07)
197
+
198
+
199
+ ### Miscellaneous Chores
200
+
201
+ * **core:** Synchronize repo versions
202
+
203
+
204
+ ### Dependencies
205
+
206
+ * The following workspace dependencies were updated
207
+ * dependencies
208
+ * @twin.org/nameof bumped from 0.0.3-next.36 to 0.0.3-next.37
209
+ * devDependencies
210
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.36 to 0.0.3-next.37
211
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.36 to 0.0.3-next.37
212
+
213
+ ## [0.0.3-next.36](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.35...core-v0.0.3-next.36) (2026-05-07)
214
+
215
+
216
+ ### Features
217
+
218
+ * add teardown to IComponent interface ([32c173c](https://github.com/iotaledger/twin-framework/commit/32c173cda115c20d3b4cee14b8a29cdc08e91555))
219
+ * add teardown to IComponent interface ([98ce864](https://github.com/iotaledger/twin-framework/commit/98ce8648e709310c4435de334825b381fb4e32cb))
220
+
221
+
222
+ ### Dependencies
223
+
224
+ * The following workspace dependencies were updated
225
+ * dependencies
226
+ * @twin.org/nameof bumped from 0.0.3-next.35 to 0.0.3-next.36
227
+ * devDependencies
228
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.35 to 0.0.3-next.36
229
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.35 to 0.0.3-next.36
230
+
231
+ ## [0.0.3-next.35](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.34...core-v0.0.3-next.35) (2026-05-06)
232
+
233
+
234
+ ### Features
235
+
236
+ * add support for health i18n validation ([7a286dd](https://github.com/iotaledger/twin-framework/commit/7a286ddb0c1bfa498bf3a77126cd589042bad6de))
237
+
238
+
239
+ ### Dependencies
240
+
241
+ * The following workspace dependencies were updated
242
+ * dependencies
243
+ * @twin.org/nameof bumped from 0.0.3-next.34 to 0.0.3-next.35
244
+ * devDependencies
245
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.34 to 0.0.3-next.35
246
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.34 to 0.0.3-next.35
247
+
248
+ ## [0.0.3-next.34](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.33...core-v0.0.3-next.34) (2026-05-06)
249
+
250
+
251
+ ### Features
252
+
253
+ * health status grouping ([5007c29](https://github.com/iotaledger/twin-framework/commit/5007c29fe4123fe56f754450b993dbe5dc32a057))
254
+
255
+
256
+ ### Dependencies
257
+
258
+ * The following workspace dependencies were updated
259
+ * dependencies
260
+ * @twin.org/nameof bumped from 0.0.3-next.33 to 0.0.3-next.34
261
+ * devDependencies
262
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.33 to 0.0.3-next.34
263
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.33 to 0.0.3-next.34
264
+
265
+ ## [0.0.3-next.33](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.32...core-v0.0.3-next.33) (2026-05-05)
266
+
267
+
268
+ ### Features
269
+
270
+ * add health method to components ([a88016d](https://github.com/iotaledger/twin-framework/commit/a88016d90d172413e5bc5238dc1b3e35f82fcc2c))
271
+
272
+
273
+ ### Bug Fixes
274
+
275
+ * improve jsdoc comments ([f7c8e43](https://github.com/iotaledger/twin-framework/commit/f7c8e43fab9803dffa6461950d5b9979e25bcd24))
276
+
277
+
278
+ ### Dependencies
279
+
280
+ * The following workspace dependencies were updated
281
+ * dependencies
282
+ * @twin.org/nameof bumped from 0.0.3-next.32 to 0.0.3-next.33
283
+ * devDependencies
284
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.32 to 0.0.3-next.33
285
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.32 to 0.0.3-next.33
286
+
287
+ ## [0.0.3-next.32](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.31...core-v0.0.3-next.32) (2026-04-30)
288
+
289
+
290
+ ### Miscellaneous Chores
291
+
292
+ * **core:** Synchronize repo versions
293
+
294
+
295
+ ### Dependencies
296
+
297
+ * The following workspace dependencies were updated
298
+ * dependencies
299
+ * @twin.org/nameof bumped from 0.0.3-next.31 to 0.0.3-next.32
300
+ * devDependencies
301
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.31 to 0.0.3-next.32
302
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.31 to 0.0.3-next.32
303
+
304
+ ## [0.0.3-next.31](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.30...core-v0.0.3-next.31) (2026-04-14)
305
+
306
+
307
+ ### Features
308
+
309
+ * improve async cache edge cases ([4e57a6e](https://github.com/iotaledger/twin-framework/commit/4e57a6ec4113533b0ea903eae7d469200fa1348c))
310
+
311
+
312
+ ### Dependencies
313
+
314
+ * The following workspace dependencies were updated
315
+ * dependencies
316
+ * @twin.org/nameof bumped from 0.0.3-next.30 to 0.0.3-next.31
317
+ * devDependencies
318
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.30 to 0.0.3-next.31
319
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.30 to 0.0.3-next.31
320
+
321
+ ## [0.0.3-next.30](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.29...core-v0.0.3-next.30) (2026-04-14)
322
+
323
+
324
+ ### Miscellaneous Chores
325
+
326
+ * **core:** Synchronize repo versions
327
+
328
+
329
+ ### Dependencies
330
+
331
+ * The following workspace dependencies were updated
332
+ * dependencies
333
+ * @twin.org/nameof bumped from 0.0.3-next.29 to 0.0.3-next.30
334
+ * devDependencies
335
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.29 to 0.0.3-next.30
336
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.29 to 0.0.3-next.30
337
+
338
+ ## [0.0.3-next.29](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.28...core-v0.0.3-next.29) (2026-04-14)
339
+
340
+
341
+ ### Miscellaneous Chores
342
+
343
+ * **core:** Synchronize repo versions
344
+
345
+
346
+ ### Dependencies
347
+
348
+ * The following workspace dependencies were updated
349
+ * dependencies
350
+ * @twin.org/nameof bumped from 0.0.3-next.28 to 0.0.3-next.29
351
+ * devDependencies
352
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.28 to 0.0.3-next.29
353
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.28 to 0.0.3-next.29
354
+
355
+ ## [0.0.3-next.28](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.27...core-v0.0.3-next.28) (2026-03-27)
356
+
357
+
358
+ ### Miscellaneous Chores
359
+
360
+ * **core:** Synchronize repo versions
361
+
362
+
363
+ ### Dependencies
364
+
365
+ * The following workspace dependencies were updated
366
+ * dependencies
367
+ * @twin.org/nameof bumped from 0.0.3-next.27 to 0.0.3-next.28
368
+ * devDependencies
369
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.27 to 0.0.3-next.28
370
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.27 to 0.0.3-next.28
371
+
372
+ ## [0.0.3-next.27](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.26...core-v0.0.3-next.27) (2026-03-27)
373
+
374
+
375
+ ### Miscellaneous Chores
376
+
377
+ * **core:** Synchronize repo versions
378
+
379
+
380
+ ### Dependencies
381
+
382
+ * The following workspace dependencies were updated
383
+ * dependencies
384
+ * @twin.org/nameof bumped from 0.0.3-next.26 to 0.0.3-next.27
385
+ * devDependencies
386
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.26 to 0.0.3-next.27
387
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.26 to 0.0.3-next.27
388
+
389
+ ## [0.0.3-next.26](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.25...core-v0.0.3-next.26) (2026-03-24)
390
+
391
+
392
+ ### Miscellaneous Chores
393
+
394
+ * **core:** Synchronize repo versions
395
+
396
+
397
+ ### Dependencies
398
+
399
+ * The following workspace dependencies were updated
400
+ * dependencies
401
+ * @twin.org/nameof bumped from 0.0.3-next.25 to 0.0.3-next.26
402
+ * devDependencies
403
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.25 to 0.0.3-next.26
404
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.25 to 0.0.3-next.26
405
+
406
+ ## [0.0.3-next.25](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.24...core-v0.0.3-next.25) (2026-03-23)
407
+
408
+
409
+ ### Bug Fixes
410
+
411
+ * improve exception handling in asyncCache ([c81b29b](https://github.com/iotaledger/twin-framework/commit/c81b29b660b152d2f0757d323430287e6491bf59))
412
+
413
+
414
+ ### Dependencies
415
+
416
+ * The following workspace dependencies were updated
417
+ * dependencies
418
+ * @twin.org/nameof bumped from 0.0.3-next.24 to 0.0.3-next.25
419
+ * devDependencies
420
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.24 to 0.0.3-next.25
421
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.24 to 0.0.3-next.25
422
+
423
+ ## [0.0.3-next.24](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.23...core-v0.0.3-next.24) (2026-03-19)
424
+
425
+
426
+ ### Bug Fixes
427
+
428
+ * ensure __decorate is defined for decorators ([103a563](https://github.com/iotaledger/twin-framework/commit/103a563ce01ebdef6240d2e590e7b026e8692684))
429
+
430
+
431
+ ### Dependencies
432
+
433
+ * The following workspace dependencies were updated
434
+ * dependencies
435
+ * @twin.org/nameof bumped from 0.0.3-next.23 to 0.0.3-next.24
436
+ * devDependencies
437
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.23 to 0.0.3-next.24
438
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.23 to 0.0.3-next.24
439
+
440
+ ## [0.0.3-next.23](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.22...core-v0.0.3-next.23) (2026-03-17)
441
+
442
+
443
+ ### Features
444
+
445
+ * add single occurrence array type ([e890e43](https://github.com/iotaledger/twin-framework/commit/e890e4399e75ae5097f3ad8b1007321cbb1ed4ac))
446
+ * add single occurrence array type ([#245](https://github.com/iotaledger/twin-framework/issues/245)) ([771dc78](https://github.com/iotaledger/twin-framework/commit/771dc78025b5546c9c9681be9494a76ab71171c6))
447
+
448
+
449
+ ### Dependencies
450
+
451
+ * The following workspace dependencies were updated
452
+ * dependencies
453
+ * @twin.org/nameof bumped from 0.0.3-next.22 to 0.0.3-next.23
454
+ * devDependencies
455
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.22 to 0.0.3-next.23
456
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.22 to 0.0.3-next.23
457
+
458
+ ## [0.0.3-next.22](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.21...core-v0.0.3-next.22) (2026-02-26)
459
+
460
+
461
+ ### Features
462
+
463
+ * simplify factory options ([7f85a85](https://github.com/iotaledger/twin-framework/commit/7f85a8553dd3008364e8e1104f2e6f6b6595d77e))
464
+
465
+
466
+ ### Dependencies
467
+
468
+ * The following workspace dependencies were updated
469
+ * dependencies
470
+ * @twin.org/nameof bumped from 0.0.3-next.21 to 0.0.3-next.22
471
+ * devDependencies
472
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.21 to 0.0.3-next.22
473
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.21 to 0.0.3-next.22
474
+
475
+ ## [0.0.3-next.21](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.20...core-v0.0.3-next.21) (2026-02-26)
476
+
477
+
478
+ ### Features
479
+
480
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
481
+ * add factory.createIfExists ([aad5a53](https://github.com/iotaledger/twin-framework/commit/aad5a53cef1b1c2e04344ea46244d41e371dff9b))
482
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
483
+ * add Is.class method ([4988205](https://github.com/iotaledger/twin-framework/commit/498820543e256a130b4888c958fe1d87ca865d7f))
484
+ * add isDefault option to factory registration ([a8a700b](https://github.com/iotaledger/twin-framework/commit/a8a700bb8ddaf7dd5097869a358b8fc5f7c40ce7))
485
+ * add objectHelper.split ([386830a](https://github.com/iotaledger/twin-framework/commit/386830a77f8e842a5b119be0983708e042c3b14b))
486
+ * add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/iotaledger/twin-framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
487
+ * add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
488
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
489
+ * add typeName method to factory ([699fcbd](https://github.com/iotaledger/twin-framework/commit/699fcbd1168228401ddb81fdacb959b8cdc4206a))
490
+ * add uuidv7 support ([#219](https://github.com/iotaledger/twin-framework/issues/219)) ([916c657](https://github.com/iotaledger/twin-framework/commit/916c657d270ce99fafe554233739fdd9ca28635b))
491
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
492
+ * adding link header helper ([#225](https://github.com/iotaledger/twin-framework/issues/225)) ([703c072](https://github.com/iotaledger/twin-framework/commit/703c0725aceac6b6ec0c4fa729ef832d12fb3fd7))
493
+ * additional nameof operators ([a5aab60](https://github.com/iotaledger/twin-framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
494
+ * additional RSA methods and async ([1fceee2](https://github.com/iotaledger/twin-framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
495
+ * async cache don't cache failures unless requested ([658ec4b](https://github.com/iotaledger/twin-framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
496
+ * bump version ([c5354fa](https://github.com/iotaledger/twin-framework/commit/c5354fa906f4493c70f2642a9175a66780a10636))
497
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
498
+ * expand error params to accept properties ([032e9fd](https://github.com/iotaledger/twin-framework/commit/032e9fd1388e457cde32ca1005dfe014a5a9c077))
499
+ * factory create and integrity ([#235](https://github.com/iotaledger/twin-framework/issues/235)) ([9f98b99](https://github.com/iotaledger/twin-framework/commit/9f98b99daf46eb365346fae49cc4ffba63e74cb3))
500
+ * improve base error data extraction ([dccc933](https://github.com/iotaledger/twin-framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
501
+ * improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
502
+ * improve Is.function and ModuleHelper.getModuleMethod signatures ([ecf968b](https://github.com/iotaledger/twin-framework/commit/ecf968b02934b3676be4bf7cd2d1e7f8e7af6ce2))
503
+ * improve Is.function definition to retain types ([f20b6b0](https://github.com/iotaledger/twin-framework/commit/f20b6b0dd16e74b75dc359be72b05989305c6410))
504
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
505
+ * nodeIdentity optional in IComponent methods ([c78dc17](https://github.com/iotaledger/twin-framework/commit/c78dc17f4357d3e1ae40e415f468d3eae13e81f4))
506
+ * propagate includeStackTrace on error conversion ([8471cbb](https://github.com/iotaledger/twin-framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
507
+ * propagate includeStackTrace on error conversion ([818337d](https://github.com/iotaledger/twin-framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
508
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
509
+ * simplify async set ([#121](https://github.com/iotaledger/twin-framework/issues/121)) ([2693c32](https://github.com/iotaledger/twin-framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
510
+ * simplify StringHelper signature ([0390403](https://github.com/iotaledger/twin-framework/commit/039040344952f91ee3c671249bc0e1c8f3b38e17))
511
+ * support indexed properties set in objects ([b9c001d](https://github.com/iotaledger/twin-framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
512
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
513
+ * urn random switched to using uuidv7 ([606c9a2](https://github.com/iotaledger/twin-framework/commit/606c9a2ed68a10fc7fc2bc5f93388c1b71033154))
514
+ * urn random switched to using uuidv7 ([6a29f8b](https://github.com/iotaledger/twin-framework/commit/6a29f8bd573d06992b7eaa027b1daf4c2a2e1e85))
515
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
516
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
517
+
518
+
519
+ ### Dependencies
520
+
521
+ * The following workspace dependencies were updated
522
+ * dependencies
523
+ * @twin.org/nameof bumped from 0.0.3-next.20 to 0.0.3-next.21
524
+ * devDependencies
525
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.20 to 0.0.3-next.21
526
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.20 to 0.0.3-next.21
527
+
528
+ ## [0.0.3-next.20](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.19...core-v0.0.3-next.20) (2026-02-26)
529
+
530
+
531
+ ### Features
532
+
533
+ * add typeName method to factory ([699fcbd](https://github.com/iotaledger/twin-framework/commit/699fcbd1168228401ddb81fdacb959b8cdc4206a))
534
+
535
+
536
+ ### Dependencies
537
+
538
+ * The following workspace dependencies were updated
539
+ * dependencies
540
+ * @twin.org/nameof bumped from 0.0.3-next.19 to 0.0.3-next.20
541
+ * devDependencies
542
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.19 to 0.0.3-next.20
543
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.19 to 0.0.3-next.20
544
+
545
+ ## [0.0.3-next.19](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.18...core-v0.0.3-next.19) (2026-02-26)
546
+
547
+
548
+ ### Features
549
+
550
+ * add isDefault option to factory registration ([a8a700b](https://github.com/iotaledger/twin-framework/commit/a8a700bb8ddaf7dd5097869a358b8fc5f7c40ce7))
551
+
552
+
553
+ ### Dependencies
554
+
555
+ * The following workspace dependencies were updated
556
+ * dependencies
557
+ * @twin.org/nameof bumped from 0.0.3-next.18 to 0.0.3-next.19
558
+ * devDependencies
559
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.18 to 0.0.3-next.19
560
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.18 to 0.0.3-next.19
561
+
562
+ ## [0.0.3-next.18](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.17...core-v0.0.3-next.18) (2026-02-23)
563
+
564
+
565
+ ### Features
566
+
567
+ * add factory.createIfExists ([aad5a53](https://github.com/iotaledger/twin-framework/commit/aad5a53cef1b1c2e04344ea46244d41e371dff9b))
568
+
569
+
570
+ ### Dependencies
571
+
572
+ * The following workspace dependencies were updated
573
+ * dependencies
574
+ * @twin.org/nameof bumped from 0.0.3-next.17 to 0.0.3-next.18
575
+ * devDependencies
576
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.17 to 0.0.3-next.18
577
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.17 to 0.0.3-next.18
578
+
579
+ ## [0.0.3-next.17](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.16...core-v0.0.3-next.17) (2026-02-09)
580
+
581
+
582
+ ### Features
583
+
584
+ * factory create and integrity ([#235](https://github.com/iotaledger/twin-framework/issues/235)) ([9f98b99](https://github.com/iotaledger/twin-framework/commit/9f98b99daf46eb365346fae49cc4ffba63e74cb3))
585
+
586
+
587
+ ### Dependencies
588
+
589
+ * The following workspace dependencies were updated
590
+ * dependencies
591
+ * @twin.org/nameof bumped from 0.0.3-next.16 to 0.0.3-next.17
592
+ * devDependencies
593
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.16 to 0.0.3-next.17
594
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.16 to 0.0.3-next.17
595
+
596
+ ## [0.0.3-next.16](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.15...core-v0.0.3-next.16) (2026-02-06)
597
+
598
+
599
+ ### Features
600
+
601
+ * urn random switched to using uuidv7 ([606c9a2](https://github.com/iotaledger/twin-framework/commit/606c9a2ed68a10fc7fc2bc5f93388c1b71033154))
602
+
603
+
604
+ ### Dependencies
605
+
606
+ * The following workspace dependencies were updated
607
+ * dependencies
608
+ * @twin.org/nameof bumped from 0.0.3-next.15 to 0.0.3-next.16
609
+ * devDependencies
610
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.15 to 0.0.3-next.16
611
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.15 to 0.0.3-next.16
612
+
613
+ ## [0.0.3-next.15](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.14...core-v0.0.3-next.15) (2026-01-29)
614
+
615
+
616
+ ### Features
617
+
618
+ * urn random switched to using uuidv7 ([6a29f8b](https://github.com/iotaledger/twin-framework/commit/6a29f8bd573d06992b7eaa027b1daf4c2a2e1e85))
619
+
620
+
621
+ ### Dependencies
622
+
623
+ * The following workspace dependencies were updated
624
+ * dependencies
625
+ * @twin.org/nameof bumped from 0.0.3-next.14 to 0.0.3-next.15
626
+ * devDependencies
627
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.14 to 0.0.3-next.15
628
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.14 to 0.0.3-next.15
629
+
630
+ ## [0.0.3-next.14](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.13...core-v0.0.3-next.14) (2026-01-22)
631
+
632
+
633
+ ### Miscellaneous Chores
634
+
635
+ * **core:** Synchronize repo versions
636
+
637
+
638
+ ### Dependencies
639
+
640
+ * The following workspace dependencies were updated
641
+ * dependencies
642
+ * @twin.org/nameof bumped from 0.0.3-next.13 to 0.0.3-next.14
643
+ * devDependencies
644
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.13 to 0.0.3-next.14
645
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.13 to 0.0.3-next.14
646
+
647
+ ## [0.0.3-next.13](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.12...core-v0.0.3-next.13) (2026-01-08)
648
+
649
+
650
+ ### Miscellaneous Chores
651
+
652
+ * **core:** Synchronize repo versions
653
+
654
+
655
+ ### Dependencies
656
+
657
+ * The following workspace dependencies were updated
658
+ * dependencies
659
+ * @twin.org/nameof bumped from 0.0.3-next.12 to 0.0.3-next.13
660
+ * devDependencies
661
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.12 to 0.0.3-next.13
662
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.12 to 0.0.3-next.13
663
+
664
+ ## [0.0.3-next.12](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.11...core-v0.0.3-next.12) (2026-01-08)
665
+
666
+
667
+ ### Features
668
+
669
+ * adding link header helper ([#225](https://github.com/iotaledger/twin-framework/issues/225)) ([703c072](https://github.com/iotaledger/twin-framework/commit/703c0725aceac6b6ec0c4fa729ef832d12fb3fd7))
670
+
671
+
672
+ ### Dependencies
673
+
674
+ * The following workspace dependencies were updated
675
+ * dependencies
676
+ * @twin.org/nameof bumped from 0.0.3-next.11 to 0.0.3-next.12
677
+ * devDependencies
678
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.11 to 0.0.3-next.12
679
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.11 to 0.0.3-next.12
680
+
681
+ ## [0.0.3-next.11](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.10...core-v0.0.3-next.11) (2026-01-07)
682
+
683
+
684
+ ### Miscellaneous Chores
685
+
686
+ * **core:** Synchronize repo versions
687
+
688
+
689
+ ### Dependencies
690
+
691
+ * The following workspace dependencies were updated
692
+ * dependencies
693
+ * @twin.org/nameof bumped from 0.0.3-next.10 to 0.0.3-next.11
694
+ * devDependencies
695
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.10 to 0.0.3-next.11
696
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.10 to 0.0.3-next.11
697
+
698
+ ## [0.0.3-next.10](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.9...core-v0.0.3-next.10) (2026-01-07)
699
+
700
+
701
+ ### Miscellaneous Chores
702
+
703
+ * **core:** Synchronize repo versions
704
+
705
+
706
+ ### Dependencies
707
+
708
+ * The following workspace dependencies were updated
709
+ * dependencies
710
+ * @twin.org/nameof bumped from 0.0.3-next.9 to 0.0.3-next.10
711
+ * devDependencies
712
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.9 to 0.0.3-next.10
713
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.9 to 0.0.3-next.10
714
+
715
+ ## [0.0.3-next.9](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.8...core-v0.0.3-next.9) (2026-01-05)
716
+
717
+
718
+ ### Features
719
+
720
+ * add uuidv7 support ([#219](https://github.com/iotaledger/twin-framework/issues/219)) ([916c657](https://github.com/iotaledger/twin-framework/commit/916c657d270ce99fafe554233739fdd9ca28635b))
9
721
 
10
722
 
11
723
  ### Dependencies
@@ -17,7 +729,7 @@
17
729
  * @twin.org/nameof-transformer bumped from 0.0.3-next.8 to 0.0.3-next.9
18
730
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.8 to 0.0.3-next.9
19
731
 
20
- ## [0.0.3-next.8](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.7...core-v0.0.3-next.8) (2025-11-26)
732
+ ## [0.0.3-next.8](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.7...core-v0.0.3-next.8) (2025-11-26)
21
733
 
22
734
 
23
735
  ### Miscellaneous Chores
@@ -34,39 +746,39 @@
34
746
  * @twin.org/nameof-transformer bumped from 0.0.3-next.7 to 0.0.3-next.8
35
747
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.7 to 0.0.3-next.8
36
748
 
37
- ## [0.0.3-next.7](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.6...core-v0.0.3-next.7) (2025-11-25)
749
+ ## [0.0.3-next.7](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.6...core-v0.0.3-next.7) (2025-11-25)
38
750
 
39
751
 
40
752
  ### Features
41
753
 
42
- * add context id features ([#206](https://github.com/twinfoundation/framework/issues/206)) ([ef0d4ee](https://github.com/twinfoundation/framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
43
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
44
- * add Is.class method ([4988205](https://github.com/twinfoundation/framework/commit/498820543e256a130b4888c958fe1d87ca865d7f))
45
- * add objectHelper.split ([386830a](https://github.com/twinfoundation/framework/commit/386830a77f8e842a5b119be0983708e042c3b14b))
46
- * add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/twinfoundation/framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
47
- * add rsa cipher support ([7af6cc6](https://github.com/twinfoundation/framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
48
- * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
49
- * add zlib/deflate mime types detection ([72c472b](https://github.com/twinfoundation/framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
50
- * additional nameof operators ([a5aab60](https://github.com/twinfoundation/framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
51
- * additional RSA methods and async ([1fceee2](https://github.com/twinfoundation/framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
52
- * async cache don't cache failures unless requested ([658ec4b](https://github.com/twinfoundation/framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
53
- * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
54
- * expand error params to accept properties ([032e9fd](https://github.com/twinfoundation/framework/commit/032e9fd1388e457cde32ca1005dfe014a5a9c077))
55
- * improve base error data extraction ([dccc933](https://github.com/twinfoundation/framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
56
- * improve error display in CLI ([94b6ca8](https://github.com/twinfoundation/framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
57
- * improve Is.function and ModuleHelper.getModuleMethod signatures ([ecf968b](https://github.com/twinfoundation/framework/commit/ecf968b02934b3676be4bf7cd2d1e7f8e7af6ce2))
58
- * improve Is.function definition to retain types ([f20b6b0](https://github.com/twinfoundation/framework/commit/f20b6b0dd16e74b75dc359be72b05989305c6410))
59
- * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
60
- * nodeIdentity optional in IComponent methods ([c78dc17](https://github.com/twinfoundation/framework/commit/c78dc17f4357d3e1ae40e415f468d3eae13e81f4))
61
- * propagate includeStackTrace on error conversion ([8471cbb](https://github.com/twinfoundation/framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
62
- * propagate includeStackTrace on error conversion ([818337d](https://github.com/twinfoundation/framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
63
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
64
- * simplify async set ([#121](https://github.com/twinfoundation/framework/issues/121)) ([2693c32](https://github.com/twinfoundation/framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
65
- * simplify StringHelper signature ([0390403](https://github.com/twinfoundation/framework/commit/039040344952f91ee3c671249bc0e1c8f3b38e17))
66
- * support indexed properties set in objects ([b9c001d](https://github.com/twinfoundation/framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
67
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
68
- * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
69
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
754
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
755
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
756
+ * add Is.class method ([4988205](https://github.com/iotaledger/twin-framework/commit/498820543e256a130b4888c958fe1d87ca865d7f))
757
+ * add objectHelper.split ([386830a](https://github.com/iotaledger/twin-framework/commit/386830a77f8e842a5b119be0983708e042c3b14b))
758
+ * add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/iotaledger/twin-framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
759
+ * add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
760
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
761
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
762
+ * additional nameof operators ([a5aab60](https://github.com/iotaledger/twin-framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
763
+ * additional RSA methods and async ([1fceee2](https://github.com/iotaledger/twin-framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
764
+ * async cache don't cache failures unless requested ([658ec4b](https://github.com/iotaledger/twin-framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
765
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
766
+ * expand error params to accept properties ([032e9fd](https://github.com/iotaledger/twin-framework/commit/032e9fd1388e457cde32ca1005dfe014a5a9c077))
767
+ * improve base error data extraction ([dccc933](https://github.com/iotaledger/twin-framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
768
+ * improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
769
+ * improve Is.function and ModuleHelper.getModuleMethod signatures ([ecf968b](https://github.com/iotaledger/twin-framework/commit/ecf968b02934b3676be4bf7cd2d1e7f8e7af6ce2))
770
+ * improve Is.function definition to retain types ([f20b6b0](https://github.com/iotaledger/twin-framework/commit/f20b6b0dd16e74b75dc359be72b05989305c6410))
771
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
772
+ * nodeIdentity optional in IComponent methods ([c78dc17](https://github.com/iotaledger/twin-framework/commit/c78dc17f4357d3e1ae40e415f468d3eae13e81f4))
773
+ * propagate includeStackTrace on error conversion ([8471cbb](https://github.com/iotaledger/twin-framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
774
+ * propagate includeStackTrace on error conversion ([818337d](https://github.com/iotaledger/twin-framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
775
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
776
+ * simplify async set ([#121](https://github.com/iotaledger/twin-framework/issues/121)) ([2693c32](https://github.com/iotaledger/twin-framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
777
+ * simplify StringHelper signature ([0390403](https://github.com/iotaledger/twin-framework/commit/039040344952f91ee3c671249bc0e1c8f3b38e17))
778
+ * support indexed properties set in objects ([b9c001d](https://github.com/iotaledger/twin-framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
779
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
780
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
781
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
70
782
 
71
783
 
72
784
  ### Dependencies
@@ -78,7 +790,7 @@
78
790
  * @twin.org/nameof-transformer bumped from 0.0.3-next.6 to 0.0.3-next.7
79
791
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.6 to 0.0.3-next.7
80
792
 
81
- ## [0.0.3-next.6](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.5...core-v0.0.3-next.6) (2025-11-25)
793
+ ## [0.0.3-next.6](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.5...core-v0.0.3-next.6) (2025-11-25)
82
794
 
83
795
 
84
796
  ### Miscellaneous Chores
@@ -95,7 +807,7 @@
95
807
  * @twin.org/nameof-transformer bumped from 0.0.3-next.5 to 0.0.3-next.6
96
808
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.5 to 0.0.3-next.6
97
809
 
98
- ## [0.0.3-next.5](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.4...core-v0.0.3-next.5) (2025-11-20)
810
+ ## [0.0.3-next.5](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.4...core-v0.0.3-next.5) (2025-11-20)
99
811
 
100
812
 
101
813
  ### Miscellaneous Chores
@@ -112,7 +824,7 @@
112
824
  * @twin.org/nameof-transformer bumped from 0.0.3-next.4 to 0.0.3-next.5
113
825
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.4 to 0.0.3-next.5
114
826
 
115
- ## [0.0.3-next.4](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.3...core-v0.0.3-next.4) (2025-11-13)
827
+ ## [0.0.3-next.4](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.3...core-v0.0.3-next.4) (2025-11-13)
116
828
 
117
829
 
118
830
  ### Miscellaneous Chores
@@ -129,7 +841,7 @@
129
841
  * @twin.org/nameof-transformer bumped from 0.0.3-next.3 to 0.0.3-next.4
130
842
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.3 to 0.0.3-next.4
131
843
 
132
- ## [0.0.3-next.3](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.2...core-v0.0.3-next.3) (2025-11-12)
844
+ ## [0.0.3-next.3](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.2...core-v0.0.3-next.3) (2025-11-12)
133
845
 
134
846
 
135
847
  ### Miscellaneous Chores
@@ -146,7 +858,7 @@
146
858
  * @twin.org/nameof-transformer bumped from 0.0.3-next.2 to 0.0.3-next.3
147
859
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.2 to 0.0.3-next.3
148
860
 
149
- ## [0.0.3-next.2](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.1...core-v0.0.3-next.2) (2025-11-12)
861
+ ## [0.0.3-next.2](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.1...core-v0.0.3-next.2) (2025-11-12)
150
862
 
151
863
 
152
864
  ### Miscellaneous Chores
@@ -163,39 +875,39 @@
163
875
  * @twin.org/nameof-transformer bumped from 0.0.3-next.1 to 0.0.3-next.2
164
876
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.1 to 0.0.3-next.2
165
877
 
166
- ## [0.0.3-next.1](https://github.com/twinfoundation/framework/compare/core-v0.0.3-next.0...core-v0.0.3-next.1) (2025-11-10)
878
+ ## [0.0.3-next.1](https://github.com/iotaledger/twin-framework/compare/core-v0.0.3-next.0...core-v0.0.3-next.1) (2025-11-10)
167
879
 
168
880
 
169
881
  ### Features
170
882
 
171
- * add context id features ([#206](https://github.com/twinfoundation/framework/issues/206)) ([ef0d4ee](https://github.com/twinfoundation/framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
172
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
173
- * add Is.class method ([4988205](https://github.com/twinfoundation/framework/commit/498820543e256a130b4888c958fe1d87ca865d7f))
174
- * add objectHelper.split ([386830a](https://github.com/twinfoundation/framework/commit/386830a77f8e842a5b119be0983708e042c3b14b))
175
- * add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/twinfoundation/framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
176
- * add rsa cipher support ([7af6cc6](https://github.com/twinfoundation/framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
177
- * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
178
- * add zlib/deflate mime types detection ([72c472b](https://github.com/twinfoundation/framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
179
- * additional nameof operators ([a5aab60](https://github.com/twinfoundation/framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
180
- * additional RSA methods and async ([1fceee2](https://github.com/twinfoundation/framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
181
- * async cache don't cache failures unless requested ([658ec4b](https://github.com/twinfoundation/framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
182
- * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
183
- * expand error params to accept properties ([032e9fd](https://github.com/twinfoundation/framework/commit/032e9fd1388e457cde32ca1005dfe014a5a9c077))
184
- * improve base error data extraction ([dccc933](https://github.com/twinfoundation/framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
185
- * improve error display in CLI ([94b6ca8](https://github.com/twinfoundation/framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
186
- * improve Is.function and ModuleHelper.getModuleMethod signatures ([ecf968b](https://github.com/twinfoundation/framework/commit/ecf968b02934b3676be4bf7cd2d1e7f8e7af6ce2))
187
- * improve Is.function definition to retain types ([f20b6b0](https://github.com/twinfoundation/framework/commit/f20b6b0dd16e74b75dc359be72b05989305c6410))
188
- * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
189
- * nodeIdentity optional in IComponent methods ([c78dc17](https://github.com/twinfoundation/framework/commit/c78dc17f4357d3e1ae40e415f468d3eae13e81f4))
190
- * propagate includeStackTrace on error conversion ([8471cbb](https://github.com/twinfoundation/framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
191
- * propagate includeStackTrace on error conversion ([818337d](https://github.com/twinfoundation/framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
192
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
193
- * simplify async set ([#121](https://github.com/twinfoundation/framework/issues/121)) ([2693c32](https://github.com/twinfoundation/framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
194
- * simplify StringHelper signature ([0390403](https://github.com/twinfoundation/framework/commit/039040344952f91ee3c671249bc0e1c8f3b38e17))
195
- * support indexed properties set in objects ([b9c001d](https://github.com/twinfoundation/framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
196
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
197
- * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
198
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
883
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
884
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
885
+ * add Is.class method ([4988205](https://github.com/iotaledger/twin-framework/commit/498820543e256a130b4888c958fe1d87ca865d7f))
886
+ * add objectHelper.split ([386830a](https://github.com/iotaledger/twin-framework/commit/386830a77f8e842a5b119be0983708e042c3b14b))
887
+ * add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/iotaledger/twin-framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
888
+ * add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
889
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
890
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
891
+ * additional nameof operators ([a5aab60](https://github.com/iotaledger/twin-framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
892
+ * additional RSA methods and async ([1fceee2](https://github.com/iotaledger/twin-framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
893
+ * async cache don't cache failures unless requested ([658ec4b](https://github.com/iotaledger/twin-framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
894
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
895
+ * expand error params to accept properties ([032e9fd](https://github.com/iotaledger/twin-framework/commit/032e9fd1388e457cde32ca1005dfe014a5a9c077))
896
+ * improve base error data extraction ([dccc933](https://github.com/iotaledger/twin-framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
897
+ * improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
898
+ * improve Is.function and ModuleHelper.getModuleMethod signatures ([ecf968b](https://github.com/iotaledger/twin-framework/commit/ecf968b02934b3676be4bf7cd2d1e7f8e7af6ce2))
899
+ * improve Is.function definition to retain types ([f20b6b0](https://github.com/iotaledger/twin-framework/commit/f20b6b0dd16e74b75dc359be72b05989305c6410))
900
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
901
+ * nodeIdentity optional in IComponent methods ([c78dc17](https://github.com/iotaledger/twin-framework/commit/c78dc17f4357d3e1ae40e415f468d3eae13e81f4))
902
+ * propagate includeStackTrace on error conversion ([8471cbb](https://github.com/iotaledger/twin-framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
903
+ * propagate includeStackTrace on error conversion ([818337d](https://github.com/iotaledger/twin-framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
904
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
905
+ * simplify async set ([#121](https://github.com/iotaledger/twin-framework/issues/121)) ([2693c32](https://github.com/iotaledger/twin-framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
906
+ * simplify StringHelper signature ([0390403](https://github.com/iotaledger/twin-framework/commit/039040344952f91ee3c671249bc0e1c8f3b38e17))
907
+ * support indexed properties set in objects ([b9c001d](https://github.com/iotaledger/twin-framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
908
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
909
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
910
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
199
911
 
200
912
 
201
913
  ### Dependencies
@@ -207,7 +919,7 @@
207
919
  * @twin.org/nameof-transformer bumped from 0.0.3-next.0 to 0.0.3-next.1
208
920
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.0 to 0.0.3-next.1
209
921
 
210
- ## [0.0.2-next.22](https://github.com/twinfoundation/framework/compare/core-v0.0.2-next.21...core-v0.0.2-next.22) (2025-10-10)
922
+ ## [0.0.2-next.22](https://github.com/iotaledger/twin-framework/compare/core-v0.0.2-next.21...core-v0.0.2-next.22) (2025-10-10)
211
923
 
212
924
 
213
925
  ### Miscellaneous Chores
@@ -224,12 +936,12 @@
224
936
  * @twin.org/nameof-transformer bumped from 0.0.2-next.21 to 0.0.2-next.22
225
937
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.21 to 0.0.2-next.22
226
938
 
227
- ## [0.0.2-next.21](https://github.com/twinfoundation/framework/compare/core-v0.0.2-next.20...core-v0.0.2-next.21) (2025-10-09)
939
+ ## [0.0.2-next.21](https://github.com/iotaledger/twin-framework/compare/core-v0.0.2-next.20...core-v0.0.2-next.21) (2025-10-09)
228
940
 
229
941
 
230
942
  ### Features
231
943
 
232
- * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
944
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
233
945
 
234
946
 
235
947
  ### Dependencies
@@ -241,12 +953,12 @@
241
953
  * @twin.org/nameof-transformer bumped from 0.0.2-next.20 to 0.0.2-next.21
242
954
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.20 to 0.0.2-next.21
243
955
 
244
- ## [0.0.2-next.20](https://github.com/twinfoundation/framework/compare/core-v0.0.2-next.19...core-v0.0.2-next.20) (2025-10-02)
956
+ ## [0.0.2-next.20](https://github.com/iotaledger/twin-framework/compare/core-v0.0.2-next.19...core-v0.0.2-next.20) (2025-10-02)
245
957
 
246
958
 
247
959
  ### Features
248
960
 
249
- * improve Is.function and ModuleHelper.getModuleMethod signatures ([ecf968b](https://github.com/twinfoundation/framework/commit/ecf968b02934b3676be4bf7cd2d1e7f8e7af6ce2))
961
+ * improve Is.function and ModuleHelper.getModuleMethod signatures ([ecf968b](https://github.com/iotaledger/twin-framework/commit/ecf968b02934b3676be4bf7cd2d1e7f8e7af6ce2))
250
962
 
251
963
 
252
964
  ### Dependencies
@@ -258,12 +970,12 @@
258
970
  * @twin.org/nameof-transformer bumped from 0.0.2-next.19 to 0.0.2-next.20
259
971
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.19 to 0.0.2-next.20
260
972
 
261
- ## [0.0.2-next.19](https://github.com/twinfoundation/framework/compare/core-v0.0.2-next.18...core-v0.0.2-next.19) (2025-09-30)
973
+ ## [0.0.2-next.19](https://github.com/iotaledger/twin-framework/compare/core-v0.0.2-next.18...core-v0.0.2-next.19) (2025-09-30)
262
974
 
263
975
 
264
976
  ### Features
265
977
 
266
- * add objectHelper.split ([386830a](https://github.com/twinfoundation/framework/commit/386830a77f8e842a5b119be0983708e042c3b14b))
978
+ * add objectHelper.split ([386830a](https://github.com/iotaledger/twin-framework/commit/386830a77f8e842a5b119be0983708e042c3b14b))
267
979
 
268
980
 
269
981
  ### Dependencies
@@ -275,12 +987,12 @@
275
987
  * @twin.org/nameof-transformer bumped from 0.0.2-next.18 to 0.0.2-next.19
276
988
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.18 to 0.0.2-next.19
277
989
 
278
- ## [0.0.2-next.18](https://github.com/twinfoundation/framework/compare/core-v0.0.2-next.17...core-v0.0.2-next.18) (2025-09-29)
990
+ ## [0.0.2-next.18](https://github.com/iotaledger/twin-framework/compare/core-v0.0.2-next.17...core-v0.0.2-next.18) (2025-09-29)
279
991
 
280
992
 
281
993
  ### Features
282
994
 
283
- * simplify StringHelper signature ([0390403](https://github.com/twinfoundation/framework/commit/039040344952f91ee3c671249bc0e1c8f3b38e17))
995
+ * simplify StringHelper signature ([0390403](https://github.com/iotaledger/twin-framework/commit/039040344952f91ee3c671249bc0e1c8f3b38e17))
284
996
 
285
997
 
286
998
  ### Dependencies
@@ -292,12 +1004,12 @@
292
1004
  * @twin.org/nameof-transformer bumped from 0.0.2-next.17 to 0.0.2-next.18
293
1005
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.17 to 0.0.2-next.18
294
1006
 
295
- ## [0.0.2-next.17](https://github.com/twinfoundation/framework/compare/core-v0.0.2-next.16...core-v0.0.2-next.17) (2025-09-29)
1007
+ ## [0.0.2-next.17](https://github.com/iotaledger/twin-framework/compare/core-v0.0.2-next.16...core-v0.0.2-next.17) (2025-09-29)
296
1008
 
297
1009
 
298
1010
  ### Features
299
1011
 
300
- * additional nameof operators ([a5aab60](https://github.com/twinfoundation/framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
1012
+ * additional nameof operators ([a5aab60](https://github.com/iotaledger/twin-framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
301
1013
 
302
1014
 
303
1015
  ### Dependencies
@@ -309,13 +1021,13 @@
309
1021
  * @twin.org/nameof-transformer bumped from 0.0.2-next.16 to 0.0.2-next.17
310
1022
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.16 to 0.0.2-next.17
311
1023
 
312
- ## [0.0.2-next.16](https://github.com/twinfoundation/framework/compare/core-v0.0.2-next.15...core-v0.0.2-next.16) (2025-09-28)
1024
+ ## [0.0.2-next.16](https://github.com/iotaledger/twin-framework/compare/core-v0.0.2-next.15...core-v0.0.2-next.16) (2025-09-28)
313
1025
 
314
1026
 
315
1027
  ### Features
316
1028
 
317
- * improve Is.function definition to retain types ([f20b6b0](https://github.com/twinfoundation/framework/commit/f20b6b0dd16e74b75dc359be72b05989305c6410))
318
- * nodeIdentity optional in IComponent methods ([c78dc17](https://github.com/twinfoundation/framework/commit/c78dc17f4357d3e1ae40e415f468d3eae13e81f4))
1029
+ * improve Is.function definition to retain types ([f20b6b0](https://github.com/iotaledger/twin-framework/commit/f20b6b0dd16e74b75dc359be72b05989305c6410))
1030
+ * nodeIdentity optional in IComponent methods ([c78dc17](https://github.com/iotaledger/twin-framework/commit/c78dc17f4357d3e1ae40e415f468d3eae13e81f4))
319
1031
 
320
1032
 
321
1033
  ### Dependencies
@@ -327,7 +1039,7 @@
327
1039
  * @twin.org/nameof-transformer bumped from 0.0.2-next.15 to 0.0.2-next.16
328
1040
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.15 to 0.0.2-next.16
329
1041
 
330
- ## [0.0.2-next.15](https://github.com/twinfoundation/framework/compare/core-v0.0.2-next.14...core-v0.0.2-next.15) (2025-09-22)
1042
+ ## [0.0.2-next.15](https://github.com/iotaledger/twin-framework/compare/core-v0.0.2-next.14...core-v0.0.2-next.15) (2025-09-22)
331
1043
 
332
1044
 
333
1045
  ### Miscellaneous Chores
@@ -344,7 +1056,7 @@
344
1056
  * @twin.org/nameof-transformer bumped from 0.0.2-next.14 to 0.0.2-next.15
345
1057
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.14 to 0.0.2-next.15
346
1058
 
347
- ## [0.0.2-next.14](https://github.com/twinfoundation/framework/compare/core-v0.0.2-next.13...core-v0.0.2-next.14) (2025-09-22)
1059
+ ## [0.0.2-next.14](https://github.com/iotaledger/twin-framework/compare/core-v0.0.2-next.13...core-v0.0.2-next.14) (2025-09-22)
348
1060
 
349
1061
 
350
1062
  ### Miscellaneous Chores
@@ -361,12 +1073,12 @@
361
1073
  * @twin.org/nameof-transformer bumped from 0.0.2-next.13 to 0.0.2-next.14
362
1074
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.13 to 0.0.2-next.14
363
1075
 
364
- ## [0.0.2-next.13](https://github.com/twinfoundation/framework/compare/core-v0.0.2-next.12...core-v0.0.2-next.13) (2025-09-22)
1076
+ ## [0.0.2-next.13](https://github.com/iotaledger/twin-framework/compare/core-v0.0.2-next.12...core-v0.0.2-next.13) (2025-09-22)
365
1077
 
366
1078
 
367
1079
  ### Features
368
1080
 
369
- * expand error params to accept properties ([032e9fd](https://github.com/twinfoundation/framework/commit/032e9fd1388e457cde32ca1005dfe014a5a9c077))
1081
+ * expand error params to accept properties ([032e9fd](https://github.com/iotaledger/twin-framework/commit/032e9fd1388e457cde32ca1005dfe014a5a9c077))
370
1082
 
371
1083
 
372
1084
  ### Dependencies
@@ -378,7 +1090,7 @@
378
1090
  * @twin.org/nameof-transformer bumped from 0.0.2-next.12 to 0.0.2-next.13
379
1091
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.12 to 0.0.2-next.13
380
1092
 
381
- ## [0.0.2-next.12](https://github.com/twinfoundation/framework/compare/core-v0.0.2-next.11...core-v0.0.2-next.12) (2025-09-15)
1093
+ ## [0.0.2-next.12](https://github.com/iotaledger/twin-framework/compare/core-v0.0.2-next.11...core-v0.0.2-next.12) (2025-09-15)
382
1094
 
383
1095
 
384
1096
  ### Miscellaneous Chores
@@ -395,7 +1107,7 @@
395
1107
  * @twin.org/nameof-transformer bumped from 0.0.2-next.11 to 0.0.2-next.12
396
1108
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.11 to 0.0.2-next.12
397
1109
 
398
- ## [0.0.2-next.11](https://github.com/twinfoundation/framework/compare/core-v0.0.2-next.10...core-v0.0.2-next.11) (2025-09-15)
1110
+ ## [0.0.2-next.11](https://github.com/iotaledger/twin-framework/compare/core-v0.0.2-next.10...core-v0.0.2-next.11) (2025-09-15)
399
1111
 
400
1112
 
401
1113
  ### Miscellaneous Chores
@@ -412,7 +1124,7 @@
412
1124
  * @twin.org/nameof-transformer bumped from 0.0.2-next.10 to 0.0.2-next.11
413
1125
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.10 to 0.0.2-next.11
414
1126
 
415
- ## [0.0.2-next.10](https://github.com/twinfoundation/framework/compare/core-v0.0.2-next.9...core-v0.0.2-next.10) (2025-09-11)
1127
+ ## [0.0.2-next.10](https://github.com/iotaledger/twin-framework/compare/core-v0.0.2-next.9...core-v0.0.2-next.10) (2025-09-11)
416
1128
 
417
1129
 
418
1130
  ### Miscellaneous Chores
@@ -429,7 +1141,7 @@
429
1141
  * @twin.org/nameof-transformer bumped from 0.0.2-next.9 to 0.0.2-next.10
430
1142
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.9 to 0.0.2-next.10
431
1143
 
432
- ## [0.0.2-next.9](https://github.com/twinfoundation/framework/compare/core-v0.0.2-next.8...core-v0.0.2-next.9) (2025-09-08)
1144
+ ## [0.0.2-next.9](https://github.com/iotaledger/twin-framework/compare/core-v0.0.2-next.8...core-v0.0.2-next.9) (2025-09-08)
433
1145
 
434
1146
 
435
1147
  ### Miscellaneous Chores
@@ -446,12 +1158,12 @@
446
1158
  * @twin.org/nameof-transformer bumped from 0.0.2-next.8 to 0.0.2-next.9
447
1159
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.8 to 0.0.2-next.9
448
1160
 
449
- ## [0.0.2-next.8](https://github.com/twinfoundation/framework/compare/core-v0.0.2-next.7...core-v0.0.2-next.8) (2025-09-05)
1161
+ ## [0.0.2-next.8](https://github.com/iotaledger/twin-framework/compare/core-v0.0.2-next.7...core-v0.0.2-next.8) (2025-09-05)
450
1162
 
451
1163
 
452
1164
  ### Features
453
1165
 
454
- * add Is.class method ([4988205](https://github.com/twinfoundation/framework/commit/498820543e256a130b4888c958fe1d87ca865d7f))
1166
+ * add Is.class method ([4988205](https://github.com/iotaledger/twin-framework/commit/498820543e256a130b4888c958fe1d87ca865d7f))
455
1167
 
456
1168
 
457
1169
  ### Dependencies
@@ -463,12 +1175,12 @@
463
1175
  * @twin.org/nameof-transformer bumped from 0.0.2-next.7 to 0.0.2-next.8
464
1176
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.7 to 0.0.2-next.8
465
1177
 
466
- ## [0.0.2-next.7](https://github.com/twinfoundation/framework/compare/core-v0.0.2-next.6...core-v0.0.2-next.7) (2025-08-29)
1178
+ ## [0.0.2-next.7](https://github.com/iotaledger/twin-framework/compare/core-v0.0.2-next.6...core-v0.0.2-next.7) (2025-08-29)
467
1179
 
468
1180
 
469
1181
  ### Features
470
1182
 
471
- * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
1183
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
472
1184
 
473
1185
 
474
1186
  ### Dependencies
@@ -480,7 +1192,7 @@
480
1192
  * @twin.org/nameof-transformer bumped from 0.0.2-next.6 to 0.0.2-next.7
481
1193
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.6 to 0.0.2-next.7
482
1194
 
483
- ## [0.0.2-next.6](https://github.com/twinfoundation/framework/compare/core-v0.0.2-next.5...core-v0.0.2-next.6) (2025-08-27)
1195
+ ## [0.0.2-next.6](https://github.com/iotaledger/twin-framework/compare/core-v0.0.2-next.5...core-v0.0.2-next.6) (2025-08-27)
484
1196
 
485
1197
 
486
1198
  ### Miscellaneous Chores
@@ -497,12 +1209,12 @@
497
1209
  * @twin.org/nameof-transformer bumped from 0.0.2-next.5 to 0.0.2-next.6
498
1210
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.5 to 0.0.2-next.6
499
1211
 
500
- ## [0.0.2-next.5](https://github.com/twinfoundation/framework/compare/core-v0.0.2-next.4...core-v0.0.2-next.5) (2025-08-19)
1212
+ ## [0.0.2-next.5](https://github.com/iotaledger/twin-framework/compare/core-v0.0.2-next.4...core-v0.0.2-next.5) (2025-08-19)
501
1213
 
502
1214
 
503
1215
  ### Features
504
1216
 
505
- * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
1217
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
506
1218
 
507
1219
 
508
1220
  ### Dependencies
@@ -514,12 +1226,12 @@
514
1226
  * @twin.org/nameof-transformer bumped from 0.0.2-next.4 to 0.0.2-next.5
515
1227
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.4 to 0.0.2-next.5
516
1228
 
517
- ## [0.0.2-next.4](https://github.com/twinfoundation/framework/compare/core-v0.0.2-next.3...core-v0.0.2-next.4) (2025-08-15)
1229
+ ## [0.0.2-next.4](https://github.com/iotaledger/twin-framework/compare/core-v0.0.2-next.3...core-v0.0.2-next.4) (2025-08-15)
518
1230
 
519
1231
 
520
1232
  ### Features
521
1233
 
522
- * additional RSA methods and async ([1fceee2](https://github.com/twinfoundation/framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
1234
+ * additional RSA methods and async ([1fceee2](https://github.com/iotaledger/twin-framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
523
1235
 
524
1236
 
525
1237
  ### Dependencies
@@ -531,26 +1243,26 @@
531
1243
  * @twin.org/nameof-transformer bumped from 0.0.2-next.3 to 0.0.2-next.4
532
1244
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.3 to 0.0.2-next.4
533
1245
 
534
- ## [0.0.2-next.3](https://github.com/twinfoundation/framework/compare/core-v0.0.2-next.2...core-v0.0.2-next.3) (2025-08-06)
1246
+ ## [0.0.2-next.3](https://github.com/iotaledger/twin-framework/compare/core-v0.0.2-next.2...core-v0.0.2-next.3) (2025-08-06)
535
1247
 
536
1248
 
537
1249
  ### Features
538
1250
 
539
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
540
- * add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/twinfoundation/framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
541
- * add rsa cipher support ([7af6cc6](https://github.com/twinfoundation/framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
542
- * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
543
- * add zlib/deflate mime types detection ([72c472b](https://github.com/twinfoundation/framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
544
- * async cache don't cache failures unless requested ([658ec4b](https://github.com/twinfoundation/framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
545
- * improve base error data extraction ([dccc933](https://github.com/twinfoundation/framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
546
- * improve error display in CLI ([94b6ca8](https://github.com/twinfoundation/framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
547
- * propagate includeStackTrace on error conversion ([8471cbb](https://github.com/twinfoundation/framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
548
- * propagate includeStackTrace on error conversion ([818337d](https://github.com/twinfoundation/framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
549
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
550
- * simplify async set ([#121](https://github.com/twinfoundation/framework/issues/121)) ([2693c32](https://github.com/twinfoundation/framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
551
- * support indexed properties set in objects ([b9c001d](https://github.com/twinfoundation/framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
552
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
553
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1251
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1252
+ * add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/iotaledger/twin-framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
1253
+ * add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
1254
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
1255
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
1256
+ * async cache don't cache failures unless requested ([658ec4b](https://github.com/iotaledger/twin-framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
1257
+ * improve base error data extraction ([dccc933](https://github.com/iotaledger/twin-framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
1258
+ * improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
1259
+ * propagate includeStackTrace on error conversion ([8471cbb](https://github.com/iotaledger/twin-framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
1260
+ * propagate includeStackTrace on error conversion ([818337d](https://github.com/iotaledger/twin-framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
1261
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1262
+ * simplify async set ([#121](https://github.com/iotaledger/twin-framework/issues/121)) ([2693c32](https://github.com/iotaledger/twin-framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
1263
+ * support indexed properties set in objects ([b9c001d](https://github.com/iotaledger/twin-framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
1264
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1265
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
554
1266
 
555
1267
 
556
1268
  ### Dependencies
@@ -562,26 +1274,26 @@
562
1274
  * @twin.org/nameof-transformer bumped from 0.0.2-next.2 to 0.0.2-next.3
563
1275
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.2 to 0.0.2-next.3
564
1276
 
565
- ## [0.0.2-next.2](https://github.com/twinfoundation/framework/compare/core-v0.0.2-next.1...core-v0.0.2-next.2) (2025-08-06)
1277
+ ## [0.0.2-next.2](https://github.com/iotaledger/twin-framework/compare/core-v0.0.2-next.1...core-v0.0.2-next.2) (2025-08-06)
566
1278
 
567
1279
 
568
1280
  ### Features
569
1281
 
570
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
571
- * add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/twinfoundation/framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
572
- * add rsa cipher support ([7af6cc6](https://github.com/twinfoundation/framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
573
- * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
574
- * add zlib/deflate mime types detection ([72c472b](https://github.com/twinfoundation/framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
575
- * async cache don't cache failures unless requested ([658ec4b](https://github.com/twinfoundation/framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
576
- * improve base error data extraction ([dccc933](https://github.com/twinfoundation/framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
577
- * improve error display in CLI ([94b6ca8](https://github.com/twinfoundation/framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
578
- * propagate includeStackTrace on error conversion ([8471cbb](https://github.com/twinfoundation/framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
579
- * propagate includeStackTrace on error conversion ([818337d](https://github.com/twinfoundation/framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
580
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
581
- * simplify async set ([#121](https://github.com/twinfoundation/framework/issues/121)) ([2693c32](https://github.com/twinfoundation/framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
582
- * support indexed properties set in objects ([b9c001d](https://github.com/twinfoundation/framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
583
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
584
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1282
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1283
+ * add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/iotaledger/twin-framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
1284
+ * add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
1285
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
1286
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
1287
+ * async cache don't cache failures unless requested ([658ec4b](https://github.com/iotaledger/twin-framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
1288
+ * improve base error data extraction ([dccc933](https://github.com/iotaledger/twin-framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
1289
+ * improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
1290
+ * propagate includeStackTrace on error conversion ([8471cbb](https://github.com/iotaledger/twin-framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
1291
+ * propagate includeStackTrace on error conversion ([818337d](https://github.com/iotaledger/twin-framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
1292
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1293
+ * simplify async set ([#121](https://github.com/iotaledger/twin-framework/issues/121)) ([2693c32](https://github.com/iotaledger/twin-framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
1294
+ * support indexed properties set in objects ([b9c001d](https://github.com/iotaledger/twin-framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
1295
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1296
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
585
1297
 
586
1298
 
587
1299
  ### Dependencies
@@ -593,26 +1305,26 @@
593
1305
  * @twin.org/nameof-transformer bumped from 0.0.2-next.1 to 0.0.2-next.2
594
1306
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.1 to 0.0.2-next.2
595
1307
 
596
- ## [0.0.2-next.1](https://github.com/twinfoundation/framework/compare/core-v0.0.2-next.0...core-v0.0.2-next.1) (2025-08-06)
1308
+ ## [0.0.2-next.1](https://github.com/iotaledger/twin-framework/compare/core-v0.0.2-next.0...core-v0.0.2-next.1) (2025-08-06)
597
1309
 
598
1310
 
599
1311
  ### Features
600
1312
 
601
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
602
- * add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/twinfoundation/framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
603
- * add rsa cipher support ([7af6cc6](https://github.com/twinfoundation/framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
604
- * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
605
- * add zlib/deflate mime types detection ([72c472b](https://github.com/twinfoundation/framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
606
- * async cache don't cache failures unless requested ([658ec4b](https://github.com/twinfoundation/framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
607
- * improve base error data extraction ([dccc933](https://github.com/twinfoundation/framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
608
- * improve error display in CLI ([94b6ca8](https://github.com/twinfoundation/framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
609
- * propagate includeStackTrace on error conversion ([8471cbb](https://github.com/twinfoundation/framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
610
- * propagate includeStackTrace on error conversion ([818337d](https://github.com/twinfoundation/framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
611
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
612
- * simplify async set ([#121](https://github.com/twinfoundation/framework/issues/121)) ([2693c32](https://github.com/twinfoundation/framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
613
- * support indexed properties set in objects ([b9c001d](https://github.com/twinfoundation/framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
614
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
615
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1313
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1314
+ * add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/iotaledger/twin-framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
1315
+ * add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
1316
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
1317
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
1318
+ * async cache don't cache failures unless requested ([658ec4b](https://github.com/iotaledger/twin-framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
1319
+ * improve base error data extraction ([dccc933](https://github.com/iotaledger/twin-framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
1320
+ * improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
1321
+ * propagate includeStackTrace on error conversion ([8471cbb](https://github.com/iotaledger/twin-framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
1322
+ * propagate includeStackTrace on error conversion ([818337d](https://github.com/iotaledger/twin-framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
1323
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1324
+ * simplify async set ([#121](https://github.com/iotaledger/twin-framework/issues/121)) ([2693c32](https://github.com/iotaledger/twin-framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
1325
+ * support indexed properties set in objects ([b9c001d](https://github.com/iotaledger/twin-framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
1326
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1327
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
616
1328
 
617
1329
 
618
1330
  ### Dependencies
@@ -629,8 +1341,8 @@
629
1341
 
630
1342
  ### Features
631
1343
 
632
- * release to production ([829d53d](https://github.com/twinfoundation/framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
633
- * release to production ([5cf3a76](https://github.com/twinfoundation/framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
1344
+ * release to production ([829d53d](https://github.com/iotaledger/twin-framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
1345
+ * release to production ([5cf3a76](https://github.com/iotaledger/twin-framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
634
1346
 
635
1347
 
636
1348
  ### Dependencies
@@ -642,24 +1354,24 @@
642
1354
  * @twin.org/nameof-transformer bumped from ^0.0.0 to ^0.0.1
643
1355
  * @twin.org/nameof-vitest-plugin bumped from ^0.0.0 to ^0.0.1
644
1356
 
645
- ## [0.0.1-next.70](https://github.com/twinfoundation/framework/compare/core-v0.0.1-next.69...core-v0.0.1-next.70) (2025-07-02)
1357
+ ## [0.0.1-next.70](https://github.com/iotaledger/twin-framework/compare/core-v0.0.1-next.69...core-v0.0.1-next.70) (2025-07-02)
646
1358
 
647
1359
 
648
1360
  ### Features
649
1361
 
650
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
651
- * add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/twinfoundation/framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
652
- * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
653
- * add zlib/deflate mime types detection ([72c472b](https://github.com/twinfoundation/framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
654
- * async cache don't cache failures unless requested ([658ec4b](https://github.com/twinfoundation/framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
655
- * improve base error data extraction ([dccc933](https://github.com/twinfoundation/framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
656
- * improve error display in CLI ([94b6ca8](https://github.com/twinfoundation/framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
657
- * propagate includeStackTrace on error conversion ([8471cbb](https://github.com/twinfoundation/framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
658
- * propagate includeStackTrace on error conversion ([818337d](https://github.com/twinfoundation/framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
659
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
660
- * simplify async set ([#121](https://github.com/twinfoundation/framework/issues/121)) ([2693c32](https://github.com/twinfoundation/framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
661
- * support indexed properties set in objects ([b9c001d](https://github.com/twinfoundation/framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
662
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1362
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1363
+ * add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/iotaledger/twin-framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
1364
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
1365
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
1366
+ * async cache don't cache failures unless requested ([658ec4b](https://github.com/iotaledger/twin-framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
1367
+ * improve base error data extraction ([dccc933](https://github.com/iotaledger/twin-framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
1368
+ * improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
1369
+ * propagate includeStackTrace on error conversion ([8471cbb](https://github.com/iotaledger/twin-framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
1370
+ * propagate includeStackTrace on error conversion ([818337d](https://github.com/iotaledger/twin-framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
1371
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1372
+ * simplify async set ([#121](https://github.com/iotaledger/twin-framework/issues/121)) ([2693c32](https://github.com/iotaledger/twin-framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
1373
+ * support indexed properties set in objects ([b9c001d](https://github.com/iotaledger/twin-framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
1374
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
663
1375
 
664
1376
 
665
1377
  ### Dependencies
@@ -671,24 +1383,24 @@
671
1383
  * @twin.org/nameof-transformer bumped from 0.0.1-next.69 to 0.0.1-next.70
672
1384
  * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.69 to 0.0.1-next.70
673
1385
 
674
- ## [0.0.1-next.69](https://github.com/twinfoundation/framework/compare/core-v0.0.1-next.68...core-v0.0.1-next.69) (2025-07-02)
1386
+ ## [0.0.1-next.69](https://github.com/iotaledger/twin-framework/compare/core-v0.0.1-next.68...core-v0.0.1-next.69) (2025-07-02)
675
1387
 
676
1388
 
677
1389
  ### Features
678
1390
 
679
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
680
- * add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/twinfoundation/framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
681
- * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
682
- * add zlib/deflate mime types detection ([72c472b](https://github.com/twinfoundation/framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
683
- * async cache don't cache failures unless requested ([658ec4b](https://github.com/twinfoundation/framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
684
- * improve base error data extraction ([dccc933](https://github.com/twinfoundation/framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
685
- * improve error display in CLI ([94b6ca8](https://github.com/twinfoundation/framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
686
- * propagate includeStackTrace on error conversion ([8471cbb](https://github.com/twinfoundation/framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
687
- * propagate includeStackTrace on error conversion ([818337d](https://github.com/twinfoundation/framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
688
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
689
- * simplify async set ([#121](https://github.com/twinfoundation/framework/issues/121)) ([2693c32](https://github.com/twinfoundation/framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
690
- * support indexed properties set in objects ([b9c001d](https://github.com/twinfoundation/framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
691
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1391
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1392
+ * add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/iotaledger/twin-framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
1393
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
1394
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
1395
+ * async cache don't cache failures unless requested ([658ec4b](https://github.com/iotaledger/twin-framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
1396
+ * improve base error data extraction ([dccc933](https://github.com/iotaledger/twin-framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
1397
+ * improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
1398
+ * propagate includeStackTrace on error conversion ([8471cbb](https://github.com/iotaledger/twin-framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
1399
+ * propagate includeStackTrace on error conversion ([818337d](https://github.com/iotaledger/twin-framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
1400
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1401
+ * simplify async set ([#121](https://github.com/iotaledger/twin-framework/issues/121)) ([2693c32](https://github.com/iotaledger/twin-framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
1402
+ * support indexed properties set in objects ([b9c001d](https://github.com/iotaledger/twin-framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
1403
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
692
1404
 
693
1405
 
694
1406
  ### Dependencies
@@ -700,12 +1412,12 @@
700
1412
  * @twin.org/nameof-transformer bumped from 0.0.1-next.68 to 0.0.1-next.69
701
1413
  * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.68 to 0.0.1-next.69
702
1414
 
703
- ## [0.0.1-next.68](https://github.com/twinfoundation/framework/compare/core-v0.0.1-next.67...core-v0.0.1-next.68) (2025-07-02)
1415
+ ## [0.0.1-next.68](https://github.com/iotaledger/twin-framework/compare/core-v0.0.1-next.67...core-v0.0.1-next.68) (2025-07-02)
704
1416
 
705
1417
 
706
1418
  ### Features
707
1419
 
708
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1420
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
709
1421
 
710
1422
 
711
1423
  ### Dependencies
@@ -717,141 +1429,141 @@
717
1429
  * @twin.org/nameof-transformer bumped from 0.0.1-next.67 to 0.0.1-next.68
718
1430
  * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.67 to 0.0.1-next.68
719
1431
 
720
- ## [0.0.1-next.67](https://github.com/twinfoundation/framework/compare/core-v0.0.1-next.66...core-v0.0.1-next.67) (2025-06-26)
1432
+ ## [0.0.1-next.67](https://github.com/iotaledger/twin-framework/compare/core-v0.0.1-next.66...core-v0.0.1-next.67) (2025-06-26)
721
1433
 
722
1434
 
723
1435
  ### Miscellaneous Chores
724
1436
 
725
1437
  * **core:** Synchronize repo versions
726
1438
 
727
- ## [0.0.1-next.66](https://github.com/twinfoundation/framework/compare/core-v0.0.1-next.65...core-v0.0.1-next.66) (2025-06-26)
1439
+ ## [0.0.1-next.66](https://github.com/iotaledger/twin-framework/compare/core-v0.0.1-next.65...core-v0.0.1-next.66) (2025-06-26)
728
1440
 
729
1441
 
730
1442
  ### Features
731
1443
 
732
- * improve base error data extraction ([dccc933](https://github.com/twinfoundation/framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
1444
+ * improve base error data extraction ([dccc933](https://github.com/iotaledger/twin-framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
733
1445
 
734
- ## [0.0.1-next.65](https://github.com/twinfoundation/framework/compare/core-v0.0.1-next.64...core-v0.0.1-next.65) (2025-06-19)
1446
+ ## [0.0.1-next.65](https://github.com/iotaledger/twin-framework/compare/core-v0.0.1-next.64...core-v0.0.1-next.65) (2025-06-19)
735
1447
 
736
1448
 
737
1449
  ### Miscellaneous Chores
738
1450
 
739
1451
  * **core:** Synchronize repo versions
740
1452
 
741
- ## [0.0.1-next.64](https://github.com/twinfoundation/framework/compare/core-v0.0.1-next.63...core-v0.0.1-next.64) (2025-06-19)
1453
+ ## [0.0.1-next.64](https://github.com/iotaledger/twin-framework/compare/core-v0.0.1-next.63...core-v0.0.1-next.64) (2025-06-19)
742
1454
 
743
1455
 
744
1456
  ### Features
745
1457
 
746
- * add zlib/deflate mime types detection ([72c472b](https://github.com/twinfoundation/framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
1458
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
747
1459
 
748
- ## [0.0.1-next.63](https://github.com/twinfoundation/framework/compare/core-v0.0.1-next.62...core-v0.0.1-next.63) (2025-06-18)
1460
+ ## [0.0.1-next.63](https://github.com/iotaledger/twin-framework/compare/core-v0.0.1-next.62...core-v0.0.1-next.63) (2025-06-18)
749
1461
 
750
1462
 
751
1463
  ### Miscellaneous Chores
752
1464
 
753
1465
  * **core:** Synchronize repo versions
754
1466
 
755
- ## [0.0.1-next.62](https://github.com/twinfoundation/framework/compare/core-v0.0.1-next.61...core-v0.0.1-next.62) (2025-06-17)
1467
+ ## [0.0.1-next.62](https://github.com/iotaledger/twin-framework/compare/core-v0.0.1-next.61...core-v0.0.1-next.62) (2025-06-17)
756
1468
 
757
1469
 
758
1470
  ### Features
759
1471
 
760
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
761
- * add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/twinfoundation/framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
762
- * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
763
- * async cache don't cache failures unless requested ([658ec4b](https://github.com/twinfoundation/framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
764
- * improve error display in CLI ([94b6ca8](https://github.com/twinfoundation/framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
765
- * propagate includeStackTrace on error conversion ([8471cbb](https://github.com/twinfoundation/framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
766
- * propagate includeStackTrace on error conversion ([818337d](https://github.com/twinfoundation/framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
767
- * simplify async set ([#121](https://github.com/twinfoundation/framework/issues/121)) ([2693c32](https://github.com/twinfoundation/framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
768
- * support indexed properties set in objects ([b9c001d](https://github.com/twinfoundation/framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
769
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1472
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1473
+ * add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/iotaledger/twin-framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
1474
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
1475
+ * async cache don't cache failures unless requested ([658ec4b](https://github.com/iotaledger/twin-framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
1476
+ * improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
1477
+ * propagate includeStackTrace on error conversion ([8471cbb](https://github.com/iotaledger/twin-framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
1478
+ * propagate includeStackTrace on error conversion ([818337d](https://github.com/iotaledger/twin-framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
1479
+ * simplify async set ([#121](https://github.com/iotaledger/twin-framework/issues/121)) ([2693c32](https://github.com/iotaledger/twin-framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
1480
+ * support indexed properties set in objects ([b9c001d](https://github.com/iotaledger/twin-framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
1481
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
770
1482
 
771
- ## [0.0.1-next.61](https://github.com/twinfoundation/framework/compare/core-v0.0.1-next.60...core-v0.0.1-next.61) (2025-06-17)
1483
+ ## [0.0.1-next.61](https://github.com/iotaledger/twin-framework/compare/core-v0.0.1-next.60...core-v0.0.1-next.61) (2025-06-17)
772
1484
 
773
1485
 
774
1486
  ### Features
775
1487
 
776
- * support indexed properties set in objects ([b9c001d](https://github.com/twinfoundation/framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
1488
+ * support indexed properties set in objects ([b9c001d](https://github.com/iotaledger/twin-framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
777
1489
 
778
- ## [0.0.1-next.60](https://github.com/twinfoundation/framework/compare/core-v0.0.1-next.59...core-v0.0.1-next.60) (2025-06-17)
1490
+ ## [0.0.1-next.60](https://github.com/iotaledger/twin-framework/compare/core-v0.0.1-next.59...core-v0.0.1-next.60) (2025-06-17)
779
1491
 
780
1492
 
781
1493
  ### Features
782
1494
 
783
- * improve error display in CLI ([94b6ca8](https://github.com/twinfoundation/framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
1495
+ * improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
784
1496
 
785
- ## [0.0.1-next.59](https://github.com/twinfoundation/framework/compare/core-v0.0.1-next.58...core-v0.0.1-next.59) (2025-06-17)
1497
+ ## [0.0.1-next.59](https://github.com/iotaledger/twin-framework/compare/core-v0.0.1-next.58...core-v0.0.1-next.59) (2025-06-17)
786
1498
 
787
1499
 
788
1500
  ### Features
789
1501
 
790
- * propagate includeStackTrace on error conversion ([8471cbb](https://github.com/twinfoundation/framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
791
- * propagate includeStackTrace on error conversion ([818337d](https://github.com/twinfoundation/framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
1502
+ * propagate includeStackTrace on error conversion ([8471cbb](https://github.com/iotaledger/twin-framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
1503
+ * propagate includeStackTrace on error conversion ([818337d](https://github.com/iotaledger/twin-framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
792
1504
 
793
- ## [0.0.1-next.58](https://github.com/twinfoundation/framework/compare/core-v0.0.1-next.57...core-v0.0.1-next.58) (2025-06-13)
1505
+ ## [0.0.1-next.58](https://github.com/iotaledger/twin-framework/compare/core-v0.0.1-next.57...core-v0.0.1-next.58) (2025-06-13)
794
1506
 
795
1507
 
796
1508
  ### Miscellaneous Chores
797
1509
 
798
1510
  * **core:** Synchronize repo versions
799
1511
 
800
- ## [0.0.1-next.57](https://github.com/twinfoundation/framework/compare/core-v0.0.1-next.56...core-v0.0.1-next.57) (2025-06-10)
1512
+ ## [0.0.1-next.57](https://github.com/iotaledger/twin-framework/compare/core-v0.0.1-next.56...core-v0.0.1-next.57) (2025-06-10)
801
1513
 
802
1514
 
803
1515
  ### Features
804
1516
 
805
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1517
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
806
1518
 
807
- ## [0.0.1-next.56](https://github.com/twinfoundation/framework/compare/core-v0.0.1-next.55...core-v0.0.1-next.56) (2025-05-08)
1519
+ ## [0.0.1-next.56](https://github.com/iotaledger/twin-framework/compare/core-v0.0.1-next.55...core-v0.0.1-next.56) (2025-05-08)
808
1520
 
809
1521
 
810
1522
  ### Features
811
1523
 
812
- * add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/twinfoundation/framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
1524
+ * add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/iotaledger/twin-framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
813
1525
 
814
- ## [0.0.1-next.55](https://github.com/twinfoundation/framework/compare/core-v0.0.1-next.54...core-v0.0.1-next.55) (2025-05-07)
1526
+ ## [0.0.1-next.55](https://github.com/iotaledger/twin-framework/compare/core-v0.0.1-next.54...core-v0.0.1-next.55) (2025-05-07)
815
1527
 
816
1528
 
817
1529
  ### Miscellaneous Chores
818
1530
 
819
1531
  * **core:** Synchronize repo versions
820
1532
 
821
- ## [0.0.1-next.54](https://github.com/twinfoundation/framework/compare/core-v0.0.1-next.53...core-v0.0.1-next.54) (2025-05-06)
1533
+ ## [0.0.1-next.54](https://github.com/iotaledger/twin-framework/compare/core-v0.0.1-next.53...core-v0.0.1-next.54) (2025-05-06)
822
1534
 
823
1535
 
824
1536
  ### Miscellaneous Chores
825
1537
 
826
1538
  * **core:** Synchronize repo versions
827
1539
 
828
- ## [0.0.1-next.53](https://github.com/twinfoundation/framework/compare/core-v0.0.1-next.52...core-v0.0.1-next.53) (2025-05-01)
1540
+ ## [0.0.1-next.53](https://github.com/iotaledger/twin-framework/compare/core-v0.0.1-next.52...core-v0.0.1-next.53) (2025-05-01)
829
1541
 
830
1542
 
831
1543
  ### Features
832
1544
 
833
- * async cache don't cache failures unless requested ([658ec4b](https://github.com/twinfoundation/framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
1545
+ * async cache don't cache failures unless requested ([658ec4b](https://github.com/iotaledger/twin-framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
834
1546
 
835
- ## [0.0.1-next.52](https://github.com/twinfoundation/framework/compare/core-v0.0.1-next.51...core-v0.0.1-next.52) (2025-04-17)
1547
+ ## [0.0.1-next.52](https://github.com/iotaledger/twin-framework/compare/core-v0.0.1-next.51...core-v0.0.1-next.52) (2025-04-17)
836
1548
 
837
1549
 
838
1550
  ### Features
839
1551
 
840
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1552
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
841
1553
 
842
- ## [0.0.1-next.51](https://github.com/twinfoundation/framework/compare/core-v0.0.1-next.50...core-v0.0.1-next.51) (2025-03-27)
1554
+ ## [0.0.1-next.51](https://github.com/iotaledger/twin-framework/compare/core-v0.0.1-next.50...core-v0.0.1-next.51) (2025-03-27)
843
1555
 
844
1556
 
845
1557
  ### Features
846
1558
 
847
- * simplify async set ([#121](https://github.com/twinfoundation/framework/issues/121)) ([2693c32](https://github.com/twinfoundation/framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
1559
+ * simplify async set ([#121](https://github.com/iotaledger/twin-framework/issues/121)) ([2693c32](https://github.com/iotaledger/twin-framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
848
1560
 
849
- ## [0.0.1-next.50](https://github.com/twinfoundation/framework/compare/core-v0.0.1-next.49...core-v0.0.1-next.50) (2025-03-26)
1561
+ ## [0.0.1-next.50](https://github.com/iotaledger/twin-framework/compare/core-v0.0.1-next.49...core-v0.0.1-next.50) (2025-03-26)
850
1562
 
851
1563
 
852
1564
  ### Features
853
1565
 
854
- * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
1566
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
855
1567
 
856
1568
  ## 0.0.1-next.49
857
1569