@twin.org/core 0.0.3-next.31 → 0.0.3-next.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/errors/alreadyExistsError.js +1 -1
- package/dist/es/errors/alreadyExistsError.js.map +1 -1
- package/dist/es/errors/baseError.js +1 -1
- package/dist/es/errors/baseError.js.map +1 -1
- package/dist/es/errors/conflictError.js +1 -1
- package/dist/es/errors/conflictError.js.map +1 -1
- package/dist/es/errors/generalError.js +1 -1
- package/dist/es/errors/generalError.js.map +1 -1
- package/dist/es/errors/guardError.js +1 -1
- package/dist/es/errors/guardError.js.map +1 -1
- package/dist/es/errors/notFoundError.js +1 -1
- package/dist/es/errors/notFoundError.js.map +1 -1
- package/dist/es/errors/notSupportedError.js +1 -1
- package/dist/es/errors/notSupportedError.js.map +1 -1
- package/dist/es/errors/unauthorizedError.js +2 -2
- package/dist/es/errors/unauthorizedError.js.map +1 -1
- package/dist/es/errors/unprocessableError.js +1 -1
- package/dist/es/errors/unprocessableError.js.map +1 -1
- package/dist/es/index.js +2 -0
- package/dist/es/index.js.map +1 -1
- package/dist/es/models/IComponent.js +0 -2
- package/dist/es/models/IComponent.js.map +1 -1
- package/dist/es/models/IError.js.map +1 -1
- package/dist/es/models/IHealth.js +2 -0
- package/dist/es/models/IHealth.js.map +1 -0
- package/dist/es/models/healthStatus.js +21 -0
- package/dist/es/models/healthStatus.js.map +1 -0
- package/dist/types/errors/alreadyExistsError.d.ts +1 -1
- package/dist/types/errors/baseError.d.ts +1 -1
- package/dist/types/errors/conflictError.d.ts +1 -1
- package/dist/types/errors/generalError.d.ts +1 -1
- package/dist/types/errors/guardError.d.ts +1 -1
- package/dist/types/errors/notFoundError.d.ts +1 -1
- package/dist/types/errors/notSupportedError.d.ts +1 -1
- package/dist/types/errors/unauthorizedError.d.ts +2 -2
- package/dist/types/errors/unprocessableError.d.ts +1 -1
- package/dist/types/index.d.ts +2 -0
- package/dist/types/models/IComponent.d.ts +6 -0
- package/dist/types/models/IError.d.ts +1 -1
- package/dist/types/models/IHealth.d.ts +32 -0
- package/dist/types/models/healthStatus.d.ts +21 -0
- package/docs/changelog.md +328 -289
- package/docs/reference/classes/AlreadyExistsError.md +1 -1
- package/docs/reference/classes/BaseError.md +1 -1
- package/docs/reference/classes/ConflictError.md +1 -1
- package/docs/reference/classes/GeneralError.md +1 -1
- package/docs/reference/classes/GuardError.md +1 -1
- package/docs/reference/classes/NotFoundError.md +1 -1
- package/docs/reference/classes/NotSupportedError.md +1 -1
- package/docs/reference/classes/UnauthorizedError.md +2 -2
- package/docs/reference/classes/UnprocessableError.md +1 -1
- package/docs/reference/index.md +3 -0
- package/docs/reference/interfaces/IComponent.md +14 -0
- package/docs/reference/interfaces/IError.md +1 -1
- package/docs/reference/interfaces/IHealth.md +55 -0
- package/docs/reference/type-aliases/HealthStatus.md +5 -0
- package/docs/reference/variables/HealthStatus.md +25 -0
- package/package.json +2 -2
package/docs/changelog.md
CHANGED
|
@@ -1,11 +1,50 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.0.3-next.
|
|
3
|
+
## [0.0.3-next.33](https://github.com/twinfoundation/twin-framework/compare/core-v0.0.3-next.32...core-v0.0.3-next.33) (2026-05-05)
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
### Features
|
|
7
7
|
|
|
8
|
-
*
|
|
8
|
+
* add health method to components ([a88016d](https://github.com/twinfoundation/twin-framework/commit/a88016d90d172413e5bc5238dc1b3e35f82fcc2c))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* improve jsdoc comments ([f7c8e43](https://github.com/twinfoundation/twin-framework/commit/f7c8e43fab9803dffa6461950d5b9979e25bcd24))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Dependencies
|
|
17
|
+
|
|
18
|
+
* The following workspace dependencies were updated
|
|
19
|
+
* dependencies
|
|
20
|
+
* @twin.org/nameof bumped from 0.0.3-next.32 to 0.0.3-next.33
|
|
21
|
+
* devDependencies
|
|
22
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.32 to 0.0.3-next.33
|
|
23
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.32 to 0.0.3-next.33
|
|
24
|
+
|
|
25
|
+
## [0.0.3-next.32](https://github.com/twinfoundation/twin-framework/compare/core-v0.0.3-next.31...core-v0.0.3-next.32) (2026-04-30)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Miscellaneous Chores
|
|
29
|
+
|
|
30
|
+
* **core:** Synchronize repo versions
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### Dependencies
|
|
34
|
+
|
|
35
|
+
* The following workspace dependencies were updated
|
|
36
|
+
* dependencies
|
|
37
|
+
* @twin.org/nameof bumped from 0.0.3-next.31 to 0.0.3-next.32
|
|
38
|
+
* devDependencies
|
|
39
|
+
* @twin.org/nameof-transformer bumped from 0.0.3-next.31 to 0.0.3-next.32
|
|
40
|
+
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.31 to 0.0.3-next.32
|
|
41
|
+
|
|
42
|
+
## [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)
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
### Features
|
|
46
|
+
|
|
47
|
+
* improve async cache edge cases ([4e57a6e](https://github.com/iotaledger/twin-framework/commit/4e57a6ec4113533b0ea903eae7d469200fa1348c))
|
|
9
48
|
|
|
10
49
|
|
|
11
50
|
### Dependencies
|
|
@@ -17,7 +56,7 @@
|
|
|
17
56
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.30 to 0.0.3-next.31
|
|
18
57
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.30 to 0.0.3-next.31
|
|
19
58
|
|
|
20
|
-
## [0.0.3-next.30](https://github.com/
|
|
59
|
+
## [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)
|
|
21
60
|
|
|
22
61
|
|
|
23
62
|
### Miscellaneous Chores
|
|
@@ -34,7 +73,7 @@
|
|
|
34
73
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
35
74
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.29 to 0.0.3-next.30
|
|
36
75
|
|
|
37
|
-
## [0.0.3-next.29](https://github.com/
|
|
76
|
+
## [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)
|
|
38
77
|
|
|
39
78
|
|
|
40
79
|
### Miscellaneous Chores
|
|
@@ -51,7 +90,7 @@
|
|
|
51
90
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
52
91
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.28 to 0.0.3-next.29
|
|
53
92
|
|
|
54
|
-
## [0.0.3-next.28](https://github.com/
|
|
93
|
+
## [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)
|
|
55
94
|
|
|
56
95
|
|
|
57
96
|
### Miscellaneous Chores
|
|
@@ -68,7 +107,7 @@
|
|
|
68
107
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
69
108
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.27 to 0.0.3-next.28
|
|
70
109
|
|
|
71
|
-
## [0.0.3-next.27](https://github.com/
|
|
110
|
+
## [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)
|
|
72
111
|
|
|
73
112
|
|
|
74
113
|
### Miscellaneous Chores
|
|
@@ -85,7 +124,7 @@
|
|
|
85
124
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
86
125
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.26 to 0.0.3-next.27
|
|
87
126
|
|
|
88
|
-
## [0.0.3-next.26](https://github.com/
|
|
127
|
+
## [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)
|
|
89
128
|
|
|
90
129
|
|
|
91
130
|
### Miscellaneous Chores
|
|
@@ -102,12 +141,12 @@
|
|
|
102
141
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
103
142
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.25 to 0.0.3-next.26
|
|
104
143
|
|
|
105
|
-
## [0.0.3-next.25](https://github.com/
|
|
144
|
+
## [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)
|
|
106
145
|
|
|
107
146
|
|
|
108
147
|
### Bug Fixes
|
|
109
148
|
|
|
110
|
-
* improve exception handling in asyncCache ([c81b29b](https://github.com/
|
|
149
|
+
* improve exception handling in asyncCache ([c81b29b](https://github.com/iotaledger/twin-framework/commit/c81b29b660b152d2f0757d323430287e6491bf59))
|
|
111
150
|
|
|
112
151
|
|
|
113
152
|
### Dependencies
|
|
@@ -119,12 +158,12 @@
|
|
|
119
158
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
120
159
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.24 to 0.0.3-next.25
|
|
121
160
|
|
|
122
|
-
## [0.0.3-next.24](https://github.com/
|
|
161
|
+
## [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)
|
|
123
162
|
|
|
124
163
|
|
|
125
164
|
### Bug Fixes
|
|
126
165
|
|
|
127
|
-
* ensure __decorate is defined for decorators ([103a563](https://github.com/
|
|
166
|
+
* ensure __decorate is defined for decorators ([103a563](https://github.com/iotaledger/twin-framework/commit/103a563ce01ebdef6240d2e590e7b026e8692684))
|
|
128
167
|
|
|
129
168
|
|
|
130
169
|
### Dependencies
|
|
@@ -136,13 +175,13 @@
|
|
|
136
175
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
137
176
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.23 to 0.0.3-next.24
|
|
138
177
|
|
|
139
|
-
## [0.0.3-next.23](https://github.com/
|
|
178
|
+
## [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)
|
|
140
179
|
|
|
141
180
|
|
|
142
181
|
### Features
|
|
143
182
|
|
|
144
|
-
* add single occurrence array type ([e890e43](https://github.com/
|
|
145
|
-
* add single occurrence array type ([#245](https://github.com/
|
|
183
|
+
* add single occurrence array type ([e890e43](https://github.com/iotaledger/twin-framework/commit/e890e4399e75ae5097f3ad8b1007321cbb1ed4ac))
|
|
184
|
+
* add single occurrence array type ([#245](https://github.com/iotaledger/twin-framework/issues/245)) ([771dc78](https://github.com/iotaledger/twin-framework/commit/771dc78025b5546c9c9681be9494a76ab71171c6))
|
|
146
185
|
|
|
147
186
|
|
|
148
187
|
### Dependencies
|
|
@@ -154,12 +193,12 @@
|
|
|
154
193
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
155
194
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.22 to 0.0.3-next.23
|
|
156
195
|
|
|
157
|
-
## [0.0.3-next.22](https://github.com/
|
|
196
|
+
## [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)
|
|
158
197
|
|
|
159
198
|
|
|
160
199
|
### Features
|
|
161
200
|
|
|
162
|
-
* simplify factory options ([7f85a85](https://github.com/
|
|
201
|
+
* simplify factory options ([7f85a85](https://github.com/iotaledger/twin-framework/commit/7f85a8553dd3008364e8e1104f2e6f6b6595d77e))
|
|
163
202
|
|
|
164
203
|
|
|
165
204
|
### Dependencies
|
|
@@ -171,48 +210,48 @@
|
|
|
171
210
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
172
211
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.21 to 0.0.3-next.22
|
|
173
212
|
|
|
174
|
-
## [0.0.3-next.21](https://github.com/
|
|
213
|
+
## [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)
|
|
175
214
|
|
|
176
215
|
|
|
177
216
|
### Features
|
|
178
217
|
|
|
179
|
-
* add context id features ([#206](https://github.com/
|
|
180
|
-
* add factory.createIfExists ([aad5a53](https://github.com/
|
|
181
|
-
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/
|
|
182
|
-
* add Is.class method ([4988205](https://github.com/
|
|
183
|
-
* add isDefault option to factory registration ([a8a700b](https://github.com/
|
|
184
|
-
* add objectHelper.split ([386830a](https://github.com/
|
|
185
|
-
* add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/
|
|
186
|
-
* add rsa cipher support ([7af6cc6](https://github.com/
|
|
187
|
-
* add set method for async caches ([ba34b55](https://github.com/
|
|
188
|
-
* add typeName method to factory ([699fcbd](https://github.com/
|
|
189
|
-
* add uuidv7 support ([#219](https://github.com/
|
|
190
|
-
* add zlib/deflate mime types detection ([72c472b](https://github.com/
|
|
191
|
-
* adding link header helper ([#225](https://github.com/
|
|
192
|
-
* additional nameof operators ([a5aab60](https://github.com/
|
|
193
|
-
* additional RSA methods and async ([1fceee2](https://github.com/
|
|
194
|
-
* async cache don't cache failures unless requested ([658ec4b](https://github.com/
|
|
195
|
-
* bump version ([c5354fa](https://github.com/
|
|
196
|
-
* eslint migration to flat config ([74427d7](https://github.com/
|
|
197
|
-
* expand error params to accept properties ([032e9fd](https://github.com/
|
|
198
|
-
* factory create and integrity ([#235](https://github.com/
|
|
199
|
-
* improve base error data extraction ([dccc933](https://github.com/
|
|
200
|
-
* improve error display in CLI ([94b6ca8](https://github.com/
|
|
201
|
-
* improve Is.function and ModuleHelper.getModuleMethod signatures ([ecf968b](https://github.com/
|
|
202
|
-
* improve Is.function definition to retain types ([f20b6b0](https://github.com/
|
|
203
|
-
* locales validation ([#197](https://github.com/
|
|
204
|
-
* nodeIdentity optional in IComponent methods ([c78dc17](https://github.com/
|
|
205
|
-
* propagate includeStackTrace on error conversion ([8471cbb](https://github.com/
|
|
206
|
-
* propagate includeStackTrace on error conversion ([818337d](https://github.com/
|
|
207
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
208
|
-
* simplify async set ([#121](https://github.com/
|
|
209
|
-
* simplify StringHelper signature ([0390403](https://github.com/
|
|
210
|
-
* support indexed properties set in objects ([b9c001d](https://github.com/
|
|
211
|
-
* update dependencies ([f3bd015](https://github.com/
|
|
212
|
-
* urn random switched to using uuidv7 ([606c9a2](https://github.com/
|
|
213
|
-
* urn random switched to using uuidv7 ([6a29f8b](https://github.com/
|
|
214
|
-
* use cause instead of inner for errors ([1f4acc4](https://github.com/
|
|
215
|
-
* use new shared store mechanism ([#131](https://github.com/
|
|
218
|
+
* add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
|
|
219
|
+
* add factory.createIfExists ([aad5a53](https://github.com/iotaledger/twin-framework/commit/aad5a53cef1b1c2e04344ea46244d41e371dff9b))
|
|
220
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
221
|
+
* add Is.class method ([4988205](https://github.com/iotaledger/twin-framework/commit/498820543e256a130b4888c958fe1d87ca865d7f))
|
|
222
|
+
* add isDefault option to factory registration ([a8a700b](https://github.com/iotaledger/twin-framework/commit/a8a700bb8ddaf7dd5097869a358b8fc5f7c40ce7))
|
|
223
|
+
* add objectHelper.split ([386830a](https://github.com/iotaledger/twin-framework/commit/386830a77f8e842a5b119be0983708e042c3b14b))
|
|
224
|
+
* add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/iotaledger/twin-framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
|
|
225
|
+
* add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
|
|
226
|
+
* add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
|
|
227
|
+
* add typeName method to factory ([699fcbd](https://github.com/iotaledger/twin-framework/commit/699fcbd1168228401ddb81fdacb959b8cdc4206a))
|
|
228
|
+
* add uuidv7 support ([#219](https://github.com/iotaledger/twin-framework/issues/219)) ([916c657](https://github.com/iotaledger/twin-framework/commit/916c657d270ce99fafe554233739fdd9ca28635b))
|
|
229
|
+
* add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
|
|
230
|
+
* adding link header helper ([#225](https://github.com/iotaledger/twin-framework/issues/225)) ([703c072](https://github.com/iotaledger/twin-framework/commit/703c0725aceac6b6ec0c4fa729ef832d12fb3fd7))
|
|
231
|
+
* additional nameof operators ([a5aab60](https://github.com/iotaledger/twin-framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
|
|
232
|
+
* additional RSA methods and async ([1fceee2](https://github.com/iotaledger/twin-framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
|
|
233
|
+
* async cache don't cache failures unless requested ([658ec4b](https://github.com/iotaledger/twin-framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
|
|
234
|
+
* bump version ([c5354fa](https://github.com/iotaledger/twin-framework/commit/c5354fa906f4493c70f2642a9175a66780a10636))
|
|
235
|
+
* eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
|
|
236
|
+
* expand error params to accept properties ([032e9fd](https://github.com/iotaledger/twin-framework/commit/032e9fd1388e457cde32ca1005dfe014a5a9c077))
|
|
237
|
+
* factory create and integrity ([#235](https://github.com/iotaledger/twin-framework/issues/235)) ([9f98b99](https://github.com/iotaledger/twin-framework/commit/9f98b99daf46eb365346fae49cc4ffba63e74cb3))
|
|
238
|
+
* improve base error data extraction ([dccc933](https://github.com/iotaledger/twin-framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
|
|
239
|
+
* improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
|
|
240
|
+
* improve Is.function and ModuleHelper.getModuleMethod signatures ([ecf968b](https://github.com/iotaledger/twin-framework/commit/ecf968b02934b3676be4bf7cd2d1e7f8e7af6ce2))
|
|
241
|
+
* improve Is.function definition to retain types ([f20b6b0](https://github.com/iotaledger/twin-framework/commit/f20b6b0dd16e74b75dc359be72b05989305c6410))
|
|
242
|
+
* locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
|
|
243
|
+
* nodeIdentity optional in IComponent methods ([c78dc17](https://github.com/iotaledger/twin-framework/commit/c78dc17f4357d3e1ae40e415f468d3eae13e81f4))
|
|
244
|
+
* propagate includeStackTrace on error conversion ([8471cbb](https://github.com/iotaledger/twin-framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
|
|
245
|
+
* propagate includeStackTrace on error conversion ([818337d](https://github.com/iotaledger/twin-framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
|
|
246
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
247
|
+
* simplify async set ([#121](https://github.com/iotaledger/twin-framework/issues/121)) ([2693c32](https://github.com/iotaledger/twin-framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
|
|
248
|
+
* simplify StringHelper signature ([0390403](https://github.com/iotaledger/twin-framework/commit/039040344952f91ee3c671249bc0e1c8f3b38e17))
|
|
249
|
+
* support indexed properties set in objects ([b9c001d](https://github.com/iotaledger/twin-framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
|
|
250
|
+
* update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
|
|
251
|
+
* urn random switched to using uuidv7 ([606c9a2](https://github.com/iotaledger/twin-framework/commit/606c9a2ed68a10fc7fc2bc5f93388c1b71033154))
|
|
252
|
+
* urn random switched to using uuidv7 ([6a29f8b](https://github.com/iotaledger/twin-framework/commit/6a29f8bd573d06992b7eaa027b1daf4c2a2e1e85))
|
|
253
|
+
* use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
|
|
254
|
+
* use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
216
255
|
|
|
217
256
|
|
|
218
257
|
### Dependencies
|
|
@@ -224,12 +263,12 @@
|
|
|
224
263
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
225
264
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
226
265
|
|
|
227
|
-
## [0.0.3-next.20](https://github.com/
|
|
266
|
+
## [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)
|
|
228
267
|
|
|
229
268
|
|
|
230
269
|
### Features
|
|
231
270
|
|
|
232
|
-
* add typeName method to factory ([699fcbd](https://github.com/
|
|
271
|
+
* add typeName method to factory ([699fcbd](https://github.com/iotaledger/twin-framework/commit/699fcbd1168228401ddb81fdacb959b8cdc4206a))
|
|
233
272
|
|
|
234
273
|
|
|
235
274
|
### Dependencies
|
|
@@ -241,12 +280,12 @@
|
|
|
241
280
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
242
281
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
243
282
|
|
|
244
|
-
## [0.0.3-next.19](https://github.com/
|
|
283
|
+
## [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)
|
|
245
284
|
|
|
246
285
|
|
|
247
286
|
### Features
|
|
248
287
|
|
|
249
|
-
* add isDefault option to factory registration ([a8a700b](https://github.com/
|
|
288
|
+
* add isDefault option to factory registration ([a8a700b](https://github.com/iotaledger/twin-framework/commit/a8a700bb8ddaf7dd5097869a358b8fc5f7c40ce7))
|
|
250
289
|
|
|
251
290
|
|
|
252
291
|
### Dependencies
|
|
@@ -258,12 +297,12 @@
|
|
|
258
297
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
259
298
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
260
299
|
|
|
261
|
-
## [0.0.3-next.18](https://github.com/
|
|
300
|
+
## [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)
|
|
262
301
|
|
|
263
302
|
|
|
264
303
|
### Features
|
|
265
304
|
|
|
266
|
-
* add factory.createIfExists ([aad5a53](https://github.com/
|
|
305
|
+
* add factory.createIfExists ([aad5a53](https://github.com/iotaledger/twin-framework/commit/aad5a53cef1b1c2e04344ea46244d41e371dff9b))
|
|
267
306
|
|
|
268
307
|
|
|
269
308
|
### Dependencies
|
|
@@ -275,12 +314,12 @@
|
|
|
275
314
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
276
315
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
277
316
|
|
|
278
|
-
## [0.0.3-next.17](https://github.com/
|
|
317
|
+
## [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)
|
|
279
318
|
|
|
280
319
|
|
|
281
320
|
### Features
|
|
282
321
|
|
|
283
|
-
* factory create and integrity ([#235](https://github.com/
|
|
322
|
+
* factory create and integrity ([#235](https://github.com/iotaledger/twin-framework/issues/235)) ([9f98b99](https://github.com/iotaledger/twin-framework/commit/9f98b99daf46eb365346fae49cc4ffba63e74cb3))
|
|
284
323
|
|
|
285
324
|
|
|
286
325
|
### Dependencies
|
|
@@ -292,12 +331,12 @@
|
|
|
292
331
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
293
332
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
294
333
|
|
|
295
|
-
## [0.0.3-next.16](https://github.com/
|
|
334
|
+
## [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)
|
|
296
335
|
|
|
297
336
|
|
|
298
337
|
### Features
|
|
299
338
|
|
|
300
|
-
* urn random switched to using uuidv7 ([606c9a2](https://github.com/
|
|
339
|
+
* urn random switched to using uuidv7 ([606c9a2](https://github.com/iotaledger/twin-framework/commit/606c9a2ed68a10fc7fc2bc5f93388c1b71033154))
|
|
301
340
|
|
|
302
341
|
|
|
303
342
|
### Dependencies
|
|
@@ -309,12 +348,12 @@
|
|
|
309
348
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
310
349
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
311
350
|
|
|
312
|
-
## [0.0.3-next.15](https://github.com/
|
|
351
|
+
## [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)
|
|
313
352
|
|
|
314
353
|
|
|
315
354
|
### Features
|
|
316
355
|
|
|
317
|
-
* urn random switched to using uuidv7 ([6a29f8b](https://github.com/
|
|
356
|
+
* urn random switched to using uuidv7 ([6a29f8b](https://github.com/iotaledger/twin-framework/commit/6a29f8bd573d06992b7eaa027b1daf4c2a2e1e85))
|
|
318
357
|
|
|
319
358
|
|
|
320
359
|
### Dependencies
|
|
@@ -326,7 +365,7 @@
|
|
|
326
365
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
327
366
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
328
367
|
|
|
329
|
-
## [0.0.3-next.14](https://github.com/
|
|
368
|
+
## [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)
|
|
330
369
|
|
|
331
370
|
|
|
332
371
|
### Miscellaneous Chores
|
|
@@ -343,7 +382,7 @@
|
|
|
343
382
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
344
383
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
345
384
|
|
|
346
|
-
## [0.0.3-next.13](https://github.com/
|
|
385
|
+
## [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)
|
|
347
386
|
|
|
348
387
|
|
|
349
388
|
### Miscellaneous Chores
|
|
@@ -360,12 +399,12 @@
|
|
|
360
399
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
361
400
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
362
401
|
|
|
363
|
-
## [0.0.3-next.12](https://github.com/
|
|
402
|
+
## [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)
|
|
364
403
|
|
|
365
404
|
|
|
366
405
|
### Features
|
|
367
406
|
|
|
368
|
-
* adding link header helper ([#225](https://github.com/
|
|
407
|
+
* adding link header helper ([#225](https://github.com/iotaledger/twin-framework/issues/225)) ([703c072](https://github.com/iotaledger/twin-framework/commit/703c0725aceac6b6ec0c4fa729ef832d12fb3fd7))
|
|
369
408
|
|
|
370
409
|
|
|
371
410
|
### Dependencies
|
|
@@ -377,7 +416,7 @@
|
|
|
377
416
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
378
417
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
379
418
|
|
|
380
|
-
## [0.0.3-next.11](https://github.com/
|
|
419
|
+
## [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)
|
|
381
420
|
|
|
382
421
|
|
|
383
422
|
### Miscellaneous Chores
|
|
@@ -394,7 +433,7 @@
|
|
|
394
433
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
395
434
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
396
435
|
|
|
397
|
-
## [0.0.3-next.10](https://github.com/
|
|
436
|
+
## [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)
|
|
398
437
|
|
|
399
438
|
|
|
400
439
|
### Miscellaneous Chores
|
|
@@ -411,12 +450,12 @@
|
|
|
411
450
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
412
451
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
413
452
|
|
|
414
|
-
## [0.0.3-next.9](https://github.com/
|
|
453
|
+
## [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)
|
|
415
454
|
|
|
416
455
|
|
|
417
456
|
### Features
|
|
418
457
|
|
|
419
|
-
* add uuidv7 support ([#219](https://github.com/
|
|
458
|
+
* add uuidv7 support ([#219](https://github.com/iotaledger/twin-framework/issues/219)) ([916c657](https://github.com/iotaledger/twin-framework/commit/916c657d270ce99fafe554233739fdd9ca28635b))
|
|
420
459
|
|
|
421
460
|
|
|
422
461
|
### Dependencies
|
|
@@ -428,7 +467,7 @@
|
|
|
428
467
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
429
468
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
430
469
|
|
|
431
|
-
## [0.0.3-next.8](https://github.com/
|
|
470
|
+
## [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)
|
|
432
471
|
|
|
433
472
|
|
|
434
473
|
### Miscellaneous Chores
|
|
@@ -445,39 +484,39 @@
|
|
|
445
484
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
446
485
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
447
486
|
|
|
448
|
-
## [0.0.3-next.7](https://github.com/
|
|
487
|
+
## [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)
|
|
449
488
|
|
|
450
489
|
|
|
451
490
|
### Features
|
|
452
491
|
|
|
453
|
-
* add context id features ([#206](https://github.com/
|
|
454
|
-
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/
|
|
455
|
-
* add Is.class method ([4988205](https://github.com/
|
|
456
|
-
* add objectHelper.split ([386830a](https://github.com/
|
|
457
|
-
* add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/
|
|
458
|
-
* add rsa cipher support ([7af6cc6](https://github.com/
|
|
459
|
-
* add set method for async caches ([ba34b55](https://github.com/
|
|
460
|
-
* add zlib/deflate mime types detection ([72c472b](https://github.com/
|
|
461
|
-
* additional nameof operators ([a5aab60](https://github.com/
|
|
462
|
-
* additional RSA methods and async ([1fceee2](https://github.com/
|
|
463
|
-
* async cache don't cache failures unless requested ([658ec4b](https://github.com/
|
|
464
|
-
* eslint migration to flat config ([74427d7](https://github.com/
|
|
465
|
-
* expand error params to accept properties ([032e9fd](https://github.com/
|
|
466
|
-
* improve base error data extraction ([dccc933](https://github.com/
|
|
467
|
-
* improve error display in CLI ([94b6ca8](https://github.com/
|
|
468
|
-
* improve Is.function and ModuleHelper.getModuleMethod signatures ([ecf968b](https://github.com/
|
|
469
|
-
* improve Is.function definition to retain types ([f20b6b0](https://github.com/
|
|
470
|
-
* locales validation ([#197](https://github.com/
|
|
471
|
-
* nodeIdentity optional in IComponent methods ([c78dc17](https://github.com/
|
|
472
|
-
* propagate includeStackTrace on error conversion ([8471cbb](https://github.com/
|
|
473
|
-
* propagate includeStackTrace on error conversion ([818337d](https://github.com/
|
|
474
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
475
|
-
* simplify async set ([#121](https://github.com/
|
|
476
|
-
* simplify StringHelper signature ([0390403](https://github.com/
|
|
477
|
-
* support indexed properties set in objects ([b9c001d](https://github.com/
|
|
478
|
-
* update dependencies ([f3bd015](https://github.com/
|
|
479
|
-
* use cause instead of inner for errors ([1f4acc4](https://github.com/
|
|
480
|
-
* use new shared store mechanism ([#131](https://github.com/
|
|
492
|
+
* add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
|
|
493
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
494
|
+
* add Is.class method ([4988205](https://github.com/iotaledger/twin-framework/commit/498820543e256a130b4888c958fe1d87ca865d7f))
|
|
495
|
+
* add objectHelper.split ([386830a](https://github.com/iotaledger/twin-framework/commit/386830a77f8e842a5b119be0983708e042c3b14b))
|
|
496
|
+
* add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/iotaledger/twin-framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
|
|
497
|
+
* add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
|
|
498
|
+
* add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
|
|
499
|
+
* add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
|
|
500
|
+
* additional nameof operators ([a5aab60](https://github.com/iotaledger/twin-framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
|
|
501
|
+
* additional RSA methods and async ([1fceee2](https://github.com/iotaledger/twin-framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
|
|
502
|
+
* async cache don't cache failures unless requested ([658ec4b](https://github.com/iotaledger/twin-framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
|
|
503
|
+
* eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
|
|
504
|
+
* expand error params to accept properties ([032e9fd](https://github.com/iotaledger/twin-framework/commit/032e9fd1388e457cde32ca1005dfe014a5a9c077))
|
|
505
|
+
* improve base error data extraction ([dccc933](https://github.com/iotaledger/twin-framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
|
|
506
|
+
* improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
|
|
507
|
+
* improve Is.function and ModuleHelper.getModuleMethod signatures ([ecf968b](https://github.com/iotaledger/twin-framework/commit/ecf968b02934b3676be4bf7cd2d1e7f8e7af6ce2))
|
|
508
|
+
* improve Is.function definition to retain types ([f20b6b0](https://github.com/iotaledger/twin-framework/commit/f20b6b0dd16e74b75dc359be72b05989305c6410))
|
|
509
|
+
* locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
|
|
510
|
+
* nodeIdentity optional in IComponent methods ([c78dc17](https://github.com/iotaledger/twin-framework/commit/c78dc17f4357d3e1ae40e415f468d3eae13e81f4))
|
|
511
|
+
* propagate includeStackTrace on error conversion ([8471cbb](https://github.com/iotaledger/twin-framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
|
|
512
|
+
* propagate includeStackTrace on error conversion ([818337d](https://github.com/iotaledger/twin-framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
|
|
513
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
514
|
+
* simplify async set ([#121](https://github.com/iotaledger/twin-framework/issues/121)) ([2693c32](https://github.com/iotaledger/twin-framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
|
|
515
|
+
* simplify StringHelper signature ([0390403](https://github.com/iotaledger/twin-framework/commit/039040344952f91ee3c671249bc0e1c8f3b38e17))
|
|
516
|
+
* support indexed properties set in objects ([b9c001d](https://github.com/iotaledger/twin-framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
|
|
517
|
+
* update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
|
|
518
|
+
* use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
|
|
519
|
+
* use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
481
520
|
|
|
482
521
|
|
|
483
522
|
### Dependencies
|
|
@@ -489,7 +528,7 @@
|
|
|
489
528
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
490
529
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
491
530
|
|
|
492
|
-
## [0.0.3-next.6](https://github.com/
|
|
531
|
+
## [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)
|
|
493
532
|
|
|
494
533
|
|
|
495
534
|
### Miscellaneous Chores
|
|
@@ -506,7 +545,7 @@
|
|
|
506
545
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
507
546
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
508
547
|
|
|
509
|
-
## [0.0.3-next.5](https://github.com/
|
|
548
|
+
## [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)
|
|
510
549
|
|
|
511
550
|
|
|
512
551
|
### Miscellaneous Chores
|
|
@@ -523,7 +562,7 @@
|
|
|
523
562
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
524
563
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
525
564
|
|
|
526
|
-
## [0.0.3-next.4](https://github.com/
|
|
565
|
+
## [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)
|
|
527
566
|
|
|
528
567
|
|
|
529
568
|
### Miscellaneous Chores
|
|
@@ -540,7 +579,7 @@
|
|
|
540
579
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
541
580
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
542
581
|
|
|
543
|
-
## [0.0.3-next.3](https://github.com/
|
|
582
|
+
## [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)
|
|
544
583
|
|
|
545
584
|
|
|
546
585
|
### Miscellaneous Chores
|
|
@@ -557,7 +596,7 @@
|
|
|
557
596
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
558
597
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
559
598
|
|
|
560
|
-
## [0.0.3-next.2](https://github.com/
|
|
599
|
+
## [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)
|
|
561
600
|
|
|
562
601
|
|
|
563
602
|
### Miscellaneous Chores
|
|
@@ -574,39 +613,39 @@
|
|
|
574
613
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.1 to 0.0.3-next.2
|
|
575
614
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.1 to 0.0.3-next.2
|
|
576
615
|
|
|
577
|
-
## [0.0.3-next.1](https://github.com/
|
|
616
|
+
## [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)
|
|
578
617
|
|
|
579
618
|
|
|
580
619
|
### Features
|
|
581
620
|
|
|
582
|
-
* add context id features ([#206](https://github.com/
|
|
583
|
-
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/
|
|
584
|
-
* add Is.class method ([4988205](https://github.com/
|
|
585
|
-
* add objectHelper.split ([386830a](https://github.com/
|
|
586
|
-
* add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/
|
|
587
|
-
* add rsa cipher support ([7af6cc6](https://github.com/
|
|
588
|
-
* add set method for async caches ([ba34b55](https://github.com/
|
|
589
|
-
* add zlib/deflate mime types detection ([72c472b](https://github.com/
|
|
590
|
-
* additional nameof operators ([a5aab60](https://github.com/
|
|
591
|
-
* additional RSA methods and async ([1fceee2](https://github.com/
|
|
592
|
-
* async cache don't cache failures unless requested ([658ec4b](https://github.com/
|
|
593
|
-
* eslint migration to flat config ([74427d7](https://github.com/
|
|
594
|
-
* expand error params to accept properties ([032e9fd](https://github.com/
|
|
595
|
-
* improve base error data extraction ([dccc933](https://github.com/
|
|
596
|
-
* improve error display in CLI ([94b6ca8](https://github.com/
|
|
597
|
-
* improve Is.function and ModuleHelper.getModuleMethod signatures ([ecf968b](https://github.com/
|
|
598
|
-
* improve Is.function definition to retain types ([f20b6b0](https://github.com/
|
|
599
|
-
* locales validation ([#197](https://github.com/
|
|
600
|
-
* nodeIdentity optional in IComponent methods ([c78dc17](https://github.com/
|
|
601
|
-
* propagate includeStackTrace on error conversion ([8471cbb](https://github.com/
|
|
602
|
-
* propagate includeStackTrace on error conversion ([818337d](https://github.com/
|
|
603
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
604
|
-
* simplify async set ([#121](https://github.com/
|
|
605
|
-
* simplify StringHelper signature ([0390403](https://github.com/
|
|
606
|
-
* support indexed properties set in objects ([b9c001d](https://github.com/
|
|
607
|
-
* update dependencies ([f3bd015](https://github.com/
|
|
608
|
-
* use cause instead of inner for errors ([1f4acc4](https://github.com/
|
|
609
|
-
* use new shared store mechanism ([#131](https://github.com/
|
|
621
|
+
* add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
|
|
622
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
623
|
+
* add Is.class method ([4988205](https://github.com/iotaledger/twin-framework/commit/498820543e256a130b4888c958fe1d87ca865d7f))
|
|
624
|
+
* add objectHelper.split ([386830a](https://github.com/iotaledger/twin-framework/commit/386830a77f8e842a5b119be0983708e042c3b14b))
|
|
625
|
+
* add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/iotaledger/twin-framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
|
|
626
|
+
* add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
|
|
627
|
+
* add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
|
|
628
|
+
* add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
|
|
629
|
+
* additional nameof operators ([a5aab60](https://github.com/iotaledger/twin-framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
|
|
630
|
+
* additional RSA methods and async ([1fceee2](https://github.com/iotaledger/twin-framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
|
|
631
|
+
* async cache don't cache failures unless requested ([658ec4b](https://github.com/iotaledger/twin-framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
|
|
632
|
+
* eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
|
|
633
|
+
* expand error params to accept properties ([032e9fd](https://github.com/iotaledger/twin-framework/commit/032e9fd1388e457cde32ca1005dfe014a5a9c077))
|
|
634
|
+
* improve base error data extraction ([dccc933](https://github.com/iotaledger/twin-framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
|
|
635
|
+
* improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
|
|
636
|
+
* improve Is.function and ModuleHelper.getModuleMethod signatures ([ecf968b](https://github.com/iotaledger/twin-framework/commit/ecf968b02934b3676be4bf7cd2d1e7f8e7af6ce2))
|
|
637
|
+
* improve Is.function definition to retain types ([f20b6b0](https://github.com/iotaledger/twin-framework/commit/f20b6b0dd16e74b75dc359be72b05989305c6410))
|
|
638
|
+
* locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
|
|
639
|
+
* nodeIdentity optional in IComponent methods ([c78dc17](https://github.com/iotaledger/twin-framework/commit/c78dc17f4357d3e1ae40e415f468d3eae13e81f4))
|
|
640
|
+
* propagate includeStackTrace on error conversion ([8471cbb](https://github.com/iotaledger/twin-framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
|
|
641
|
+
* propagate includeStackTrace on error conversion ([818337d](https://github.com/iotaledger/twin-framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
|
|
642
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
643
|
+
* simplify async set ([#121](https://github.com/iotaledger/twin-framework/issues/121)) ([2693c32](https://github.com/iotaledger/twin-framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
|
|
644
|
+
* simplify StringHelper signature ([0390403](https://github.com/iotaledger/twin-framework/commit/039040344952f91ee3c671249bc0e1c8f3b38e17))
|
|
645
|
+
* support indexed properties set in objects ([b9c001d](https://github.com/iotaledger/twin-framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
|
|
646
|
+
* update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
|
|
647
|
+
* use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
|
|
648
|
+
* use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
610
649
|
|
|
611
650
|
|
|
612
651
|
### Dependencies
|
|
@@ -618,7 +657,7 @@
|
|
|
618
657
|
* @twin.org/nameof-transformer bumped from 0.0.3-next.0 to 0.0.3-next.1
|
|
619
658
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.0 to 0.0.3-next.1
|
|
620
659
|
|
|
621
|
-
## [0.0.2-next.22](https://github.com/
|
|
660
|
+
## [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)
|
|
622
661
|
|
|
623
662
|
|
|
624
663
|
### Miscellaneous Chores
|
|
@@ -635,12 +674,12 @@
|
|
|
635
674
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.21 to 0.0.2-next.22
|
|
636
675
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.21 to 0.0.2-next.22
|
|
637
676
|
|
|
638
|
-
## [0.0.2-next.21](https://github.com/
|
|
677
|
+
## [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)
|
|
639
678
|
|
|
640
679
|
|
|
641
680
|
### Features
|
|
642
681
|
|
|
643
|
-
* locales validation ([#197](https://github.com/
|
|
682
|
+
* locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
|
|
644
683
|
|
|
645
684
|
|
|
646
685
|
### Dependencies
|
|
@@ -652,12 +691,12 @@
|
|
|
652
691
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.20 to 0.0.2-next.21
|
|
653
692
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.20 to 0.0.2-next.21
|
|
654
693
|
|
|
655
|
-
## [0.0.2-next.20](https://github.com/
|
|
694
|
+
## [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)
|
|
656
695
|
|
|
657
696
|
|
|
658
697
|
### Features
|
|
659
698
|
|
|
660
|
-
* improve Is.function and ModuleHelper.getModuleMethod signatures ([ecf968b](https://github.com/
|
|
699
|
+
* improve Is.function and ModuleHelper.getModuleMethod signatures ([ecf968b](https://github.com/iotaledger/twin-framework/commit/ecf968b02934b3676be4bf7cd2d1e7f8e7af6ce2))
|
|
661
700
|
|
|
662
701
|
|
|
663
702
|
### Dependencies
|
|
@@ -669,12 +708,12 @@
|
|
|
669
708
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.19 to 0.0.2-next.20
|
|
670
709
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.19 to 0.0.2-next.20
|
|
671
710
|
|
|
672
|
-
## [0.0.2-next.19](https://github.com/
|
|
711
|
+
## [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)
|
|
673
712
|
|
|
674
713
|
|
|
675
714
|
### Features
|
|
676
715
|
|
|
677
|
-
* add objectHelper.split ([386830a](https://github.com/
|
|
716
|
+
* add objectHelper.split ([386830a](https://github.com/iotaledger/twin-framework/commit/386830a77f8e842a5b119be0983708e042c3b14b))
|
|
678
717
|
|
|
679
718
|
|
|
680
719
|
### Dependencies
|
|
@@ -686,12 +725,12 @@
|
|
|
686
725
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.18 to 0.0.2-next.19
|
|
687
726
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.18 to 0.0.2-next.19
|
|
688
727
|
|
|
689
|
-
## [0.0.2-next.18](https://github.com/
|
|
728
|
+
## [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)
|
|
690
729
|
|
|
691
730
|
|
|
692
731
|
### Features
|
|
693
732
|
|
|
694
|
-
* simplify StringHelper signature ([0390403](https://github.com/
|
|
733
|
+
* simplify StringHelper signature ([0390403](https://github.com/iotaledger/twin-framework/commit/039040344952f91ee3c671249bc0e1c8f3b38e17))
|
|
695
734
|
|
|
696
735
|
|
|
697
736
|
### Dependencies
|
|
@@ -703,12 +742,12 @@
|
|
|
703
742
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.17 to 0.0.2-next.18
|
|
704
743
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.17 to 0.0.2-next.18
|
|
705
744
|
|
|
706
|
-
## [0.0.2-next.17](https://github.com/
|
|
745
|
+
## [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)
|
|
707
746
|
|
|
708
747
|
|
|
709
748
|
### Features
|
|
710
749
|
|
|
711
|
-
* additional nameof operators ([a5aab60](https://github.com/
|
|
750
|
+
* additional nameof operators ([a5aab60](https://github.com/iotaledger/twin-framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
|
|
712
751
|
|
|
713
752
|
|
|
714
753
|
### Dependencies
|
|
@@ -720,13 +759,13 @@
|
|
|
720
759
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.16 to 0.0.2-next.17
|
|
721
760
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.16 to 0.0.2-next.17
|
|
722
761
|
|
|
723
|
-
## [0.0.2-next.16](https://github.com/
|
|
762
|
+
## [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)
|
|
724
763
|
|
|
725
764
|
|
|
726
765
|
### Features
|
|
727
766
|
|
|
728
|
-
* improve Is.function definition to retain types ([f20b6b0](https://github.com/
|
|
729
|
-
* nodeIdentity optional in IComponent methods ([c78dc17](https://github.com/
|
|
767
|
+
* improve Is.function definition to retain types ([f20b6b0](https://github.com/iotaledger/twin-framework/commit/f20b6b0dd16e74b75dc359be72b05989305c6410))
|
|
768
|
+
* nodeIdentity optional in IComponent methods ([c78dc17](https://github.com/iotaledger/twin-framework/commit/c78dc17f4357d3e1ae40e415f468d3eae13e81f4))
|
|
730
769
|
|
|
731
770
|
|
|
732
771
|
### Dependencies
|
|
@@ -738,7 +777,7 @@
|
|
|
738
777
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.15 to 0.0.2-next.16
|
|
739
778
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.15 to 0.0.2-next.16
|
|
740
779
|
|
|
741
|
-
## [0.0.2-next.15](https://github.com/
|
|
780
|
+
## [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)
|
|
742
781
|
|
|
743
782
|
|
|
744
783
|
### Miscellaneous Chores
|
|
@@ -755,7 +794,7 @@
|
|
|
755
794
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.14 to 0.0.2-next.15
|
|
756
795
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.14 to 0.0.2-next.15
|
|
757
796
|
|
|
758
|
-
## [0.0.2-next.14](https://github.com/
|
|
797
|
+
## [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)
|
|
759
798
|
|
|
760
799
|
|
|
761
800
|
### Miscellaneous Chores
|
|
@@ -772,12 +811,12 @@
|
|
|
772
811
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.13 to 0.0.2-next.14
|
|
773
812
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.13 to 0.0.2-next.14
|
|
774
813
|
|
|
775
|
-
## [0.0.2-next.13](https://github.com/
|
|
814
|
+
## [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)
|
|
776
815
|
|
|
777
816
|
|
|
778
817
|
### Features
|
|
779
818
|
|
|
780
|
-
* expand error params to accept properties ([032e9fd](https://github.com/
|
|
819
|
+
* expand error params to accept properties ([032e9fd](https://github.com/iotaledger/twin-framework/commit/032e9fd1388e457cde32ca1005dfe014a5a9c077))
|
|
781
820
|
|
|
782
821
|
|
|
783
822
|
### Dependencies
|
|
@@ -789,7 +828,7 @@
|
|
|
789
828
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.12 to 0.0.2-next.13
|
|
790
829
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.12 to 0.0.2-next.13
|
|
791
830
|
|
|
792
|
-
## [0.0.2-next.12](https://github.com/
|
|
831
|
+
## [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)
|
|
793
832
|
|
|
794
833
|
|
|
795
834
|
### Miscellaneous Chores
|
|
@@ -806,7 +845,7 @@
|
|
|
806
845
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.11 to 0.0.2-next.12
|
|
807
846
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.11 to 0.0.2-next.12
|
|
808
847
|
|
|
809
|
-
## [0.0.2-next.11](https://github.com/
|
|
848
|
+
## [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)
|
|
810
849
|
|
|
811
850
|
|
|
812
851
|
### Miscellaneous Chores
|
|
@@ -823,7 +862,7 @@
|
|
|
823
862
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
824
863
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
825
864
|
|
|
826
|
-
## [0.0.2-next.10](https://github.com/
|
|
865
|
+
## [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)
|
|
827
866
|
|
|
828
867
|
|
|
829
868
|
### Miscellaneous Chores
|
|
@@ -840,7 +879,7 @@
|
|
|
840
879
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
841
880
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
842
881
|
|
|
843
|
-
## [0.0.2-next.9](https://github.com/
|
|
882
|
+
## [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)
|
|
844
883
|
|
|
845
884
|
|
|
846
885
|
### Miscellaneous Chores
|
|
@@ -857,12 +896,12 @@
|
|
|
857
896
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
858
897
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
859
898
|
|
|
860
|
-
## [0.0.2-next.8](https://github.com/
|
|
899
|
+
## [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)
|
|
861
900
|
|
|
862
901
|
|
|
863
902
|
### Features
|
|
864
903
|
|
|
865
|
-
* add Is.class method ([4988205](https://github.com/
|
|
904
|
+
* add Is.class method ([4988205](https://github.com/iotaledger/twin-framework/commit/498820543e256a130b4888c958fe1d87ca865d7f))
|
|
866
905
|
|
|
867
906
|
|
|
868
907
|
### Dependencies
|
|
@@ -874,12 +913,12 @@
|
|
|
874
913
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
875
914
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
876
915
|
|
|
877
|
-
## [0.0.2-next.7](https://github.com/
|
|
916
|
+
## [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)
|
|
878
917
|
|
|
879
918
|
|
|
880
919
|
### Features
|
|
881
920
|
|
|
882
|
-
* eslint migration to flat config ([74427d7](https://github.com/
|
|
921
|
+
* eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
|
|
883
922
|
|
|
884
923
|
|
|
885
924
|
### Dependencies
|
|
@@ -891,7 +930,7 @@
|
|
|
891
930
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
892
931
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
893
932
|
|
|
894
|
-
## [0.0.2-next.6](https://github.com/
|
|
933
|
+
## [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)
|
|
895
934
|
|
|
896
935
|
|
|
897
936
|
### Miscellaneous Chores
|
|
@@ -908,12 +947,12 @@
|
|
|
908
947
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
909
948
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
910
949
|
|
|
911
|
-
## [0.0.2-next.5](https://github.com/
|
|
950
|
+
## [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)
|
|
912
951
|
|
|
913
952
|
|
|
914
953
|
### Features
|
|
915
954
|
|
|
916
|
-
* use cause instead of inner for errors ([1f4acc4](https://github.com/
|
|
955
|
+
* use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
|
|
917
956
|
|
|
918
957
|
|
|
919
958
|
### Dependencies
|
|
@@ -925,12 +964,12 @@
|
|
|
925
964
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
926
965
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
927
966
|
|
|
928
|
-
## [0.0.2-next.4](https://github.com/
|
|
967
|
+
## [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)
|
|
929
968
|
|
|
930
969
|
|
|
931
970
|
### Features
|
|
932
971
|
|
|
933
|
-
* additional RSA methods and async ([1fceee2](https://github.com/
|
|
972
|
+
* additional RSA methods and async ([1fceee2](https://github.com/iotaledger/twin-framework/commit/1fceee2d1248a24a7620846025fcf906495c07f4))
|
|
934
973
|
|
|
935
974
|
|
|
936
975
|
### Dependencies
|
|
@@ -942,26 +981,26 @@
|
|
|
942
981
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
943
982
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
944
983
|
|
|
945
|
-
## [0.0.2-next.3](https://github.com/
|
|
984
|
+
## [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)
|
|
946
985
|
|
|
947
986
|
|
|
948
987
|
### Features
|
|
949
988
|
|
|
950
|
-
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/
|
|
951
|
-
* add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/
|
|
952
|
-
* add rsa cipher support ([7af6cc6](https://github.com/
|
|
953
|
-
* add set method for async caches ([ba34b55](https://github.com/
|
|
954
|
-
* add zlib/deflate mime types detection ([72c472b](https://github.com/
|
|
955
|
-
* async cache don't cache failures unless requested ([658ec4b](https://github.com/
|
|
956
|
-
* improve base error data extraction ([dccc933](https://github.com/
|
|
957
|
-
* improve error display in CLI ([94b6ca8](https://github.com/
|
|
958
|
-
* propagate includeStackTrace on error conversion ([8471cbb](https://github.com/
|
|
959
|
-
* propagate includeStackTrace on error conversion ([818337d](https://github.com/
|
|
960
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
961
|
-
* simplify async set ([#121](https://github.com/
|
|
962
|
-
* support indexed properties set in objects ([b9c001d](https://github.com/
|
|
963
|
-
* update dependencies ([f3bd015](https://github.com/
|
|
964
|
-
* use new shared store mechanism ([#131](https://github.com/
|
|
989
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
990
|
+
* add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/iotaledger/twin-framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
|
|
991
|
+
* add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
|
|
992
|
+
* add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
|
|
993
|
+
* add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
|
|
994
|
+
* async cache don't cache failures unless requested ([658ec4b](https://github.com/iotaledger/twin-framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
|
|
995
|
+
* improve base error data extraction ([dccc933](https://github.com/iotaledger/twin-framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
|
|
996
|
+
* improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
|
|
997
|
+
* propagate includeStackTrace on error conversion ([8471cbb](https://github.com/iotaledger/twin-framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
|
|
998
|
+
* propagate includeStackTrace on error conversion ([818337d](https://github.com/iotaledger/twin-framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
|
|
999
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
1000
|
+
* simplify async set ([#121](https://github.com/iotaledger/twin-framework/issues/121)) ([2693c32](https://github.com/iotaledger/twin-framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
|
|
1001
|
+
* support indexed properties set in objects ([b9c001d](https://github.com/iotaledger/twin-framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
|
|
1002
|
+
* update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
|
|
1003
|
+
* use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
965
1004
|
|
|
966
1005
|
|
|
967
1006
|
### Dependencies
|
|
@@ -973,26 +1012,26 @@
|
|
|
973
1012
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
974
1013
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
975
1014
|
|
|
976
|
-
## [0.0.2-next.2](https://github.com/
|
|
1015
|
+
## [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)
|
|
977
1016
|
|
|
978
1017
|
|
|
979
1018
|
### Features
|
|
980
1019
|
|
|
981
|
-
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/
|
|
982
|
-
* add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/
|
|
983
|
-
* add rsa cipher support ([7af6cc6](https://github.com/
|
|
984
|
-
* add set method for async caches ([ba34b55](https://github.com/
|
|
985
|
-
* add zlib/deflate mime types detection ([72c472b](https://github.com/
|
|
986
|
-
* async cache don't cache failures unless requested ([658ec4b](https://github.com/
|
|
987
|
-
* improve base error data extraction ([dccc933](https://github.com/
|
|
988
|
-
* improve error display in CLI ([94b6ca8](https://github.com/
|
|
989
|
-
* propagate includeStackTrace on error conversion ([8471cbb](https://github.com/
|
|
990
|
-
* propagate includeStackTrace on error conversion ([818337d](https://github.com/
|
|
991
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
992
|
-
* simplify async set ([#121](https://github.com/
|
|
993
|
-
* support indexed properties set in objects ([b9c001d](https://github.com/
|
|
994
|
-
* update dependencies ([f3bd015](https://github.com/
|
|
995
|
-
* use new shared store mechanism ([#131](https://github.com/
|
|
1020
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
1021
|
+
* add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/iotaledger/twin-framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
|
|
1022
|
+
* add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
|
|
1023
|
+
* add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
|
|
1024
|
+
* add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
|
|
1025
|
+
* async cache don't cache failures unless requested ([658ec4b](https://github.com/iotaledger/twin-framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
|
|
1026
|
+
* improve base error data extraction ([dccc933](https://github.com/iotaledger/twin-framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
|
|
1027
|
+
* improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
|
|
1028
|
+
* propagate includeStackTrace on error conversion ([8471cbb](https://github.com/iotaledger/twin-framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
|
|
1029
|
+
* propagate includeStackTrace on error conversion ([818337d](https://github.com/iotaledger/twin-framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
|
|
1030
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
1031
|
+
* simplify async set ([#121](https://github.com/iotaledger/twin-framework/issues/121)) ([2693c32](https://github.com/iotaledger/twin-framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
|
|
1032
|
+
* support indexed properties set in objects ([b9c001d](https://github.com/iotaledger/twin-framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
|
|
1033
|
+
* update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
|
|
1034
|
+
* use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
996
1035
|
|
|
997
1036
|
|
|
998
1037
|
### Dependencies
|
|
@@ -1004,26 +1043,26 @@
|
|
|
1004
1043
|
* @twin.org/nameof-transformer bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
1005
1044
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
1006
1045
|
|
|
1007
|
-
## [0.0.2-next.1](https://github.com/
|
|
1046
|
+
## [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)
|
|
1008
1047
|
|
|
1009
1048
|
|
|
1010
1049
|
### Features
|
|
1011
1050
|
|
|
1012
|
-
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/
|
|
1013
|
-
* add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/
|
|
1014
|
-
* add rsa cipher support ([7af6cc6](https://github.com/
|
|
1015
|
-
* add set method for async caches ([ba34b55](https://github.com/
|
|
1016
|
-
* add zlib/deflate mime types detection ([72c472b](https://github.com/
|
|
1017
|
-
* async cache don't cache failures unless requested ([658ec4b](https://github.com/
|
|
1018
|
-
* improve base error data extraction ([dccc933](https://github.com/
|
|
1019
|
-
* improve error display in CLI ([94b6ca8](https://github.com/
|
|
1020
|
-
* propagate includeStackTrace on error conversion ([8471cbb](https://github.com/
|
|
1021
|
-
* propagate includeStackTrace on error conversion ([818337d](https://github.com/
|
|
1022
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
1023
|
-
* simplify async set ([#121](https://github.com/
|
|
1024
|
-
* support indexed properties set in objects ([b9c001d](https://github.com/
|
|
1025
|
-
* update dependencies ([f3bd015](https://github.com/
|
|
1026
|
-
* use new shared store mechanism ([#131](https://github.com/
|
|
1051
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
1052
|
+
* add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/iotaledger/twin-framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
|
|
1053
|
+
* add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
|
|
1054
|
+
* add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
|
|
1055
|
+
* add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
|
|
1056
|
+
* async cache don't cache failures unless requested ([658ec4b](https://github.com/iotaledger/twin-framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
|
|
1057
|
+
* improve base error data extraction ([dccc933](https://github.com/iotaledger/twin-framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
|
|
1058
|
+
* improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
|
|
1059
|
+
* propagate includeStackTrace on error conversion ([8471cbb](https://github.com/iotaledger/twin-framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
|
|
1060
|
+
* propagate includeStackTrace on error conversion ([818337d](https://github.com/iotaledger/twin-framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
|
|
1061
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
1062
|
+
* simplify async set ([#121](https://github.com/iotaledger/twin-framework/issues/121)) ([2693c32](https://github.com/iotaledger/twin-framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
|
|
1063
|
+
* support indexed properties set in objects ([b9c001d](https://github.com/iotaledger/twin-framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
|
|
1064
|
+
* update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
|
|
1065
|
+
* use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
1027
1066
|
|
|
1028
1067
|
|
|
1029
1068
|
### Dependencies
|
|
@@ -1040,8 +1079,8 @@
|
|
|
1040
1079
|
|
|
1041
1080
|
### Features
|
|
1042
1081
|
|
|
1043
|
-
* release to production ([829d53d](https://github.com/
|
|
1044
|
-
* release to production ([5cf3a76](https://github.com/
|
|
1082
|
+
* release to production ([829d53d](https://github.com/iotaledger/twin-framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
|
|
1083
|
+
* release to production ([5cf3a76](https://github.com/iotaledger/twin-framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
|
|
1045
1084
|
|
|
1046
1085
|
|
|
1047
1086
|
### Dependencies
|
|
@@ -1053,24 +1092,24 @@
|
|
|
1053
1092
|
* @twin.org/nameof-transformer bumped from ^0.0.0 to ^0.0.1
|
|
1054
1093
|
* @twin.org/nameof-vitest-plugin bumped from ^0.0.0 to ^0.0.1
|
|
1055
1094
|
|
|
1056
|
-
## [0.0.1-next.70](https://github.com/
|
|
1095
|
+
## [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)
|
|
1057
1096
|
|
|
1058
1097
|
|
|
1059
1098
|
### Features
|
|
1060
1099
|
|
|
1061
|
-
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/
|
|
1062
|
-
* add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/
|
|
1063
|
-
* add set method for async caches ([ba34b55](https://github.com/
|
|
1064
|
-
* add zlib/deflate mime types detection ([72c472b](https://github.com/
|
|
1065
|
-
* async cache don't cache failures unless requested ([658ec4b](https://github.com/
|
|
1066
|
-
* improve base error data extraction ([dccc933](https://github.com/
|
|
1067
|
-
* improve error display in CLI ([94b6ca8](https://github.com/
|
|
1068
|
-
* propagate includeStackTrace on error conversion ([8471cbb](https://github.com/
|
|
1069
|
-
* propagate includeStackTrace on error conversion ([818337d](https://github.com/
|
|
1070
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
1071
|
-
* simplify async set ([#121](https://github.com/
|
|
1072
|
-
* support indexed properties set in objects ([b9c001d](https://github.com/
|
|
1073
|
-
* use new shared store mechanism ([#131](https://github.com/
|
|
1100
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
1101
|
+
* add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/iotaledger/twin-framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
|
|
1102
|
+
* add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
|
|
1103
|
+
* add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
|
|
1104
|
+
* async cache don't cache failures unless requested ([658ec4b](https://github.com/iotaledger/twin-framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
|
|
1105
|
+
* improve base error data extraction ([dccc933](https://github.com/iotaledger/twin-framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
|
|
1106
|
+
* improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
|
|
1107
|
+
* propagate includeStackTrace on error conversion ([8471cbb](https://github.com/iotaledger/twin-framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
|
|
1108
|
+
* propagate includeStackTrace on error conversion ([818337d](https://github.com/iotaledger/twin-framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
|
|
1109
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
1110
|
+
* simplify async set ([#121](https://github.com/iotaledger/twin-framework/issues/121)) ([2693c32](https://github.com/iotaledger/twin-framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
|
|
1111
|
+
* support indexed properties set in objects ([b9c001d](https://github.com/iotaledger/twin-framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
|
|
1112
|
+
* use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
1074
1113
|
|
|
1075
1114
|
|
|
1076
1115
|
### Dependencies
|
|
@@ -1082,24 +1121,24 @@
|
|
|
1082
1121
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.69 to 0.0.1-next.70
|
|
1083
1122
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.69 to 0.0.1-next.70
|
|
1084
1123
|
|
|
1085
|
-
## [0.0.1-next.69](https://github.com/
|
|
1124
|
+
## [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)
|
|
1086
1125
|
|
|
1087
1126
|
|
|
1088
1127
|
### Features
|
|
1089
1128
|
|
|
1090
|
-
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/
|
|
1091
|
-
* add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/
|
|
1092
|
-
* add set method for async caches ([ba34b55](https://github.com/
|
|
1093
|
-
* add zlib/deflate mime types detection ([72c472b](https://github.com/
|
|
1094
|
-
* async cache don't cache failures unless requested ([658ec4b](https://github.com/
|
|
1095
|
-
* improve base error data extraction ([dccc933](https://github.com/
|
|
1096
|
-
* improve error display in CLI ([94b6ca8](https://github.com/
|
|
1097
|
-
* propagate includeStackTrace on error conversion ([8471cbb](https://github.com/
|
|
1098
|
-
* propagate includeStackTrace on error conversion ([818337d](https://github.com/
|
|
1099
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
1100
|
-
* simplify async set ([#121](https://github.com/
|
|
1101
|
-
* support indexed properties set in objects ([b9c001d](https://github.com/
|
|
1102
|
-
* use new shared store mechanism ([#131](https://github.com/
|
|
1129
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
1130
|
+
* add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/iotaledger/twin-framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
|
|
1131
|
+
* add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
|
|
1132
|
+
* add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
|
|
1133
|
+
* async cache don't cache failures unless requested ([658ec4b](https://github.com/iotaledger/twin-framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
|
|
1134
|
+
* improve base error data extraction ([dccc933](https://github.com/iotaledger/twin-framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
|
|
1135
|
+
* improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
|
|
1136
|
+
* propagate includeStackTrace on error conversion ([8471cbb](https://github.com/iotaledger/twin-framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
|
|
1137
|
+
* propagate includeStackTrace on error conversion ([818337d](https://github.com/iotaledger/twin-framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
|
|
1138
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
1139
|
+
* simplify async set ([#121](https://github.com/iotaledger/twin-framework/issues/121)) ([2693c32](https://github.com/iotaledger/twin-framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
|
|
1140
|
+
* support indexed properties set in objects ([b9c001d](https://github.com/iotaledger/twin-framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
|
|
1141
|
+
* use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
1103
1142
|
|
|
1104
1143
|
|
|
1105
1144
|
### Dependencies
|
|
@@ -1111,12 +1150,12 @@
|
|
|
1111
1150
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.68 to 0.0.1-next.69
|
|
1112
1151
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.68 to 0.0.1-next.69
|
|
1113
1152
|
|
|
1114
|
-
## [0.0.1-next.68](https://github.com/
|
|
1153
|
+
## [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)
|
|
1115
1154
|
|
|
1116
1155
|
|
|
1117
1156
|
### Features
|
|
1118
1157
|
|
|
1119
|
-
* relocate core packages from tools ([bcab8f3](https://github.com/
|
|
1158
|
+
* relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
|
|
1120
1159
|
|
|
1121
1160
|
|
|
1122
1161
|
### Dependencies
|
|
@@ -1128,141 +1167,141 @@
|
|
|
1128
1167
|
* @twin.org/nameof-transformer bumped from 0.0.1-next.67 to 0.0.1-next.68
|
|
1129
1168
|
* @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.67 to 0.0.1-next.68
|
|
1130
1169
|
|
|
1131
|
-
## [0.0.1-next.67](https://github.com/
|
|
1170
|
+
## [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)
|
|
1132
1171
|
|
|
1133
1172
|
|
|
1134
1173
|
### Miscellaneous Chores
|
|
1135
1174
|
|
|
1136
1175
|
* **core:** Synchronize repo versions
|
|
1137
1176
|
|
|
1138
|
-
## [0.0.1-next.66](https://github.com/
|
|
1177
|
+
## [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)
|
|
1139
1178
|
|
|
1140
1179
|
|
|
1141
1180
|
### Features
|
|
1142
1181
|
|
|
1143
|
-
* improve base error data extraction ([dccc933](https://github.com/
|
|
1182
|
+
* improve base error data extraction ([dccc933](https://github.com/iotaledger/twin-framework/commit/dccc93361a1544b41db0e7c126ff90e858d87960))
|
|
1144
1183
|
|
|
1145
|
-
## [0.0.1-next.65](https://github.com/
|
|
1184
|
+
## [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)
|
|
1146
1185
|
|
|
1147
1186
|
|
|
1148
1187
|
### Miscellaneous Chores
|
|
1149
1188
|
|
|
1150
1189
|
* **core:** Synchronize repo versions
|
|
1151
1190
|
|
|
1152
|
-
## [0.0.1-next.64](https://github.com/
|
|
1191
|
+
## [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)
|
|
1153
1192
|
|
|
1154
1193
|
|
|
1155
1194
|
### Features
|
|
1156
1195
|
|
|
1157
|
-
* add zlib/deflate mime types detection ([72c472b](https://github.com/
|
|
1196
|
+
* add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
|
|
1158
1197
|
|
|
1159
|
-
## [0.0.1-next.63](https://github.com/
|
|
1198
|
+
## [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)
|
|
1160
1199
|
|
|
1161
1200
|
|
|
1162
1201
|
### Miscellaneous Chores
|
|
1163
1202
|
|
|
1164
1203
|
* **core:** Synchronize repo versions
|
|
1165
1204
|
|
|
1166
|
-
## [0.0.1-next.62](https://github.com/
|
|
1205
|
+
## [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)
|
|
1167
1206
|
|
|
1168
1207
|
|
|
1169
1208
|
### Features
|
|
1170
1209
|
|
|
1171
|
-
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/
|
|
1172
|
-
* add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/
|
|
1173
|
-
* add set method for async caches ([ba34b55](https://github.com/
|
|
1174
|
-
* async cache don't cache failures unless requested ([658ec4b](https://github.com/
|
|
1175
|
-
* improve error display in CLI ([94b6ca8](https://github.com/
|
|
1176
|
-
* propagate includeStackTrace on error conversion ([8471cbb](https://github.com/
|
|
1177
|
-
* propagate includeStackTrace on error conversion ([818337d](https://github.com/
|
|
1178
|
-
* simplify async set ([#121](https://github.com/
|
|
1179
|
-
* support indexed properties set in objects ([b9c001d](https://github.com/
|
|
1180
|
-
* use new shared store mechanism ([#131](https://github.com/
|
|
1210
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
1211
|
+
* add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/iotaledger/twin-framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
|
|
1212
|
+
* add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
|
|
1213
|
+
* async cache don't cache failures unless requested ([658ec4b](https://github.com/iotaledger/twin-framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
|
|
1214
|
+
* improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
|
|
1215
|
+
* propagate includeStackTrace on error conversion ([8471cbb](https://github.com/iotaledger/twin-framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
|
|
1216
|
+
* propagate includeStackTrace on error conversion ([818337d](https://github.com/iotaledger/twin-framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
|
|
1217
|
+
* simplify async set ([#121](https://github.com/iotaledger/twin-framework/issues/121)) ([2693c32](https://github.com/iotaledger/twin-framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
|
|
1218
|
+
* support indexed properties set in objects ([b9c001d](https://github.com/iotaledger/twin-framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
|
|
1219
|
+
* use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
1181
1220
|
|
|
1182
|
-
## [0.0.1-next.61](https://github.com/
|
|
1221
|
+
## [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)
|
|
1183
1222
|
|
|
1184
1223
|
|
|
1185
1224
|
### Features
|
|
1186
1225
|
|
|
1187
|
-
* support indexed properties set in objects ([b9c001d](https://github.com/
|
|
1226
|
+
* support indexed properties set in objects ([b9c001d](https://github.com/iotaledger/twin-framework/commit/b9c001dc4614f6ff7486f4370735a553613d823a))
|
|
1188
1227
|
|
|
1189
|
-
## [0.0.1-next.60](https://github.com/
|
|
1228
|
+
## [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)
|
|
1190
1229
|
|
|
1191
1230
|
|
|
1192
1231
|
### Features
|
|
1193
1232
|
|
|
1194
|
-
* improve error display in CLI ([94b6ca8](https://github.com/
|
|
1233
|
+
* improve error display in CLI ([94b6ca8](https://github.com/iotaledger/twin-framework/commit/94b6ca8bdcfe3ca7671c4095b436ea7bddaae98e))
|
|
1195
1234
|
|
|
1196
|
-
## [0.0.1-next.59](https://github.com/
|
|
1235
|
+
## [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)
|
|
1197
1236
|
|
|
1198
1237
|
|
|
1199
1238
|
### Features
|
|
1200
1239
|
|
|
1201
|
-
* propagate includeStackTrace on error conversion ([8471cbb](https://github.com/
|
|
1202
|
-
* propagate includeStackTrace on error conversion ([818337d](https://github.com/
|
|
1240
|
+
* propagate includeStackTrace on error conversion ([8471cbb](https://github.com/iotaledger/twin-framework/commit/8471cbb71f8fc98247a0e92126c438c1a8b04d9b))
|
|
1241
|
+
* propagate includeStackTrace on error conversion ([818337d](https://github.com/iotaledger/twin-framework/commit/818337d50d14bf5a7e8b3204649aa7527115cca9))
|
|
1203
1242
|
|
|
1204
|
-
## [0.0.1-next.58](https://github.com/
|
|
1243
|
+
## [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)
|
|
1205
1244
|
|
|
1206
1245
|
|
|
1207
1246
|
### Miscellaneous Chores
|
|
1208
1247
|
|
|
1209
1248
|
* **core:** Synchronize repo versions
|
|
1210
1249
|
|
|
1211
|
-
## [0.0.1-next.57](https://github.com/
|
|
1250
|
+
## [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)
|
|
1212
1251
|
|
|
1213
1252
|
|
|
1214
1253
|
### Features
|
|
1215
1254
|
|
|
1216
|
-
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/
|
|
1255
|
+
* add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
|
|
1217
1256
|
|
|
1218
|
-
## [0.0.1-next.56](https://github.com/
|
|
1257
|
+
## [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)
|
|
1219
1258
|
|
|
1220
1259
|
|
|
1221
1260
|
### Features
|
|
1222
1261
|
|
|
1223
|
-
* add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/
|
|
1262
|
+
* add ObjectOrArray and ArrayHelper methods ([0ac9077](https://github.com/iotaledger/twin-framework/commit/0ac907764d64b38ad1b04b0e9c3027055b527559))
|
|
1224
1263
|
|
|
1225
|
-
## [0.0.1-next.55](https://github.com/
|
|
1264
|
+
## [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)
|
|
1226
1265
|
|
|
1227
1266
|
|
|
1228
1267
|
### Miscellaneous Chores
|
|
1229
1268
|
|
|
1230
1269
|
* **core:** Synchronize repo versions
|
|
1231
1270
|
|
|
1232
|
-
## [0.0.1-next.54](https://github.com/
|
|
1271
|
+
## [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)
|
|
1233
1272
|
|
|
1234
1273
|
|
|
1235
1274
|
### Miscellaneous Chores
|
|
1236
1275
|
|
|
1237
1276
|
* **core:** Synchronize repo versions
|
|
1238
1277
|
|
|
1239
|
-
## [0.0.1-next.53](https://github.com/
|
|
1278
|
+
## [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)
|
|
1240
1279
|
|
|
1241
1280
|
|
|
1242
1281
|
### Features
|
|
1243
1282
|
|
|
1244
|
-
* async cache don't cache failures unless requested ([658ec4b](https://github.com/
|
|
1283
|
+
* async cache don't cache failures unless requested ([658ec4b](https://github.com/iotaledger/twin-framework/commit/658ec4b67a58a075de4702a3886d151e25ad3ddc))
|
|
1245
1284
|
|
|
1246
|
-
## [0.0.1-next.52](https://github.com/
|
|
1285
|
+
## [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)
|
|
1247
1286
|
|
|
1248
1287
|
|
|
1249
1288
|
### Features
|
|
1250
1289
|
|
|
1251
|
-
* use new shared store mechanism ([#131](https://github.com/
|
|
1290
|
+
* use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
|
|
1252
1291
|
|
|
1253
|
-
## [0.0.1-next.51](https://github.com/
|
|
1292
|
+
## [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)
|
|
1254
1293
|
|
|
1255
1294
|
|
|
1256
1295
|
### Features
|
|
1257
1296
|
|
|
1258
|
-
* simplify async set ([#121](https://github.com/
|
|
1297
|
+
* simplify async set ([#121](https://github.com/iotaledger/twin-framework/issues/121)) ([2693c32](https://github.com/iotaledger/twin-framework/commit/2693c325266fd1a0aede6f1336c8b254c981a9ca))
|
|
1259
1298
|
|
|
1260
|
-
## [0.0.1-next.50](https://github.com/
|
|
1299
|
+
## [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)
|
|
1261
1300
|
|
|
1262
1301
|
|
|
1263
1302
|
### Features
|
|
1264
1303
|
|
|
1265
|
-
* add set method for async caches ([ba34b55](https://github.com/
|
|
1304
|
+
* add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
|
|
1266
1305
|
|
|
1267
1306
|
## 0.0.1-next.49
|
|
1268
1307
|
|