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

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