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

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