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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/README.md +1 -1
  2. package/dist/es/index.js +2 -0
  3. package/dist/es/index.js.map +1 -1
  4. package/dist/es/models/IFetchOptions.js.map +1 -1
  5. package/dist/es/models/IHttpLinkHeader.js +2 -0
  6. package/dist/es/models/IHttpLinkHeader.js.map +1 -0
  7. package/dist/es/models/headerTypes.js +129 -1
  8. package/dist/es/models/headerTypes.js.map +1 -1
  9. package/dist/es/models/httpLinkRelType.js +130 -0
  10. package/dist/es/models/httpLinkRelType.js.map +1 -0
  11. package/dist/es/models/httpMethod.js +36 -0
  12. package/dist/es/models/httpMethod.js.map +1 -1
  13. package/dist/es/models/httpStatusCode.js +63 -0
  14. package/dist/es/models/httpStatusCode.js.map +1 -1
  15. package/dist/es/models/mimeTypes.js +170 -1
  16. package/dist/es/models/mimeTypes.js.map +1 -1
  17. package/dist/es/utils/fetchHelper.js +1 -1
  18. package/dist/es/utils/fetchHelper.js.map +1 -1
  19. package/dist/es/utils/headerHelper.js +383 -1
  20. package/dist/es/utils/headerHelper.js.map +1 -1
  21. package/dist/es/utils/mimeTypeHelper.js +42 -1
  22. package/dist/es/utils/mimeTypeHelper.js.map +1 -1
  23. package/dist/types/index.d.ts +2 -0
  24. package/dist/types/models/IFetchOptions.d.ts +1 -1
  25. package/dist/types/models/IHttpLinkHeader.d.ts +26 -0
  26. package/dist/types/models/headerTypes.d.ts +128 -0
  27. package/dist/types/models/httpLinkRelType.d.ts +130 -0
  28. package/dist/types/models/httpMethod.d.ts +36 -0
  29. package/dist/types/models/httpStatusCode.d.ts +63 -0
  30. package/dist/types/models/mimeTypes.d.ts +169 -0
  31. package/dist/types/utils/headerHelper.d.ts +115 -0
  32. package/docs/changelog.md +1031 -169
  33. package/docs/examples.md +108 -1
  34. package/docs/reference/classes/CookieHelper.md +6 -6
  35. package/docs/reference/classes/FetchError.md +453 -1
  36. package/docs/reference/classes/FetchHelper.md +12 -12
  37. package/docs/reference/classes/HeaderHelper.md +385 -2
  38. package/docs/reference/classes/Jwk.md +6 -6
  39. package/docs/reference/classes/Jws.md +3 -3
  40. package/docs/reference/classes/Jwt.md +17 -17
  41. package/docs/reference/classes/MimeTypeHelper.md +4 -4
  42. package/docs/reference/index.md +3 -0
  43. package/docs/reference/interfaces/IFetchOptions.md +12 -14
  44. package/docs/reference/interfaces/IHttpHeaders.md +1 -1
  45. package/docs/reference/interfaces/IHttpLinkHeader.md +43 -0
  46. package/docs/reference/type-aliases/HttpLinkRelType.md +5 -0
  47. package/docs/reference/variables/HeaderTypes.md +280 -8
  48. package/docs/reference/variables/HttpLinkRelType.md +191 -0
  49. package/docs/reference/variables/HttpMethod.md +63 -9
  50. package/docs/reference/variables/HttpStatusCode.md +314 -62
  51. package/docs/reference/variables/MimeTypes.md +279 -23
  52. package/locales/en.json +4 -3
  53. package/package.json +8 -8
package/docs/changelog.md CHANGED
@@ -1,11 +1,873 @@
1
- # @twin.org/web - Changelog
1
+ # Changelog
2
2
 
3
- ## [0.0.3-next.9](https://github.com/twinfoundation/framework/compare/web-v0.0.3-next.8...web-v0.0.3-next.9) (2026-01-05)
3
+ ## [0.0.4-next.1](https://github.com/iotaledger/twin-framework/compare/web-v0.0.4-next.0...web-v0.0.4-next.1) (2026-05-27)
4
4
 
5
5
 
6
6
  ### Features
7
7
 
8
- * add cookie helper method to web package ([#217](https://github.com/twinfoundation/framework/issues/217)) ([043c632](https://github.com/twinfoundation/framework/commit/043c63298bff96f70bdefed56b82afef42ec3f44))
8
+ * add additional header types ([#222](https://github.com/iotaledger/twin-framework/issues/222)) ([05f01cf](https://github.com/iotaledger/twin-framework/commit/05f01cf34b7bcec561ee989f679281b1cacdf032))
9
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
10
+ * add cookie helper method to web package ([#217](https://github.com/iotaledger/twin-framework/issues/217)) ([043c632](https://github.com/iotaledger/twin-framework/commit/043c63298bff96f70bdefed56b82afef42ec3f44))
11
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
12
+ * add header helper for common bearer support ([0c940b2](https://github.com/iotaledger/twin-framework/commit/0c940b29cccf0c3bb5b4aa8a01f1998010e44d51))
13
+ * add IEntitySchemaDiff and entitySchemaDiff utility ([#282](https://github.com/iotaledger/twin-framework/issues/282)) ([9d63e94](https://github.com/iotaledger/twin-framework/commit/9d63e94021ee2ffc138004ee68cf53d08a6b17f9))
14
+ * add jwk enc property overrides ([18b6309](https://github.com/iotaledger/twin-framework/commit/18b63092a386b56ea7fcd7e12865ac6e1b47cc1e))
15
+ * add kid method to Jwk ([bc9239e](https://github.com/iotaledger/twin-framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
16
+ * add Link header array support ([aff32a3](https://github.com/iotaledger/twin-framework/commit/aff32a3ff8ad3d076cade7c889444220706bfb1e))
17
+ * add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
18
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
19
+ * add/update http and mime types ([#229](https://github.com/iotaledger/twin-framework/issues/229)) ([d50154a](https://github.com/iotaledger/twin-framework/commit/d50154a484711b67feb42ea20a94e4415e53d392))
20
+ * adding link header helper ([#225](https://github.com/iotaledger/twin-framework/issues/225)) ([703c072](https://github.com/iotaledger/twin-framework/commit/703c0725aceac6b6ec0c4fa729ef832d12fb3fd7))
21
+ * additional http header extraction ([#262](https://github.com/iotaledger/twin-framework/issues/262)) ([124fa3f](https://github.com/iotaledger/twin-framework/commit/124fa3fdd118ed17f973d4b46842f5b7f35365c2))
22
+ * additional http link feature support ([b68b4cc](https://github.com/iotaledger/twin-framework/commit/b68b4cc6a6e3cf02f91e794353714e26a49fe66c))
23
+ * additional nameof operators ([a5aab60](https://github.com/iotaledger/twin-framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
24
+ * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/iotaledger/twin-framework/issues/136)) ([46a5af1](https://github.com/iotaledger/twin-framework/commit/46a5af127192d7048068275d14f555f09add3642))
25
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
26
+ * improve bearer creation and extraction ([b9ddd6d](https://github.com/iotaledger/twin-framework/commit/b9ddd6dae0cb558e2227f0ec5e9cd21f85957400))
27
+ * improve bearer creation and extraction ([29a347a](https://github.com/iotaledger/twin-framework/commit/29a347a760cb3bc5eb819112e84f1ac99430e72b))
28
+ * improve signatures ([cdd24be](https://github.com/iotaledger/twin-framework/commit/cdd24be6fb898d33955b6f2f93c3ddbd73582269))
29
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
30
+ * propagate includeStackTrace on error conversion ([098fc72](https://github.com/iotaledger/twin-framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
31
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
32
+ * typescript 6 update ([1d10f31](https://github.com/iotaledger/twin-framework/commit/1d10f31e6516ec622773f45e88af82fe749b384a))
33
+ * update dependencies ([4da77ab](https://github.com/iotaledger/twin-framework/commit/4da77ab30f499e52825ac5a76f51436ceb59c26e))
34
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
35
+ * use body on patch verb ([28627e5](https://github.com/iotaledger/twin-framework/commit/28627e527d033d433acefe0e9fde52ba88c0d047))
36
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
37
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
38
+
39
+
40
+ ### Bug Fixes
41
+
42
+ * ensure __decorate is defined for decorators ([103a563](https://github.com/iotaledger/twin-framework/commit/103a563ce01ebdef6240d2e590e7b026e8692684))
43
+ * wrap inner error within FetchError / 2 ([#134](https://github.com/iotaledger/twin-framework/issues/134)) ([2ddb101](https://github.com/iotaledger/twin-framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
44
+
45
+
46
+ ### Dependencies
47
+
48
+ * The following workspace dependencies were updated
49
+ * dependencies
50
+ * @twin.org/core bumped from 0.0.4-next.0 to 0.0.4-next.1
51
+ * @twin.org/crypto bumped from 0.0.4-next.0 to 0.0.4-next.1
52
+ * @twin.org/nameof bumped from 0.0.4-next.0 to 0.0.4-next.1
53
+ * devDependencies
54
+ * @twin.org/nameof-transformer bumped from 0.0.4-next.0 to 0.0.4-next.1
55
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.4-next.0 to 0.0.4-next.1
56
+ * @twin.org/validate-locales bumped from 0.0.4-next.0 to 0.0.4-next.1
57
+
58
+ ## [0.0.3](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3...web-v0.0.3) (2026-05-27)
59
+
60
+
61
+ ### Features
62
+
63
+ * release to production ([b24cba1](https://github.com/iotaledger/twin-framework/commit/b24cba1b6a969278d638e632590602ec881e49fb))
64
+ * release to production ([787287d](https://github.com/iotaledger/twin-framework/commit/787287d06ea8319657401589d61fff369310c422))
65
+ * release to production ([53f4843](https://github.com/iotaledger/twin-framework/commit/53f484326b2851d7a506d2620db24c4a65cee7b3))
66
+ * release to production ([56cda4d](https://github.com/iotaledger/twin-framework/commit/56cda4da93e978c5be19ec7cfd421ae2a7fe4147))
67
+ * release to production ([f7c6586](https://github.com/iotaledger/twin-framework/commit/f7c6586f6976b903b647b4c5ac5ad9421e0c9051))
68
+ * release to production ([829d53d](https://github.com/iotaledger/twin-framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
69
+ * release to production ([5cf3a76](https://github.com/iotaledger/twin-framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
70
+ * release to production ([#330](https://github.com/iotaledger/twin-framework/issues/330)) ([d73f565](https://github.com/iotaledger/twin-framework/commit/d73f565588d156d23ef49b2a5718973756f7a696))
71
+
72
+
73
+ ### Miscellaneous Chores
74
+
75
+ * release to production ([63cae24](https://github.com/iotaledger/twin-framework/commit/63cae2401f6c11f93b2a01260b665064e8bd28e0))
76
+
77
+ ## [0.0.3-next.47](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.46...web-v0.0.3-next.47) (2026-05-25)
78
+
79
+
80
+ ### Miscellaneous Chores
81
+
82
+ * **web:** Synchronize repo versions
83
+
84
+
85
+ ### Dependencies
86
+
87
+ * The following workspace dependencies were updated
88
+ * dependencies
89
+ * @twin.org/core bumped from 0.0.3-next.46 to 0.0.3-next.47
90
+ * @twin.org/crypto bumped from 0.0.3-next.46 to 0.0.3-next.47
91
+ * @twin.org/nameof bumped from 0.0.3-next.46 to 0.0.3-next.47
92
+ * devDependencies
93
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.46 to 0.0.3-next.47
94
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.46 to 0.0.3-next.47
95
+ * @twin.org/validate-locales bumped from 0.0.3-next.46 to 0.0.3-next.47
96
+
97
+ ## [0.0.3-next.46](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.45...web-v0.0.3-next.46) (2026-05-22)
98
+
99
+
100
+ ### Miscellaneous Chores
101
+
102
+ * **web:** Synchronize repo versions
103
+
104
+
105
+ ### Dependencies
106
+
107
+ * The following workspace dependencies were updated
108
+ * dependencies
109
+ * @twin.org/core bumped from 0.0.3-next.45 to 0.0.3-next.46
110
+ * @twin.org/crypto bumped from 0.0.3-next.45 to 0.0.3-next.46
111
+ * @twin.org/nameof bumped from 0.0.3-next.45 to 0.0.3-next.46
112
+ * devDependencies
113
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.45 to 0.0.3-next.46
114
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.45 to 0.0.3-next.46
115
+ * @twin.org/validate-locales bumped from 0.0.3-next.45 to 0.0.3-next.46
116
+
117
+ ## [0.0.3-next.45](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.44...web-v0.0.3-next.45) (2026-05-21)
118
+
119
+
120
+ ### Miscellaneous Chores
121
+
122
+ * **web:** Synchronize repo versions
123
+
124
+
125
+ ### Dependencies
126
+
127
+ * The following workspace dependencies were updated
128
+ * dependencies
129
+ * @twin.org/core bumped from 0.0.3-next.44 to 0.0.3-next.45
130
+ * @twin.org/crypto bumped from 0.0.3-next.44 to 0.0.3-next.45
131
+ * @twin.org/nameof bumped from 0.0.3-next.44 to 0.0.3-next.45
132
+ * devDependencies
133
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.44 to 0.0.3-next.45
134
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.44 to 0.0.3-next.45
135
+ * @twin.org/validate-locales bumped from 0.0.3-next.44 to 0.0.3-next.45
136
+
137
+ ## [0.0.3-next.44](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.43...web-v0.0.3-next.44) (2026-05-19)
138
+
139
+
140
+ ### Features
141
+
142
+ * update dependencies ([4da77ab](https://github.com/iotaledger/twin-framework/commit/4da77ab30f499e52825ac5a76f51436ceb59c26e))
143
+
144
+
145
+ ### Dependencies
146
+
147
+ * The following workspace dependencies were updated
148
+ * dependencies
149
+ * @twin.org/core bumped from 0.0.3-next.43 to 0.0.3-next.44
150
+ * @twin.org/crypto bumped from 0.0.3-next.43 to 0.0.3-next.44
151
+ * @twin.org/nameof bumped from 0.0.3-next.43 to 0.0.3-next.44
152
+ * devDependencies
153
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.43 to 0.0.3-next.44
154
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.43 to 0.0.3-next.44
155
+ * @twin.org/validate-locales bumped from 0.0.3-next.43 to 0.0.3-next.44
156
+
157
+ ## [0.0.3-next.43](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.42...web-v0.0.3-next.43) (2026-05-18)
158
+
159
+
160
+ ### Miscellaneous Chores
161
+
162
+ * **web:** Synchronize repo versions
163
+
164
+
165
+ ### Dependencies
166
+
167
+ * The following workspace dependencies were updated
168
+ * dependencies
169
+ * @twin.org/core bumped from 0.0.3-next.42 to 0.0.3-next.43
170
+ * @twin.org/crypto bumped from 0.0.3-next.42 to 0.0.3-next.43
171
+ * @twin.org/nameof bumped from 0.0.3-next.42 to 0.0.3-next.43
172
+ * devDependencies
173
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.42 to 0.0.3-next.43
174
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.42 to 0.0.3-next.43
175
+ * @twin.org/validate-locales bumped from 0.0.3-next.42 to 0.0.3-next.43
176
+
177
+ ## [0.0.3-next.42](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.41...web-v0.0.3-next.42) (2026-05-15)
178
+
179
+
180
+ ### Miscellaneous Chores
181
+
182
+ * **web:** Synchronize repo versions
183
+
184
+
185
+ ### Dependencies
186
+
187
+ * The following workspace dependencies were updated
188
+ * dependencies
189
+ * @twin.org/core bumped from 0.0.3-next.41 to 0.0.3-next.42
190
+ * @twin.org/crypto bumped from 0.0.3-next.41 to 0.0.3-next.42
191
+ * @twin.org/nameof bumped from 0.0.3-next.41 to 0.0.3-next.42
192
+ * devDependencies
193
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.41 to 0.0.3-next.42
194
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.41 to 0.0.3-next.42
195
+ * @twin.org/validate-locales bumped from 0.0.3-next.41 to 0.0.3-next.42
196
+
197
+ ## [0.0.3-next.41](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.40...web-v0.0.3-next.41) (2026-05-13)
198
+
199
+
200
+ ### Miscellaneous Chores
201
+
202
+ * **web:** Synchronize repo versions
203
+
204
+
205
+ ### Dependencies
206
+
207
+ * The following workspace dependencies were updated
208
+ * dependencies
209
+ * @twin.org/core bumped from 0.0.3-next.40 to 0.0.3-next.41
210
+ * @twin.org/crypto bumped from 0.0.3-next.40 to 0.0.3-next.41
211
+ * @twin.org/nameof bumped from 0.0.3-next.40 to 0.0.3-next.41
212
+ * devDependencies
213
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.40 to 0.0.3-next.41
214
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.40 to 0.0.3-next.41
215
+ * @twin.org/validate-locales bumped from 0.0.3-next.40 to 0.0.3-next.41
216
+
217
+ ## [0.0.3-next.40](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.39...web-v0.0.3-next.40) (2026-05-13)
218
+
219
+
220
+ ### Miscellaneous Chores
221
+
222
+ * **web:** Synchronize repo versions
223
+
224
+
225
+ ### Dependencies
226
+
227
+ * The following workspace dependencies were updated
228
+ * dependencies
229
+ * @twin.org/core bumped from 0.0.3-next.39 to 0.0.3-next.40
230
+ * @twin.org/crypto bumped from 0.0.3-next.39 to 0.0.3-next.40
231
+ * @twin.org/nameof bumped from 0.0.3-next.39 to 0.0.3-next.40
232
+ * devDependencies
233
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.39 to 0.0.3-next.40
234
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.39 to 0.0.3-next.40
235
+ * @twin.org/validate-locales bumped from 0.0.3-next.39 to 0.0.3-next.40
236
+
237
+ ## [0.0.3-next.39](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.38...web-v0.0.3-next.39) (2026-05-13)
238
+
239
+
240
+ ### Features
241
+
242
+ * improve signatures ([cdd24be](https://github.com/iotaledger/twin-framework/commit/cdd24be6fb898d33955b6f2f93c3ddbd73582269))
243
+
244
+
245
+ ### Dependencies
246
+
247
+ * The following workspace dependencies were updated
248
+ * dependencies
249
+ * @twin.org/core bumped from 0.0.3-next.38 to 0.0.3-next.39
250
+ * @twin.org/crypto bumped from 0.0.3-next.38 to 0.0.3-next.39
251
+ * @twin.org/nameof bumped from 0.0.3-next.38 to 0.0.3-next.39
252
+ * devDependencies
253
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.38 to 0.0.3-next.39
254
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.38 to 0.0.3-next.39
255
+ * @twin.org/validate-locales bumped from 0.0.3-next.38 to 0.0.3-next.39
256
+
257
+ ## [0.0.3-next.38](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.37...web-v0.0.3-next.38) (2026-05-11)
258
+
259
+
260
+ ### Features
261
+
262
+ * typescript 6 update ([1d10f31](https://github.com/iotaledger/twin-framework/commit/1d10f31e6516ec622773f45e88af82fe749b384a))
263
+
264
+
265
+ ### Dependencies
266
+
267
+ * The following workspace dependencies were updated
268
+ * dependencies
269
+ * @twin.org/core bumped from 0.0.3-next.37 to 0.0.3-next.38
270
+ * @twin.org/crypto bumped from 0.0.3-next.37 to 0.0.3-next.38
271
+ * @twin.org/nameof bumped from 0.0.3-next.37 to 0.0.3-next.38
272
+ * devDependencies
273
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.37 to 0.0.3-next.38
274
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.37 to 0.0.3-next.38
275
+ * @twin.org/validate-locales bumped from 0.0.3-next.37 to 0.0.3-next.38
276
+
277
+ ## [0.0.3-next.37](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.36...web-v0.0.3-next.37) (2026-05-07)
278
+
279
+
280
+ ### Features
281
+
282
+ * add IEntitySchemaDiff and entitySchemaDiff utility ([#282](https://github.com/iotaledger/twin-framework/issues/282)) ([9d63e94](https://github.com/iotaledger/twin-framework/commit/9d63e94021ee2ffc138004ee68cf53d08a6b17f9))
283
+
284
+
285
+ ### Dependencies
286
+
287
+ * The following workspace dependencies were updated
288
+ * dependencies
289
+ * @twin.org/core bumped from 0.0.3-next.36 to 0.0.3-next.37
290
+ * @twin.org/crypto bumped from 0.0.3-next.36 to 0.0.3-next.37
291
+ * @twin.org/nameof bumped from 0.0.3-next.36 to 0.0.3-next.37
292
+ * devDependencies
293
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.36 to 0.0.3-next.37
294
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.36 to 0.0.3-next.37
295
+ * @twin.org/validate-locales bumped from 0.0.3-next.36 to 0.0.3-next.37
296
+
297
+ ## [0.0.3-next.36](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.35...web-v0.0.3-next.36) (2026-05-07)
298
+
299
+
300
+ ### Miscellaneous Chores
301
+
302
+ * **web:** Synchronize repo versions
303
+
304
+
305
+ ### Dependencies
306
+
307
+ * The following workspace dependencies were updated
308
+ * dependencies
309
+ * @twin.org/core bumped from 0.0.3-next.35 to 0.0.3-next.36
310
+ * @twin.org/crypto bumped from 0.0.3-next.35 to 0.0.3-next.36
311
+ * @twin.org/nameof bumped from 0.0.3-next.35 to 0.0.3-next.36
312
+ * devDependencies
313
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.35 to 0.0.3-next.36
314
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.35 to 0.0.3-next.36
315
+ * @twin.org/validate-locales bumped from 0.0.3-next.35 to 0.0.3-next.36
316
+
317
+ ## [0.0.3-next.35](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.34...web-v0.0.3-next.35) (2026-05-06)
318
+
319
+
320
+ ### Miscellaneous Chores
321
+
322
+ * **web:** Synchronize repo versions
323
+
324
+
325
+ ### Dependencies
326
+
327
+ * The following workspace dependencies were updated
328
+ * dependencies
329
+ * @twin.org/core bumped from 0.0.3-next.34 to 0.0.3-next.35
330
+ * @twin.org/crypto bumped from 0.0.3-next.34 to 0.0.3-next.35
331
+ * @twin.org/nameof bumped from 0.0.3-next.34 to 0.0.3-next.35
332
+ * devDependencies
333
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.34 to 0.0.3-next.35
334
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.34 to 0.0.3-next.35
335
+ * @twin.org/validate-locales bumped from 0.0.3-next.34 to 0.0.3-next.35
336
+
337
+ ## [0.0.3-next.34](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.33...web-v0.0.3-next.34) (2026-05-06)
338
+
339
+
340
+ ### Miscellaneous Chores
341
+
342
+ * **web:** Synchronize repo versions
343
+
344
+
345
+ ### Dependencies
346
+
347
+ * The following workspace dependencies were updated
348
+ * dependencies
349
+ * @twin.org/core bumped from 0.0.3-next.33 to 0.0.3-next.34
350
+ * @twin.org/crypto bumped from 0.0.3-next.33 to 0.0.3-next.34
351
+ * @twin.org/nameof bumped from 0.0.3-next.33 to 0.0.3-next.34
352
+ * devDependencies
353
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.33 to 0.0.3-next.34
354
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.33 to 0.0.3-next.34
355
+ * @twin.org/validate-locales bumped from 0.0.3-next.33 to 0.0.3-next.34
356
+
357
+ ## [0.0.3-next.33](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.32...web-v0.0.3-next.33) (2026-05-05)
358
+
359
+
360
+ ### Miscellaneous Chores
361
+
362
+ * **web:** Synchronize repo versions
363
+
364
+
365
+ ### Dependencies
366
+
367
+ * The following workspace dependencies were updated
368
+ * dependencies
369
+ * @twin.org/core bumped from 0.0.3-next.32 to 0.0.3-next.33
370
+ * @twin.org/crypto bumped from 0.0.3-next.32 to 0.0.3-next.33
371
+ * @twin.org/nameof bumped from 0.0.3-next.32 to 0.0.3-next.33
372
+ * devDependencies
373
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.32 to 0.0.3-next.33
374
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.32 to 0.0.3-next.33
375
+ * @twin.org/validate-locales bumped from 0.0.3-next.32 to 0.0.3-next.33
376
+
377
+ ## [0.0.3-next.32](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.31...web-v0.0.3-next.32) (2026-04-30)
378
+
379
+
380
+ ### Features
381
+
382
+ * use body on patch verb ([28627e5](https://github.com/iotaledger/twin-framework/commit/28627e527d033d433acefe0e9fde52ba88c0d047))
383
+
384
+
385
+ ### Dependencies
386
+
387
+ * The following workspace dependencies were updated
388
+ * dependencies
389
+ * @twin.org/core bumped from 0.0.3-next.31 to 0.0.3-next.32
390
+ * @twin.org/crypto bumped from 0.0.3-next.31 to 0.0.3-next.32
391
+ * @twin.org/nameof bumped from 0.0.3-next.31 to 0.0.3-next.32
392
+ * devDependencies
393
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.31 to 0.0.3-next.32
394
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.31 to 0.0.3-next.32
395
+ * @twin.org/validate-locales bumped from 0.0.3-next.31 to 0.0.3-next.32
396
+
397
+ ## [0.0.3-next.31](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.30...web-v0.0.3-next.31) (2026-04-14)
398
+
399
+
400
+ ### Miscellaneous Chores
401
+
402
+ * **web:** Synchronize repo versions
403
+
404
+
405
+ ### Dependencies
406
+
407
+ * The following workspace dependencies were updated
408
+ * dependencies
409
+ * @twin.org/core bumped from 0.0.3-next.30 to 0.0.3-next.31
410
+ * @twin.org/crypto bumped from 0.0.3-next.30 to 0.0.3-next.31
411
+ * @twin.org/nameof bumped from 0.0.3-next.30 to 0.0.3-next.31
412
+ * devDependencies
413
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.30 to 0.0.3-next.31
414
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.30 to 0.0.3-next.31
415
+ * @twin.org/validate-locales bumped from 0.0.3-next.30 to 0.0.3-next.31
416
+
417
+ ## [0.0.3-next.30](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.29...web-v0.0.3-next.30) (2026-04-14)
418
+
419
+
420
+ ### Miscellaneous Chores
421
+
422
+ * **web:** Synchronize repo versions
423
+
424
+
425
+ ### Dependencies
426
+
427
+ * The following workspace dependencies were updated
428
+ * dependencies
429
+ * @twin.org/core bumped from 0.0.3-next.29 to 0.0.3-next.30
430
+ * @twin.org/crypto bumped from 0.0.3-next.29 to 0.0.3-next.30
431
+ * @twin.org/nameof bumped from 0.0.3-next.29 to 0.0.3-next.30
432
+ * devDependencies
433
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.29 to 0.0.3-next.30
434
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.29 to 0.0.3-next.30
435
+ * @twin.org/validate-locales bumped from 0.0.3-next.29 to 0.0.3-next.30
436
+
437
+ ## [0.0.3-next.29](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.28...web-v0.0.3-next.29) (2026-04-14)
438
+
439
+
440
+ ### Features
441
+
442
+ * additional http header extraction ([#262](https://github.com/iotaledger/twin-framework/issues/262)) ([124fa3f](https://github.com/iotaledger/twin-framework/commit/124fa3fdd118ed17f973d4b46842f5b7f35365c2))
443
+
444
+
445
+ ### Dependencies
446
+
447
+ * The following workspace dependencies were updated
448
+ * dependencies
449
+ * @twin.org/core bumped from 0.0.3-next.28 to 0.0.3-next.29
450
+ * @twin.org/crypto bumped from 0.0.3-next.28 to 0.0.3-next.29
451
+ * @twin.org/nameof bumped from 0.0.3-next.28 to 0.0.3-next.29
452
+ * devDependencies
453
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.28 to 0.0.3-next.29
454
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.28 to 0.0.3-next.29
455
+ * @twin.org/validate-locales bumped from 0.0.3-next.28 to 0.0.3-next.29
456
+
457
+ ## [0.0.3-next.28](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.27...web-v0.0.3-next.28) (2026-03-27)
458
+
459
+
460
+ ### Miscellaneous Chores
461
+
462
+ * **web:** Synchronize repo versions
463
+
464
+
465
+ ### Dependencies
466
+
467
+ * The following workspace dependencies were updated
468
+ * dependencies
469
+ * @twin.org/core bumped from 0.0.3-next.27 to 0.0.3-next.28
470
+ * @twin.org/crypto bumped from 0.0.3-next.27 to 0.0.3-next.28
471
+ * @twin.org/nameof bumped from 0.0.3-next.27 to 0.0.3-next.28
472
+ * devDependencies
473
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.27 to 0.0.3-next.28
474
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.27 to 0.0.3-next.28
475
+ * @twin.org/validate-locales bumped from 0.0.3-next.27 to 0.0.3-next.28
476
+
477
+ ## [0.0.3-next.27](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.26...web-v0.0.3-next.27) (2026-03-27)
478
+
479
+
480
+ ### Miscellaneous Chores
481
+
482
+ * **web:** Synchronize repo versions
483
+
484
+
485
+ ### Dependencies
486
+
487
+ * The following workspace dependencies were updated
488
+ * dependencies
489
+ * @twin.org/core bumped from 0.0.3-next.26 to 0.0.3-next.27
490
+ * @twin.org/crypto bumped from 0.0.3-next.26 to 0.0.3-next.27
491
+ * @twin.org/nameof bumped from 0.0.3-next.26 to 0.0.3-next.27
492
+ * devDependencies
493
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.26 to 0.0.3-next.27
494
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.26 to 0.0.3-next.27
495
+ * @twin.org/validate-locales bumped from 0.0.3-next.26 to 0.0.3-next.27
496
+
497
+ ## [0.0.3-next.26](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.25...web-v0.0.3-next.26) (2026-03-24)
498
+
499
+
500
+ ### Features
501
+
502
+ * additional http link feature support ([b68b4cc](https://github.com/iotaledger/twin-framework/commit/b68b4cc6a6e3cf02f91e794353714e26a49fe66c))
503
+
504
+
505
+ ### Dependencies
506
+
507
+ * The following workspace dependencies were updated
508
+ * dependencies
509
+ * @twin.org/core bumped from 0.0.3-next.25 to 0.0.3-next.26
510
+ * @twin.org/crypto bumped from 0.0.3-next.25 to 0.0.3-next.26
511
+ * @twin.org/nameof bumped from 0.0.3-next.25 to 0.0.3-next.26
512
+ * devDependencies
513
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.25 to 0.0.3-next.26
514
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.25 to 0.0.3-next.26
515
+ * @twin.org/validate-locales bumped from 0.0.3-next.25 to 0.0.3-next.26
516
+
517
+ ## [0.0.3-next.25](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.24...web-v0.0.3-next.25) (2026-03-23)
518
+
519
+
520
+ ### Miscellaneous Chores
521
+
522
+ * **web:** Synchronize repo versions
523
+
524
+
525
+ ### Dependencies
526
+
527
+ * The following workspace dependencies were updated
528
+ * dependencies
529
+ * @twin.org/core bumped from 0.0.3-next.24 to 0.0.3-next.25
530
+ * @twin.org/crypto bumped from 0.0.3-next.24 to 0.0.3-next.25
531
+ * @twin.org/nameof bumped from 0.0.3-next.24 to 0.0.3-next.25
532
+ * devDependencies
533
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.24 to 0.0.3-next.25
534
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.24 to 0.0.3-next.25
535
+ * @twin.org/validate-locales bumped from 0.0.3-next.24 to 0.0.3-next.25
536
+
537
+ ## [0.0.3-next.24](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.23...web-v0.0.3-next.24) (2026-03-19)
538
+
539
+
540
+ ### Bug Fixes
541
+
542
+ * ensure __decorate is defined for decorators ([103a563](https://github.com/iotaledger/twin-framework/commit/103a563ce01ebdef6240d2e590e7b026e8692684))
543
+
544
+
545
+ ### Dependencies
546
+
547
+ * The following workspace dependencies were updated
548
+ * dependencies
549
+ * @twin.org/core bumped from 0.0.3-next.23 to 0.0.3-next.24
550
+ * @twin.org/crypto bumped from 0.0.3-next.23 to 0.0.3-next.24
551
+ * @twin.org/nameof bumped from 0.0.3-next.23 to 0.0.3-next.24
552
+ * devDependencies
553
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.23 to 0.0.3-next.24
554
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.23 to 0.0.3-next.24
555
+ * @twin.org/validate-locales bumped from 0.0.3-next.23 to 0.0.3-next.24
556
+
557
+ ## [0.0.3-next.23](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.22...web-v0.0.3-next.23) (2026-03-17)
558
+
559
+
560
+ ### Miscellaneous Chores
561
+
562
+ * **web:** Synchronize repo versions
563
+
564
+
565
+ ### Dependencies
566
+
567
+ * The following workspace dependencies were updated
568
+ * dependencies
569
+ * @twin.org/core bumped from 0.0.3-next.22 to 0.0.3-next.23
570
+ * @twin.org/crypto bumped from 0.0.3-next.22 to 0.0.3-next.23
571
+ * @twin.org/nameof bumped from 0.0.3-next.22 to 0.0.3-next.23
572
+ * devDependencies
573
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.22 to 0.0.3-next.23
574
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.22 to 0.0.3-next.23
575
+ * @twin.org/validate-locales bumped from 0.0.3-next.22 to 0.0.3-next.23
576
+
577
+ ## [0.0.3-next.22](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.21...web-v0.0.3-next.22) (2026-02-26)
578
+
579
+
580
+ ### Miscellaneous Chores
581
+
582
+ * **web:** Synchronize repo versions
583
+
584
+
585
+ ### Dependencies
586
+
587
+ * The following workspace dependencies were updated
588
+ * dependencies
589
+ * @twin.org/core bumped from 0.0.3-next.21 to 0.0.3-next.22
590
+ * @twin.org/crypto bumped from 0.0.3-next.21 to 0.0.3-next.22
591
+ * @twin.org/nameof bumped from 0.0.3-next.21 to 0.0.3-next.22
592
+ * devDependencies
593
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.21 to 0.0.3-next.22
594
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.21 to 0.0.3-next.22
595
+ * @twin.org/validate-locales bumped from 0.0.3-next.21 to 0.0.3-next.22
596
+
597
+ ## [0.0.3-next.21](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.20...web-v0.0.3-next.21) (2026-02-26)
598
+
599
+
600
+ ### Features
601
+
602
+ * add additional header types ([#222](https://github.com/iotaledger/twin-framework/issues/222)) ([05f01cf](https://github.com/iotaledger/twin-framework/commit/05f01cf34b7bcec561ee989f679281b1cacdf032))
603
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
604
+ * add cookie helper method to web package ([#217](https://github.com/iotaledger/twin-framework/issues/217)) ([043c632](https://github.com/iotaledger/twin-framework/commit/043c63298bff96f70bdefed56b82afef42ec3f44))
605
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
606
+ * add header helper for common bearer support ([0c940b2](https://github.com/iotaledger/twin-framework/commit/0c940b29cccf0c3bb5b4aa8a01f1998010e44d51))
607
+ * add jwk enc property overrides ([18b6309](https://github.com/iotaledger/twin-framework/commit/18b63092a386b56ea7fcd7e12865ac6e1b47cc1e))
608
+ * add kid method to Jwk ([bc9239e](https://github.com/iotaledger/twin-framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
609
+ * add Link header array support ([aff32a3](https://github.com/iotaledger/twin-framework/commit/aff32a3ff8ad3d076cade7c889444220706bfb1e))
610
+ * add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
611
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
612
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
613
+ * add/update http and mime types ([#229](https://github.com/iotaledger/twin-framework/issues/229)) ([d50154a](https://github.com/iotaledger/twin-framework/commit/d50154a484711b67feb42ea20a94e4415e53d392))
614
+ * adding link header helper ([#225](https://github.com/iotaledger/twin-framework/issues/225)) ([703c072](https://github.com/iotaledger/twin-framework/commit/703c0725aceac6b6ec0c4fa729ef832d12fb3fd7))
615
+ * additional nameof operators ([a5aab60](https://github.com/iotaledger/twin-framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
616
+ * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/iotaledger/twin-framework/issues/136)) ([46a5af1](https://github.com/iotaledger/twin-framework/commit/46a5af127192d7048068275d14f555f09add3642))
617
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
618
+ * improve bearer creation and extraction ([b9ddd6d](https://github.com/iotaledger/twin-framework/commit/b9ddd6dae0cb558e2227f0ec5e9cd21f85957400))
619
+ * improve bearer creation and extraction ([29a347a](https://github.com/iotaledger/twin-framework/commit/29a347a760cb3bc5eb819112e84f1ac99430e72b))
620
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
621
+ * propagate includeStackTrace on error conversion ([098fc72](https://github.com/iotaledger/twin-framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
622
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
623
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
624
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
625
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
626
+
627
+
628
+ ### Bug Fixes
629
+
630
+ * wrap inner error within FetchError / 2 ([#134](https://github.com/iotaledger/twin-framework/issues/134)) ([2ddb101](https://github.com/iotaledger/twin-framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
631
+
632
+
633
+ ### Dependencies
634
+
635
+ * The following workspace dependencies were updated
636
+ * dependencies
637
+ * @twin.org/core bumped from 0.0.3-next.20 to 0.0.3-next.21
638
+ * @twin.org/crypto bumped from 0.0.3-next.20 to 0.0.3-next.21
639
+ * @twin.org/nameof bumped from 0.0.3-next.20 to 0.0.3-next.21
640
+ * devDependencies
641
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.20 to 0.0.3-next.21
642
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.20 to 0.0.3-next.21
643
+ * @twin.org/validate-locales bumped from 0.0.3-next.20 to 0.0.3-next.21
644
+
645
+ ## [0.0.3-next.20](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.19...web-v0.0.3-next.20) (2026-02-26)
646
+
647
+
648
+ ### Miscellaneous Chores
649
+
650
+ * **web:** Synchronize repo versions
651
+
652
+
653
+ ### Dependencies
654
+
655
+ * The following workspace dependencies were updated
656
+ * dependencies
657
+ * @twin.org/core bumped from 0.0.3-next.19 to 0.0.3-next.20
658
+ * @twin.org/crypto bumped from 0.0.3-next.19 to 0.0.3-next.20
659
+ * @twin.org/nameof bumped from 0.0.3-next.19 to 0.0.3-next.20
660
+ * devDependencies
661
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.19 to 0.0.3-next.20
662
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.19 to 0.0.3-next.20
663
+ * @twin.org/validate-locales bumped from 0.0.3-next.19 to 0.0.3-next.20
664
+
665
+ ## [0.0.3-next.19](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.18...web-v0.0.3-next.19) (2026-02-26)
666
+
667
+
668
+ ### Miscellaneous Chores
669
+
670
+ * **web:** Synchronize repo versions
671
+
672
+
673
+ ### Dependencies
674
+
675
+ * The following workspace dependencies were updated
676
+ * dependencies
677
+ * @twin.org/core bumped from 0.0.3-next.18 to 0.0.3-next.19
678
+ * @twin.org/crypto bumped from 0.0.3-next.18 to 0.0.3-next.19
679
+ * @twin.org/nameof bumped from 0.0.3-next.18 to 0.0.3-next.19
680
+ * devDependencies
681
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.18 to 0.0.3-next.19
682
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.18 to 0.0.3-next.19
683
+ * @twin.org/validate-locales bumped from 0.0.3-next.18 to 0.0.3-next.19
684
+
685
+ ## [0.0.3-next.18](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.17...web-v0.0.3-next.18) (2026-02-23)
686
+
687
+
688
+ ### Miscellaneous Chores
689
+
690
+ * **web:** Synchronize repo versions
691
+
692
+
693
+ ### Dependencies
694
+
695
+ * The following workspace dependencies were updated
696
+ * dependencies
697
+ * @twin.org/core bumped from 0.0.3-next.17 to 0.0.3-next.18
698
+ * @twin.org/crypto bumped from 0.0.3-next.17 to 0.0.3-next.18
699
+ * @twin.org/nameof bumped from 0.0.3-next.17 to 0.0.3-next.18
700
+ * devDependencies
701
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.17 to 0.0.3-next.18
702
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.17 to 0.0.3-next.18
703
+ * @twin.org/validate-locales bumped from 0.0.3-next.17 to 0.0.3-next.18
704
+
705
+ ## [0.0.3-next.17](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.16...web-v0.0.3-next.17) (2026-02-09)
706
+
707
+
708
+ ### Miscellaneous Chores
709
+
710
+ * **web:** Synchronize repo versions
711
+
712
+
713
+ ### Dependencies
714
+
715
+ * The following workspace dependencies were updated
716
+ * dependencies
717
+ * @twin.org/core bumped from 0.0.3-next.16 to 0.0.3-next.17
718
+ * @twin.org/crypto bumped from 0.0.3-next.16 to 0.0.3-next.17
719
+ * @twin.org/nameof bumped from 0.0.3-next.16 to 0.0.3-next.17
720
+ * devDependencies
721
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.16 to 0.0.3-next.17
722
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.16 to 0.0.3-next.17
723
+ * @twin.org/validate-locales bumped from 0.0.3-next.16 to 0.0.3-next.17
724
+
725
+ ## [0.0.3-next.16](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.15...web-v0.0.3-next.16) (2026-02-06)
726
+
727
+
728
+ ### Miscellaneous Chores
729
+
730
+ * **web:** Synchronize repo versions
731
+
732
+
733
+ ### Dependencies
734
+
735
+ * The following workspace dependencies were updated
736
+ * dependencies
737
+ * @twin.org/core bumped from 0.0.3-next.15 to 0.0.3-next.16
738
+ * @twin.org/crypto bumped from 0.0.3-next.15 to 0.0.3-next.16
739
+ * @twin.org/nameof bumped from 0.0.3-next.15 to 0.0.3-next.16
740
+ * devDependencies
741
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.15 to 0.0.3-next.16
742
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.15 to 0.0.3-next.16
743
+ * @twin.org/validate-locales bumped from 0.0.3-next.15 to 0.0.3-next.16
744
+
745
+ ## [0.0.3-next.15](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.14...web-v0.0.3-next.15) (2026-01-29)
746
+
747
+
748
+ ### Miscellaneous Chores
749
+
750
+ * **web:** Synchronize repo versions
751
+
752
+
753
+ ### Dependencies
754
+
755
+ * The following workspace dependencies were updated
756
+ * dependencies
757
+ * @twin.org/core bumped from 0.0.3-next.14 to 0.0.3-next.15
758
+ * @twin.org/crypto bumped from 0.0.3-next.14 to 0.0.3-next.15
759
+ * @twin.org/nameof bumped from 0.0.3-next.14 to 0.0.3-next.15
760
+ * devDependencies
761
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.14 to 0.0.3-next.15
762
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.14 to 0.0.3-next.15
763
+ * @twin.org/validate-locales bumped from 0.0.3-next.14 to 0.0.3-next.15
764
+
765
+ ## [0.0.3-next.14](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.13...web-v0.0.3-next.14) (2026-01-22)
766
+
767
+
768
+ ### Features
769
+
770
+ * add/update http and mime types ([#229](https://github.com/iotaledger/twin-framework/issues/229)) ([d50154a](https://github.com/iotaledger/twin-framework/commit/d50154a484711b67feb42ea20a94e4415e53d392))
771
+
772
+
773
+ ### Dependencies
774
+
775
+ * The following workspace dependencies were updated
776
+ * dependencies
777
+ * @twin.org/core bumped from 0.0.3-next.13 to 0.0.3-next.14
778
+ * @twin.org/crypto bumped from 0.0.3-next.13 to 0.0.3-next.14
779
+ * @twin.org/nameof bumped from 0.0.3-next.13 to 0.0.3-next.14
780
+ * devDependencies
781
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.13 to 0.0.3-next.14
782
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.13 to 0.0.3-next.14
783
+ * @twin.org/validate-locales bumped from 0.0.3-next.13 to 0.0.3-next.14
784
+
785
+ ## [0.0.3-next.13](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.12...web-v0.0.3-next.13) (2026-01-08)
786
+
787
+
788
+ ### Features
789
+
790
+ * add Link header array support ([aff32a3](https://github.com/iotaledger/twin-framework/commit/aff32a3ff8ad3d076cade7c889444220706bfb1e))
791
+
792
+
793
+ ### Dependencies
794
+
795
+ * The following workspace dependencies were updated
796
+ * dependencies
797
+ * @twin.org/core bumped from 0.0.3-next.12 to 0.0.3-next.13
798
+ * @twin.org/crypto bumped from 0.0.3-next.12 to 0.0.3-next.13
799
+ * @twin.org/nameof bumped from 0.0.3-next.12 to 0.0.3-next.13
800
+ * devDependencies
801
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.12 to 0.0.3-next.13
802
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.12 to 0.0.3-next.13
803
+ * @twin.org/validate-locales bumped from 0.0.3-next.12 to 0.0.3-next.13
804
+
805
+ ## [0.0.3-next.12](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.11...web-v0.0.3-next.12) (2026-01-08)
806
+
807
+
808
+ ### Features
809
+
810
+ * adding link header helper ([#225](https://github.com/iotaledger/twin-framework/issues/225)) ([703c072](https://github.com/iotaledger/twin-framework/commit/703c0725aceac6b6ec0c4fa729ef832d12fb3fd7))
811
+
812
+
813
+ ### Dependencies
814
+
815
+ * The following workspace dependencies were updated
816
+ * dependencies
817
+ * @twin.org/core bumped from 0.0.3-next.11 to 0.0.3-next.12
818
+ * @twin.org/crypto bumped from 0.0.3-next.11 to 0.0.3-next.12
819
+ * @twin.org/nameof bumped from 0.0.3-next.11 to 0.0.3-next.12
820
+ * devDependencies
821
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.11 to 0.0.3-next.12
822
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.11 to 0.0.3-next.12
823
+ * @twin.org/validate-locales bumped from 0.0.3-next.11 to 0.0.3-next.12
824
+
825
+ ## [0.0.3-next.11](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.10...web-v0.0.3-next.11) (2026-01-07)
826
+
827
+
828
+ ### Features
829
+
830
+ * add additional header types ([#222](https://github.com/iotaledger/twin-framework/issues/222)) ([05f01cf](https://github.com/iotaledger/twin-framework/commit/05f01cf34b7bcec561ee989f679281b1cacdf032))
831
+
832
+
833
+ ### Dependencies
834
+
835
+ * The following workspace dependencies were updated
836
+ * dependencies
837
+ * @twin.org/core bumped from 0.0.3-next.10 to 0.0.3-next.11
838
+ * @twin.org/crypto bumped from 0.0.3-next.10 to 0.0.3-next.11
839
+ * @twin.org/nameof bumped from 0.0.3-next.10 to 0.0.3-next.11
840
+ * devDependencies
841
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.10 to 0.0.3-next.11
842
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.10 to 0.0.3-next.11
843
+ * @twin.org/validate-locales bumped from 0.0.3-next.10 to 0.0.3-next.11
844
+
845
+ ## [0.0.3-next.10](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.9...web-v0.0.3-next.10) (2026-01-07)
846
+
847
+
848
+ ### Miscellaneous Chores
849
+
850
+ * **web:** Synchronize repo versions
851
+
852
+
853
+ ### Dependencies
854
+
855
+ * The following workspace dependencies were updated
856
+ * dependencies
857
+ * @twin.org/core bumped from 0.0.3-next.9 to 0.0.3-next.10
858
+ * @twin.org/crypto bumped from 0.0.3-next.9 to 0.0.3-next.10
859
+ * @twin.org/nameof bumped from 0.0.3-next.9 to 0.0.3-next.10
860
+ * devDependencies
861
+ * @twin.org/nameof-transformer bumped from 0.0.3-next.9 to 0.0.3-next.10
862
+ * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.9 to 0.0.3-next.10
863
+ * @twin.org/validate-locales bumped from 0.0.3-next.9 to 0.0.3-next.10
864
+
865
+ ## [0.0.3-next.9](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.8...web-v0.0.3-next.9) (2026-01-05)
866
+
867
+
868
+ ### Features
869
+
870
+ * add cookie helper method to web package ([#217](https://github.com/iotaledger/twin-framework/issues/217)) ([043c632](https://github.com/iotaledger/twin-framework/commit/043c63298bff96f70bdefed56b82afef42ec3f44))
9
871
 
10
872
 
11
873
  ### Dependencies
@@ -20,7 +882,7 @@
20
882
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.8 to 0.0.3-next.9
21
883
  * @twin.org/validate-locales bumped from 0.0.3-next.8 to 0.0.3-next.9
22
884
 
23
- ## [0.0.3-next.8](https://github.com/twinfoundation/framework/compare/web-v0.0.3-next.7...web-v0.0.3-next.8) (2025-11-26)
885
+ ## [0.0.3-next.8](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.7...web-v0.0.3-next.8) (2025-11-26)
24
886
 
25
887
 
26
888
  ### Miscellaneous Chores
@@ -40,35 +902,35 @@
40
902
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.7 to 0.0.3-next.8
41
903
  * @twin.org/validate-locales bumped from 0.0.3-next.7 to 0.0.3-next.8
42
904
 
43
- ## [0.0.3-next.7](https://github.com/twinfoundation/framework/compare/web-v0.0.3-next.6...web-v0.0.3-next.7) (2025-11-25)
905
+ ## [0.0.3-next.7](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.6...web-v0.0.3-next.7) (2025-11-25)
44
906
 
45
907
 
46
908
  ### Features
47
909
 
48
- * add context id features ([#206](https://github.com/twinfoundation/framework/issues/206)) ([ef0d4ee](https://github.com/twinfoundation/framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
49
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
50
- * add header helper for common bearer support ([0c940b2](https://github.com/twinfoundation/framework/commit/0c940b29cccf0c3bb5b4aa8a01f1998010e44d51))
51
- * add jwk enc property overrides ([18b6309](https://github.com/twinfoundation/framework/commit/18b63092a386b56ea7fcd7e12865ac6e1b47cc1e))
52
- * add kid method to Jwk ([bc9239e](https://github.com/twinfoundation/framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
53
- * add rsa cipher support ([7af6cc6](https://github.com/twinfoundation/framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
54
- * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
55
- * add zlib/deflate mime types detection ([72c472b](https://github.com/twinfoundation/framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
56
- * additional nameof operators ([a5aab60](https://github.com/twinfoundation/framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
57
- * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/twinfoundation/framework/issues/136)) ([46a5af1](https://github.com/twinfoundation/framework/commit/46a5af127192d7048068275d14f555f09add3642))
58
- * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
59
- * improve bearer creation and extraction ([b9ddd6d](https://github.com/twinfoundation/framework/commit/b9ddd6dae0cb558e2227f0ec5e9cd21f85957400))
60
- * improve bearer creation and extraction ([29a347a](https://github.com/twinfoundation/framework/commit/29a347a760cb3bc5eb819112e84f1ac99430e72b))
61
- * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
62
- * propagate includeStackTrace on error conversion ([098fc72](https://github.com/twinfoundation/framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
63
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
64
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
65
- * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
66
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
910
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
911
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
912
+ * add header helper for common bearer support ([0c940b2](https://github.com/iotaledger/twin-framework/commit/0c940b29cccf0c3bb5b4aa8a01f1998010e44d51))
913
+ * add jwk enc property overrides ([18b6309](https://github.com/iotaledger/twin-framework/commit/18b63092a386b56ea7fcd7e12865ac6e1b47cc1e))
914
+ * add kid method to Jwk ([bc9239e](https://github.com/iotaledger/twin-framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
915
+ * add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
916
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
917
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
918
+ * additional nameof operators ([a5aab60](https://github.com/iotaledger/twin-framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
919
+ * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/iotaledger/twin-framework/issues/136)) ([46a5af1](https://github.com/iotaledger/twin-framework/commit/46a5af127192d7048068275d14f555f09add3642))
920
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
921
+ * improve bearer creation and extraction ([b9ddd6d](https://github.com/iotaledger/twin-framework/commit/b9ddd6dae0cb558e2227f0ec5e9cd21f85957400))
922
+ * improve bearer creation and extraction ([29a347a](https://github.com/iotaledger/twin-framework/commit/29a347a760cb3bc5eb819112e84f1ac99430e72b))
923
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
924
+ * propagate includeStackTrace on error conversion ([098fc72](https://github.com/iotaledger/twin-framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
925
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
926
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
927
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
928
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
67
929
 
68
930
 
69
931
  ### Bug Fixes
70
932
 
71
- * wrap inner error within FetchError / 2 ([#134](https://github.com/twinfoundation/framework/issues/134)) ([2ddb101](https://github.com/twinfoundation/framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
933
+ * wrap inner error within FetchError / 2 ([#134](https://github.com/iotaledger/twin-framework/issues/134)) ([2ddb101](https://github.com/iotaledger/twin-framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
72
934
 
73
935
 
74
936
  ### Dependencies
@@ -83,7 +945,7 @@
83
945
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.6 to 0.0.3-next.7
84
946
  * @twin.org/validate-locales bumped from 0.0.3-next.6 to 0.0.3-next.7
85
947
 
86
- ## [0.0.3-next.6](https://github.com/twinfoundation/framework/compare/web-v0.0.3-next.5...web-v0.0.3-next.6) (2025-11-25)
948
+ ## [0.0.3-next.6](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.5...web-v0.0.3-next.6) (2025-11-25)
87
949
 
88
950
 
89
951
  ### Miscellaneous Chores
@@ -103,7 +965,7 @@
103
965
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.5 to 0.0.3-next.6
104
966
  * @twin.org/validate-locales bumped from 0.0.3-next.5 to 0.0.3-next.6
105
967
 
106
- ## [0.0.3-next.5](https://github.com/twinfoundation/framework/compare/web-v0.0.3-next.4...web-v0.0.3-next.5) (2025-11-20)
968
+ ## [0.0.3-next.5](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.4...web-v0.0.3-next.5) (2025-11-20)
107
969
 
108
970
 
109
971
  ### Miscellaneous Chores
@@ -123,7 +985,7 @@
123
985
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.4 to 0.0.3-next.5
124
986
  * @twin.org/validate-locales bumped from 0.0.3-next.4 to 0.0.3-next.5
125
987
 
126
- ## [0.0.3-next.4](https://github.com/twinfoundation/framework/compare/web-v0.0.3-next.3...web-v0.0.3-next.4) (2025-11-13)
988
+ ## [0.0.3-next.4](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.3...web-v0.0.3-next.4) (2025-11-13)
127
989
 
128
990
 
129
991
  ### Miscellaneous Chores
@@ -143,7 +1005,7 @@
143
1005
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.3 to 0.0.3-next.4
144
1006
  * @twin.org/validate-locales bumped from 0.0.3-next.3 to 0.0.3-next.4
145
1007
 
146
- ## [0.0.3-next.3](https://github.com/twinfoundation/framework/compare/web-v0.0.3-next.2...web-v0.0.3-next.3) (2025-11-12)
1008
+ ## [0.0.3-next.3](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.2...web-v0.0.3-next.3) (2025-11-12)
147
1009
 
148
1010
 
149
1011
  ### Miscellaneous Chores
@@ -163,7 +1025,7 @@
163
1025
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.2 to 0.0.3-next.3
164
1026
  * @twin.org/validate-locales bumped from 0.0.3-next.2 to 0.0.3-next.3
165
1027
 
166
- ## [0.0.3-next.2](https://github.com/twinfoundation/framework/compare/web-v0.0.3-next.1...web-v0.0.3-next.2) (2025-11-12)
1028
+ ## [0.0.3-next.2](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.1...web-v0.0.3-next.2) (2025-11-12)
167
1029
 
168
1030
 
169
1031
  ### Miscellaneous Chores
@@ -183,35 +1045,35 @@
183
1045
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.1 to 0.0.3-next.2
184
1046
  * @twin.org/validate-locales bumped from 0.0.3-next.1 to 0.0.3-next.2
185
1047
 
186
- ## [0.0.3-next.1](https://github.com/twinfoundation/framework/compare/web-v0.0.3-next.0...web-v0.0.3-next.1) (2025-11-10)
1048
+ ## [0.0.3-next.1](https://github.com/iotaledger/twin-framework/compare/web-v0.0.3-next.0...web-v0.0.3-next.1) (2025-11-10)
187
1049
 
188
1050
 
189
1051
  ### Features
190
1052
 
191
- * add context id features ([#206](https://github.com/twinfoundation/framework/issues/206)) ([ef0d4ee](https://github.com/twinfoundation/framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
192
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
193
- * add header helper for common bearer support ([0c940b2](https://github.com/twinfoundation/framework/commit/0c940b29cccf0c3bb5b4aa8a01f1998010e44d51))
194
- * add jwk enc property overrides ([18b6309](https://github.com/twinfoundation/framework/commit/18b63092a386b56ea7fcd7e12865ac6e1b47cc1e))
195
- * add kid method to Jwk ([bc9239e](https://github.com/twinfoundation/framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
196
- * add rsa cipher support ([7af6cc6](https://github.com/twinfoundation/framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
197
- * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
198
- * add zlib/deflate mime types detection ([72c472b](https://github.com/twinfoundation/framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
199
- * additional nameof operators ([a5aab60](https://github.com/twinfoundation/framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
200
- * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/twinfoundation/framework/issues/136)) ([46a5af1](https://github.com/twinfoundation/framework/commit/46a5af127192d7048068275d14f555f09add3642))
201
- * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
202
- * improve bearer creation and extraction ([b9ddd6d](https://github.com/twinfoundation/framework/commit/b9ddd6dae0cb558e2227f0ec5e9cd21f85957400))
203
- * improve bearer creation and extraction ([29a347a](https://github.com/twinfoundation/framework/commit/29a347a760cb3bc5eb819112e84f1ac99430e72b))
204
- * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
205
- * propagate includeStackTrace on error conversion ([098fc72](https://github.com/twinfoundation/framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
206
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
207
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
208
- * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
209
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1053
+ * add context id features ([#206](https://github.com/iotaledger/twin-framework/issues/206)) ([ef0d4ee](https://github.com/iotaledger/twin-framework/commit/ef0d4ee11a4f5fc6cc6f52a4958ce905c04ee13b))
1054
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1055
+ * add header helper for common bearer support ([0c940b2](https://github.com/iotaledger/twin-framework/commit/0c940b29cccf0c3bb5b4aa8a01f1998010e44d51))
1056
+ * add jwk enc property overrides ([18b6309](https://github.com/iotaledger/twin-framework/commit/18b63092a386b56ea7fcd7e12865ac6e1b47cc1e))
1057
+ * add kid method to Jwk ([bc9239e](https://github.com/iotaledger/twin-framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
1058
+ * add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
1059
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
1060
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
1061
+ * additional nameof operators ([a5aab60](https://github.com/iotaledger/twin-framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
1062
+ * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/iotaledger/twin-framework/issues/136)) ([46a5af1](https://github.com/iotaledger/twin-framework/commit/46a5af127192d7048068275d14f555f09add3642))
1063
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
1064
+ * improve bearer creation and extraction ([b9ddd6d](https://github.com/iotaledger/twin-framework/commit/b9ddd6dae0cb558e2227f0ec5e9cd21f85957400))
1065
+ * improve bearer creation and extraction ([29a347a](https://github.com/iotaledger/twin-framework/commit/29a347a760cb3bc5eb819112e84f1ac99430e72b))
1066
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
1067
+ * propagate includeStackTrace on error conversion ([098fc72](https://github.com/iotaledger/twin-framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
1068
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1069
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1070
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
1071
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
210
1072
 
211
1073
 
212
1074
  ### Bug Fixes
213
1075
 
214
- * wrap inner error within FetchError / 2 ([#134](https://github.com/twinfoundation/framework/issues/134)) ([2ddb101](https://github.com/twinfoundation/framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
1076
+ * wrap inner error within FetchError / 2 ([#134](https://github.com/iotaledger/twin-framework/issues/134)) ([2ddb101](https://github.com/iotaledger/twin-framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
215
1077
 
216
1078
 
217
1079
  ### Dependencies
@@ -226,7 +1088,7 @@
226
1088
  * @twin.org/nameof-vitest-plugin bumped from 0.0.3-next.0 to 0.0.3-next.1
227
1089
  * @twin.org/validate-locales bumped from 0.0.3-next.0 to 0.0.3-next.1
228
1090
 
229
- ## [0.0.2-next.22](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.21...web-v0.0.2-next.22) (2025-10-10)
1091
+ ## [0.0.2-next.22](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.21...web-v0.0.2-next.22) (2025-10-10)
230
1092
 
231
1093
 
232
1094
  ### Miscellaneous Chores
@@ -246,12 +1108,12 @@
246
1108
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.21 to 0.0.2-next.22
247
1109
  * @twin.org/validate-locales bumped from 0.0.2-next.21 to 0.0.2-next.22
248
1110
 
249
- ## [0.0.2-next.21](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.20...web-v0.0.2-next.21) (2025-10-09)
1111
+ ## [0.0.2-next.21](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.20...web-v0.0.2-next.21) (2025-10-09)
250
1112
 
251
1113
 
252
1114
  ### Features
253
1115
 
254
- * locales validation ([#197](https://github.com/twinfoundation/framework/issues/197)) ([55fdadb](https://github.com/twinfoundation/framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
1116
+ * locales validation ([#197](https://github.com/iotaledger/twin-framework/issues/197)) ([55fdadb](https://github.com/iotaledger/twin-framework/commit/55fdadb13595ce0047f787bd1d4135d429a99f12))
255
1117
 
256
1118
 
257
1119
  ### Dependencies
@@ -266,7 +1128,7 @@
266
1128
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.20 to 0.0.2-next.21
267
1129
  * @twin.org/validate-locales bumped from 0.0.2-next.20 to 0.0.2-next.21
268
1130
 
269
- ## [0.0.2-next.20](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.19...web-v0.0.2-next.20) (2025-10-02)
1131
+ ## [0.0.2-next.20](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.19...web-v0.0.2-next.20) (2025-10-02)
270
1132
 
271
1133
 
272
1134
  ### Miscellaneous Chores
@@ -285,7 +1147,7 @@
285
1147
  * @twin.org/nameof-transformer bumped from 0.0.2-next.19 to 0.0.2-next.20
286
1148
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.19 to 0.0.2-next.20
287
1149
 
288
- ## [0.0.2-next.19](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.18...web-v0.0.2-next.19) (2025-09-30)
1150
+ ## [0.0.2-next.19](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.18...web-v0.0.2-next.19) (2025-09-30)
289
1151
 
290
1152
 
291
1153
  ### Miscellaneous Chores
@@ -304,7 +1166,7 @@
304
1166
  * @twin.org/nameof-transformer bumped from 0.0.2-next.18 to 0.0.2-next.19
305
1167
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.18 to 0.0.2-next.19
306
1168
 
307
- ## [0.0.2-next.18](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.17...web-v0.0.2-next.18) (2025-09-29)
1169
+ ## [0.0.2-next.18](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.17...web-v0.0.2-next.18) (2025-09-29)
308
1170
 
309
1171
 
310
1172
  ### Miscellaneous Chores
@@ -323,12 +1185,12 @@
323
1185
  * @twin.org/nameof-transformer bumped from 0.0.2-next.17 to 0.0.2-next.18
324
1186
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.17 to 0.0.2-next.18
325
1187
 
326
- ## [0.0.2-next.17](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.16...web-v0.0.2-next.17) (2025-09-29)
1188
+ ## [0.0.2-next.17](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.16...web-v0.0.2-next.17) (2025-09-29)
327
1189
 
328
1190
 
329
1191
  ### Features
330
1192
 
331
- * additional nameof operators ([a5aab60](https://github.com/twinfoundation/framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
1193
+ * additional nameof operators ([a5aab60](https://github.com/iotaledger/twin-framework/commit/a5aab60bf66a86f1b7ff8af7c4f044cb03706d50))
332
1194
 
333
1195
 
334
1196
  ### Dependencies
@@ -342,7 +1204,7 @@
342
1204
  * @twin.org/nameof-transformer bumped from 0.0.2-next.16 to 0.0.2-next.17
343
1205
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.16 to 0.0.2-next.17
344
1206
 
345
- ## [0.0.2-next.16](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.15...web-v0.0.2-next.16) (2025-09-28)
1207
+ ## [0.0.2-next.16](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.15...web-v0.0.2-next.16) (2025-09-28)
346
1208
 
347
1209
 
348
1210
  ### Miscellaneous Chores
@@ -361,12 +1223,12 @@
361
1223
  * @twin.org/nameof-transformer bumped from 0.0.2-next.15 to 0.0.2-next.16
362
1224
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.15 to 0.0.2-next.16
363
1225
 
364
- ## [0.0.2-next.15](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.14...web-v0.0.2-next.15) (2025-09-22)
1226
+ ## [0.0.2-next.15](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.14...web-v0.0.2-next.15) (2025-09-22)
365
1227
 
366
1228
 
367
1229
  ### Features
368
1230
 
369
- * improve bearer creation and extraction ([29a347a](https://github.com/twinfoundation/framework/commit/29a347a760cb3bc5eb819112e84f1ac99430e72b))
1231
+ * improve bearer creation and extraction ([29a347a](https://github.com/iotaledger/twin-framework/commit/29a347a760cb3bc5eb819112e84f1ac99430e72b))
370
1232
 
371
1233
 
372
1234
  ### Dependencies
@@ -380,12 +1242,12 @@
380
1242
  * @twin.org/nameof-transformer bumped from 0.0.2-next.14 to 0.0.2-next.15
381
1243
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.14 to 0.0.2-next.15
382
1244
 
383
- ## [0.0.2-next.14](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.13...web-v0.0.2-next.14) (2025-09-22)
1245
+ ## [0.0.2-next.14](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.13...web-v0.0.2-next.14) (2025-09-22)
384
1246
 
385
1247
 
386
1248
  ### Features
387
1249
 
388
- * add header helper for common bearer support ([0c940b2](https://github.com/twinfoundation/framework/commit/0c940b29cccf0c3bb5b4aa8a01f1998010e44d51))
1250
+ * add header helper for common bearer support ([0c940b2](https://github.com/iotaledger/twin-framework/commit/0c940b29cccf0c3bb5b4aa8a01f1998010e44d51))
389
1251
 
390
1252
 
391
1253
  ### Dependencies
@@ -399,7 +1261,7 @@
399
1261
  * @twin.org/nameof-transformer bumped from 0.0.2-next.13 to 0.0.2-next.14
400
1262
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.13 to 0.0.2-next.14
401
1263
 
402
- ## [0.0.2-next.13](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.12...web-v0.0.2-next.13) (2025-09-22)
1264
+ ## [0.0.2-next.13](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.12...web-v0.0.2-next.13) (2025-09-22)
403
1265
 
404
1266
 
405
1267
  ### Miscellaneous Chores
@@ -418,12 +1280,12 @@
418
1280
  * @twin.org/nameof-transformer bumped from 0.0.2-next.12 to 0.0.2-next.13
419
1281
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.12 to 0.0.2-next.13
420
1282
 
421
- ## [0.0.2-next.12](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.11...web-v0.0.2-next.12) (2025-09-15)
1283
+ ## [0.0.2-next.12](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.11...web-v0.0.2-next.12) (2025-09-15)
422
1284
 
423
1285
 
424
1286
  ### Features
425
1287
 
426
- * add jwk enc property overrides ([18b6309](https://github.com/twinfoundation/framework/commit/18b63092a386b56ea7fcd7e12865ac6e1b47cc1e))
1288
+ * add jwk enc property overrides ([18b6309](https://github.com/iotaledger/twin-framework/commit/18b63092a386b56ea7fcd7e12865ac6e1b47cc1e))
427
1289
 
428
1290
 
429
1291
  ### Dependencies
@@ -437,7 +1299,7 @@
437
1299
  * @twin.org/nameof-transformer bumped from 0.0.2-next.11 to 0.0.2-next.12
438
1300
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.11 to 0.0.2-next.12
439
1301
 
440
- ## [0.0.2-next.11](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.10...web-v0.0.2-next.11) (2025-09-15)
1302
+ ## [0.0.2-next.11](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.10...web-v0.0.2-next.11) (2025-09-15)
441
1303
 
442
1304
 
443
1305
  ### Miscellaneous Chores
@@ -456,7 +1318,7 @@
456
1318
  * @twin.org/nameof-transformer bumped from 0.0.2-next.10 to 0.0.2-next.11
457
1319
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.10 to 0.0.2-next.11
458
1320
 
459
- ## [0.0.2-next.10](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.9...web-v0.0.2-next.10) (2025-09-11)
1321
+ ## [0.0.2-next.10](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.9...web-v0.0.2-next.10) (2025-09-11)
460
1322
 
461
1323
 
462
1324
  ### Miscellaneous Chores
@@ -475,7 +1337,7 @@
475
1337
  * @twin.org/nameof-transformer bumped from 0.0.2-next.9 to 0.0.2-next.10
476
1338
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.9 to 0.0.2-next.10
477
1339
 
478
- ## [0.0.2-next.9](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.8...web-v0.0.2-next.9) (2025-09-08)
1340
+ ## [0.0.2-next.9](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.8...web-v0.0.2-next.9) (2025-09-08)
479
1341
 
480
1342
 
481
1343
  ### Miscellaneous Chores
@@ -494,7 +1356,7 @@
494
1356
  * @twin.org/nameof-transformer bumped from 0.0.2-next.8 to 0.0.2-next.9
495
1357
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.8 to 0.0.2-next.9
496
1358
 
497
- ## [0.0.2-next.8](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.7...web-v0.0.2-next.8) (2025-09-05)
1359
+ ## [0.0.2-next.8](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.7...web-v0.0.2-next.8) (2025-09-05)
498
1360
 
499
1361
 
500
1362
  ### Miscellaneous Chores
@@ -513,12 +1375,12 @@
513
1375
  * @twin.org/nameof-transformer bumped from 0.0.2-next.7 to 0.0.2-next.8
514
1376
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.7 to 0.0.2-next.8
515
1377
 
516
- ## [0.0.2-next.7](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.6...web-v0.0.2-next.7) (2025-08-29)
1378
+ ## [0.0.2-next.7](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.6...web-v0.0.2-next.7) (2025-08-29)
517
1379
 
518
1380
 
519
1381
  ### Features
520
1382
 
521
- * eslint migration to flat config ([74427d7](https://github.com/twinfoundation/framework/commit/74427d78d342167f7850e49ab87269326355befe))
1383
+ * eslint migration to flat config ([74427d7](https://github.com/iotaledger/twin-framework/commit/74427d78d342167f7850e49ab87269326355befe))
522
1384
 
523
1385
 
524
1386
  ### Dependencies
@@ -532,7 +1394,7 @@
532
1394
  * @twin.org/nameof-transformer bumped from 0.0.2-next.6 to 0.0.2-next.7
533
1395
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.6 to 0.0.2-next.7
534
1396
 
535
- ## [0.0.2-next.6](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.5...web-v0.0.2-next.6) (2025-08-27)
1397
+ ## [0.0.2-next.6](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.5...web-v0.0.2-next.6) (2025-08-27)
536
1398
 
537
1399
 
538
1400
  ### Miscellaneous Chores
@@ -551,12 +1413,12 @@
551
1413
  * @twin.org/nameof-transformer bumped from 0.0.2-next.5 to 0.0.2-next.6
552
1414
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.5 to 0.0.2-next.6
553
1415
 
554
- ## [0.0.2-next.5](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.4...web-v0.0.2-next.5) (2025-08-19)
1416
+ ## [0.0.2-next.5](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.4...web-v0.0.2-next.5) (2025-08-19)
555
1417
 
556
1418
 
557
1419
  ### Features
558
1420
 
559
- * use cause instead of inner for errors ([1f4acc4](https://github.com/twinfoundation/framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
1421
+ * use cause instead of inner for errors ([1f4acc4](https://github.com/iotaledger/twin-framework/commit/1f4acc4d7a6b71a134d9547da9bf40de1e1e49da))
560
1422
 
561
1423
 
562
1424
  ### Dependencies
@@ -570,7 +1432,7 @@
570
1432
  * @twin.org/nameof-transformer bumped from 0.0.2-next.4 to 0.0.2-next.5
571
1433
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.4 to 0.0.2-next.5
572
1434
 
573
- ## [0.0.2-next.4](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.3...web-v0.0.2-next.4) (2025-08-15)
1435
+ ## [0.0.2-next.4](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.3...web-v0.0.2-next.4) (2025-08-15)
574
1436
 
575
1437
 
576
1438
  ### Miscellaneous Chores
@@ -589,26 +1451,26 @@
589
1451
  * @twin.org/nameof-transformer bumped from 0.0.2-next.3 to 0.0.2-next.4
590
1452
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.3 to 0.0.2-next.4
591
1453
 
592
- ## [0.0.2-next.3](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.2...web-v0.0.2-next.3) (2025-08-06)
1454
+ ## [0.0.2-next.3](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.2...web-v0.0.2-next.3) (2025-08-06)
593
1455
 
594
1456
 
595
1457
  ### Features
596
1458
 
597
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
598
- * add kid method to Jwk ([bc9239e](https://github.com/twinfoundation/framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
599
- * add rsa cipher support ([7af6cc6](https://github.com/twinfoundation/framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
600
- * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
601
- * add zlib/deflate mime types detection ([72c472b](https://github.com/twinfoundation/framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
602
- * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/twinfoundation/framework/issues/136)) ([46a5af1](https://github.com/twinfoundation/framework/commit/46a5af127192d7048068275d14f555f09add3642))
603
- * propagate includeStackTrace on error conversion ([098fc72](https://github.com/twinfoundation/framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
604
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
605
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
606
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1459
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1460
+ * add kid method to Jwk ([bc9239e](https://github.com/iotaledger/twin-framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
1461
+ * add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
1462
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
1463
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
1464
+ * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/iotaledger/twin-framework/issues/136)) ([46a5af1](https://github.com/iotaledger/twin-framework/commit/46a5af127192d7048068275d14f555f09add3642))
1465
+ * propagate includeStackTrace on error conversion ([098fc72](https://github.com/iotaledger/twin-framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
1466
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1467
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1468
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
607
1469
 
608
1470
 
609
1471
  ### Bug Fixes
610
1472
 
611
- * wrap inner error within FetchError / 2 ([#134](https://github.com/twinfoundation/framework/issues/134)) ([2ddb101](https://github.com/twinfoundation/framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
1473
+ * wrap inner error within FetchError / 2 ([#134](https://github.com/iotaledger/twin-framework/issues/134)) ([2ddb101](https://github.com/iotaledger/twin-framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
612
1474
 
613
1475
 
614
1476
  ### Dependencies
@@ -622,26 +1484,26 @@
622
1484
  * @twin.org/nameof-transformer bumped from 0.0.2-next.2 to 0.0.2-next.3
623
1485
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.2 to 0.0.2-next.3
624
1486
 
625
- ## [0.0.2-next.2](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.1...web-v0.0.2-next.2) (2025-08-06)
1487
+ ## [0.0.2-next.2](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.1...web-v0.0.2-next.2) (2025-08-06)
626
1488
 
627
1489
 
628
1490
  ### Features
629
1491
 
630
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
631
- * add kid method to Jwk ([bc9239e](https://github.com/twinfoundation/framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
632
- * add rsa cipher support ([7af6cc6](https://github.com/twinfoundation/framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
633
- * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
634
- * add zlib/deflate mime types detection ([72c472b](https://github.com/twinfoundation/framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
635
- * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/twinfoundation/framework/issues/136)) ([46a5af1](https://github.com/twinfoundation/framework/commit/46a5af127192d7048068275d14f555f09add3642))
636
- * propagate includeStackTrace on error conversion ([098fc72](https://github.com/twinfoundation/framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
637
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
638
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
639
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1492
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1493
+ * add kid method to Jwk ([bc9239e](https://github.com/iotaledger/twin-framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
1494
+ * add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
1495
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
1496
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
1497
+ * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/iotaledger/twin-framework/issues/136)) ([46a5af1](https://github.com/iotaledger/twin-framework/commit/46a5af127192d7048068275d14f555f09add3642))
1498
+ * propagate includeStackTrace on error conversion ([098fc72](https://github.com/iotaledger/twin-framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
1499
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1500
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1501
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
640
1502
 
641
1503
 
642
1504
  ### Bug Fixes
643
1505
 
644
- * wrap inner error within FetchError / 2 ([#134](https://github.com/twinfoundation/framework/issues/134)) ([2ddb101](https://github.com/twinfoundation/framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
1506
+ * wrap inner error within FetchError / 2 ([#134](https://github.com/iotaledger/twin-framework/issues/134)) ([2ddb101](https://github.com/iotaledger/twin-framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
645
1507
 
646
1508
 
647
1509
  ### Dependencies
@@ -655,26 +1517,26 @@
655
1517
  * @twin.org/nameof-transformer bumped from 0.0.2-next.1 to 0.0.2-next.2
656
1518
  * @twin.org/nameof-vitest-plugin bumped from 0.0.2-next.1 to 0.0.2-next.2
657
1519
 
658
- ## [0.0.2-next.1](https://github.com/twinfoundation/framework/compare/web-v0.0.2-next.0...web-v0.0.2-next.1) (2025-08-06)
1520
+ ## [0.0.2-next.1](https://github.com/iotaledger/twin-framework/compare/web-v0.0.2-next.0...web-v0.0.2-next.1) (2025-08-06)
659
1521
 
660
1522
 
661
1523
  ### Features
662
1524
 
663
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
664
- * add kid method to Jwk ([bc9239e](https://github.com/twinfoundation/framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
665
- * add rsa cipher support ([7af6cc6](https://github.com/twinfoundation/framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
666
- * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
667
- * add zlib/deflate mime types detection ([72c472b](https://github.com/twinfoundation/framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
668
- * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/twinfoundation/framework/issues/136)) ([46a5af1](https://github.com/twinfoundation/framework/commit/46a5af127192d7048068275d14f555f09add3642))
669
- * propagate includeStackTrace on error conversion ([098fc72](https://github.com/twinfoundation/framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
670
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
671
- * update dependencies ([f3bd015](https://github.com/twinfoundation/framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
672
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1525
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1526
+ * add kid method to Jwk ([bc9239e](https://github.com/iotaledger/twin-framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
1527
+ * add rsa cipher support ([7af6cc6](https://github.com/iotaledger/twin-framework/commit/7af6cc67512d3363bd4a2f2e87bd7733c2800147))
1528
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
1529
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
1530
+ * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/iotaledger/twin-framework/issues/136)) ([46a5af1](https://github.com/iotaledger/twin-framework/commit/46a5af127192d7048068275d14f555f09add3642))
1531
+ * propagate includeStackTrace on error conversion ([098fc72](https://github.com/iotaledger/twin-framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
1532
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1533
+ * update dependencies ([f3bd015](https://github.com/iotaledger/twin-framework/commit/f3bd015efd169196b7e0335f5cab876ba6ca1d75))
1534
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
673
1535
 
674
1536
 
675
1537
  ### Bug Fixes
676
1538
 
677
- * wrap inner error within FetchError / 2 ([#134](https://github.com/twinfoundation/framework/issues/134)) ([2ddb101](https://github.com/twinfoundation/framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
1539
+ * wrap inner error within FetchError / 2 ([#134](https://github.com/iotaledger/twin-framework/issues/134)) ([2ddb101](https://github.com/iotaledger/twin-framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
678
1540
 
679
1541
 
680
1542
  ### Dependencies
@@ -693,8 +1555,8 @@
693
1555
 
694
1556
  ### Features
695
1557
 
696
- * release to production ([829d53d](https://github.com/twinfoundation/framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
697
- * release to production ([5cf3a76](https://github.com/twinfoundation/framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
1558
+ * release to production ([829d53d](https://github.com/iotaledger/twin-framework/commit/829d53d3953b1e1b40b0243c04cfdfd3842aac7b))
1559
+ * release to production ([5cf3a76](https://github.com/iotaledger/twin-framework/commit/5cf3a76a09eff2e6414d0cba846c7c37400a11d6))
698
1560
 
699
1561
 
700
1562
  ### Dependencies
@@ -708,24 +1570,24 @@
708
1570
  * @twin.org/nameof-transformer bumped from ^0.0.0 to ^0.0.1
709
1571
  * @twin.org/nameof-vitest-plugin bumped from ^0.0.0 to ^0.0.1
710
1572
 
711
- ## [0.0.1-next.70](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.69...web-v0.0.1-next.70) (2025-07-02)
1573
+ ## [0.0.1-next.70](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.69...web-v0.0.1-next.70) (2025-07-02)
712
1574
 
713
1575
 
714
1576
  ### Features
715
1577
 
716
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
717
- * add kid method to Jwk ([bc9239e](https://github.com/twinfoundation/framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
718
- * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
719
- * add zlib/deflate mime types detection ([72c472b](https://github.com/twinfoundation/framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
720
- * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/twinfoundation/framework/issues/136)) ([46a5af1](https://github.com/twinfoundation/framework/commit/46a5af127192d7048068275d14f555f09add3642))
721
- * propagate includeStackTrace on error conversion ([098fc72](https://github.com/twinfoundation/framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
722
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
723
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1578
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1579
+ * add kid method to Jwk ([bc9239e](https://github.com/iotaledger/twin-framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
1580
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
1581
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
1582
+ * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/iotaledger/twin-framework/issues/136)) ([46a5af1](https://github.com/iotaledger/twin-framework/commit/46a5af127192d7048068275d14f555f09add3642))
1583
+ * propagate includeStackTrace on error conversion ([098fc72](https://github.com/iotaledger/twin-framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
1584
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1585
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
724
1586
 
725
1587
 
726
1588
  ### Bug Fixes
727
1589
 
728
- * wrap inner error within FetchError / 2 ([#134](https://github.com/twinfoundation/framework/issues/134)) ([2ddb101](https://github.com/twinfoundation/framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
1590
+ * wrap inner error within FetchError / 2 ([#134](https://github.com/iotaledger/twin-framework/issues/134)) ([2ddb101](https://github.com/iotaledger/twin-framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
729
1591
 
730
1592
 
731
1593
  ### Dependencies
@@ -739,24 +1601,24 @@
739
1601
  * @twin.org/nameof-transformer bumped from 0.0.1-next.69 to 0.0.1-next.70
740
1602
  * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.69 to 0.0.1-next.70
741
1603
 
742
- ## [0.0.1-next.69](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.68...web-v0.0.1-next.69) (2025-07-02)
1604
+ ## [0.0.1-next.69](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.68...web-v0.0.1-next.69) (2025-07-02)
743
1605
 
744
1606
 
745
1607
  ### Features
746
1608
 
747
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
748
- * add kid method to Jwk ([bc9239e](https://github.com/twinfoundation/framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
749
- * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
750
- * add zlib/deflate mime types detection ([72c472b](https://github.com/twinfoundation/framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
751
- * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/twinfoundation/framework/issues/136)) ([46a5af1](https://github.com/twinfoundation/framework/commit/46a5af127192d7048068275d14f555f09add3642))
752
- * propagate includeStackTrace on error conversion ([098fc72](https://github.com/twinfoundation/framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
753
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
754
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1609
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1610
+ * add kid method to Jwk ([bc9239e](https://github.com/iotaledger/twin-framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
1611
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
1612
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
1613
+ * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/iotaledger/twin-framework/issues/136)) ([46a5af1](https://github.com/iotaledger/twin-framework/commit/46a5af127192d7048068275d14f555f09add3642))
1614
+ * propagate includeStackTrace on error conversion ([098fc72](https://github.com/iotaledger/twin-framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
1615
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1616
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
755
1617
 
756
1618
 
757
1619
  ### Bug Fixes
758
1620
 
759
- * wrap inner error within FetchError / 2 ([#134](https://github.com/twinfoundation/framework/issues/134)) ([2ddb101](https://github.com/twinfoundation/framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
1621
+ * wrap inner error within FetchError / 2 ([#134](https://github.com/iotaledger/twin-framework/issues/134)) ([2ddb101](https://github.com/iotaledger/twin-framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
760
1622
 
761
1623
 
762
1624
  ### Dependencies
@@ -770,12 +1632,12 @@
770
1632
  * @twin.org/nameof-transformer bumped from 0.0.1-next.68 to 0.0.1-next.69
771
1633
  * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.68 to 0.0.1-next.69
772
1634
 
773
- ## [0.0.1-next.68](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.67...web-v0.0.1-next.68) (2025-07-02)
1635
+ ## [0.0.1-next.68](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.67...web-v0.0.1-next.68) (2025-07-02)
774
1636
 
775
1637
 
776
1638
  ### Features
777
1639
 
778
- * relocate core packages from tools ([bcab8f3](https://github.com/twinfoundation/framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
1640
+ * relocate core packages from tools ([bcab8f3](https://github.com/iotaledger/twin-framework/commit/bcab8f3160442ea4fcaf442947462504f3d6a17d))
779
1641
 
780
1642
 
781
1643
  ### Dependencies
@@ -789,7 +1651,7 @@
789
1651
  * @twin.org/nameof-transformer bumped from 0.0.1-next.67 to 0.0.1-next.68
790
1652
  * @twin.org/nameof-vitest-plugin bumped from 0.0.1-next.67 to 0.0.1-next.68
791
1653
 
792
- ## [0.0.1-next.67](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.66...web-v0.0.1-next.67) (2025-06-26)
1654
+ ## [0.0.1-next.67](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.66...web-v0.0.1-next.67) (2025-06-26)
793
1655
 
794
1656
 
795
1657
  ### Miscellaneous Chores
@@ -804,7 +1666,7 @@
804
1666
  * @twin.org/core bumped from 0.0.1-next.66 to 0.0.1-next.67
805
1667
  * @twin.org/crypto bumped from 0.0.1-next.66 to 0.0.1-next.67
806
1668
 
807
- ## [0.0.1-next.66](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.65...web-v0.0.1-next.66) (2025-06-26)
1669
+ ## [0.0.1-next.66](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.65...web-v0.0.1-next.66) (2025-06-26)
808
1670
 
809
1671
 
810
1672
  ### Miscellaneous Chores
@@ -819,7 +1681,7 @@
819
1681
  * @twin.org/core bumped from 0.0.1-next.65 to 0.0.1-next.66
820
1682
  * @twin.org/crypto bumped from 0.0.1-next.65 to 0.0.1-next.66
821
1683
 
822
- ## [0.0.1-next.65](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.64...web-v0.0.1-next.65) (2025-06-19)
1684
+ ## [0.0.1-next.65](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.64...web-v0.0.1-next.65) (2025-06-19)
823
1685
 
824
1686
 
825
1687
  ### Miscellaneous Chores
@@ -834,12 +1696,12 @@
834
1696
  * @twin.org/core bumped from 0.0.1-next.64 to 0.0.1-next.65
835
1697
  * @twin.org/crypto bumped from 0.0.1-next.64 to 0.0.1-next.65
836
1698
 
837
- ## [0.0.1-next.64](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.63...web-v0.0.1-next.64) (2025-06-19)
1699
+ ## [0.0.1-next.64](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.63...web-v0.0.1-next.64) (2025-06-19)
838
1700
 
839
1701
 
840
1702
  ### Features
841
1703
 
842
- * add zlib/deflate mime types detection ([72c472b](https://github.com/twinfoundation/framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
1704
+ * add zlib/deflate mime types detection ([72c472b](https://github.com/iotaledger/twin-framework/commit/72c472b5a35a973e7109336f5b6cdd84dbb8bbcb))
843
1705
 
844
1706
 
845
1707
  ### Dependencies
@@ -849,12 +1711,12 @@
849
1711
  * @twin.org/core bumped from 0.0.1-next.63 to 0.0.1-next.64
850
1712
  * @twin.org/crypto bumped from 0.0.1-next.63 to 0.0.1-next.64
851
1713
 
852
- ## [0.0.1-next.63](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.62...web-v0.0.1-next.63) (2025-06-18)
1714
+ ## [0.0.1-next.63](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.62...web-v0.0.1-next.63) (2025-06-18)
853
1715
 
854
1716
 
855
1717
  ### Features
856
1718
 
857
- * add kid method to Jwk ([bc9239e](https://github.com/twinfoundation/framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
1719
+ * add kid method to Jwk ([bc9239e](https://github.com/iotaledger/twin-framework/commit/bc9239ed9896a053d83e00ca221e962704ebc277))
858
1720
 
859
1721
 
860
1722
  ### Dependencies
@@ -864,21 +1726,21 @@
864
1726
  * @twin.org/core bumped from 0.0.1-next.62 to 0.0.1-next.63
865
1727
  * @twin.org/crypto bumped from 0.0.1-next.62 to 0.0.1-next.63
866
1728
 
867
- ## [0.0.1-next.62](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.61...web-v0.0.1-next.62) (2025-06-17)
1729
+ ## [0.0.1-next.62](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.61...web-v0.0.1-next.62) (2025-06-17)
868
1730
 
869
1731
 
870
1732
  ### Features
871
1733
 
872
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
873
- * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
874
- * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/twinfoundation/framework/issues/136)) ([46a5af1](https://github.com/twinfoundation/framework/commit/46a5af127192d7048068275d14f555f09add3642))
875
- * propagate includeStackTrace on error conversion ([098fc72](https://github.com/twinfoundation/framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
876
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1734
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1735
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
1736
+ * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/iotaledger/twin-framework/issues/136)) ([46a5af1](https://github.com/iotaledger/twin-framework/commit/46a5af127192d7048068275d14f555f09add3642))
1737
+ * propagate includeStackTrace on error conversion ([098fc72](https://github.com/iotaledger/twin-framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
1738
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
877
1739
 
878
1740
 
879
1741
  ### Bug Fixes
880
1742
 
881
- * wrap inner error within FetchError / 2 ([#134](https://github.com/twinfoundation/framework/issues/134)) ([2ddb101](https://github.com/twinfoundation/framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
1743
+ * wrap inner error within FetchError / 2 ([#134](https://github.com/iotaledger/twin-framework/issues/134)) ([2ddb101](https://github.com/iotaledger/twin-framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
882
1744
 
883
1745
 
884
1746
  ### Dependencies
@@ -888,7 +1750,7 @@
888
1750
  * @twin.org/core bumped from 0.0.1-next.61 to 0.0.1-next.62
889
1751
  * @twin.org/crypto bumped from 0.0.1-next.61 to 0.0.1-next.62
890
1752
 
891
- ## [0.0.1-next.61](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.60...web-v0.0.1-next.61) (2025-06-17)
1753
+ ## [0.0.1-next.61](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.60...web-v0.0.1-next.61) (2025-06-17)
892
1754
 
893
1755
 
894
1756
  ### Miscellaneous Chores
@@ -903,7 +1765,7 @@
903
1765
  * @twin.org/core bumped from 0.0.1-next.60 to 0.0.1-next.61
904
1766
  * @twin.org/crypto bumped from 0.0.1-next.60 to 0.0.1-next.61
905
1767
 
906
- ## [0.0.1-next.60](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.59...web-v0.0.1-next.60) (2025-06-17)
1768
+ ## [0.0.1-next.60](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.59...web-v0.0.1-next.60) (2025-06-17)
907
1769
 
908
1770
 
909
1771
  ### Miscellaneous Chores
@@ -918,12 +1780,12 @@
918
1780
  * @twin.org/core bumped from 0.0.1-next.59 to 0.0.1-next.60
919
1781
  * @twin.org/crypto bumped from 0.0.1-next.59 to 0.0.1-next.60
920
1782
 
921
- ## [0.0.1-next.59](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.58...web-v0.0.1-next.59) (2025-06-17)
1783
+ ## [0.0.1-next.59](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.58...web-v0.0.1-next.59) (2025-06-17)
922
1784
 
923
1785
 
924
1786
  ### Features
925
1787
 
926
- * propagate includeStackTrace on error conversion ([098fc72](https://github.com/twinfoundation/framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
1788
+ * propagate includeStackTrace on error conversion ([098fc72](https://github.com/iotaledger/twin-framework/commit/098fc729939ea3127f2bdcc0ddb6754096c5f919))
927
1789
 
928
1790
 
929
1791
  ### Dependencies
@@ -933,7 +1795,7 @@
933
1795
  * @twin.org/core bumped from 0.0.1-next.58 to 0.0.1-next.59
934
1796
  * @twin.org/crypto bumped from 0.0.1-next.58 to 0.0.1-next.59
935
1797
 
936
- ## [0.0.1-next.58](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.57...web-v0.0.1-next.58) (2025-06-13)
1798
+ ## [0.0.1-next.58](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.57...web-v0.0.1-next.58) (2025-06-13)
937
1799
 
938
1800
 
939
1801
  ### Miscellaneous Chores
@@ -948,12 +1810,12 @@
948
1810
  * @twin.org/core bumped from 0.0.1-next.57 to 0.0.1-next.58
949
1811
  * @twin.org/crypto bumped from 0.0.1-next.57 to 0.0.1-next.58
950
1812
 
951
- ## [0.0.1-next.57](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.56...web-v0.0.1-next.57) (2025-06-10)
1813
+ ## [0.0.1-next.57](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.56...web-v0.0.1-next.57) (2025-06-10)
952
1814
 
953
1815
 
954
1816
  ### Features
955
1817
 
956
- * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/twinfoundation/framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
1818
+ * add guards arrayEndsWith and arrayStartsWith ([95d875e](https://github.com/iotaledger/twin-framework/commit/95d875ec8ccb4713c145fdde941d4cfedcec2ed3))
957
1819
 
958
1820
 
959
1821
  ### Dependencies
@@ -963,7 +1825,7 @@
963
1825
  * @twin.org/core bumped from 0.0.1-next.56 to 0.0.1-next.57
964
1826
  * @twin.org/crypto bumped from 0.0.1-next.56 to 0.0.1-next.57
965
1827
 
966
- ## [0.0.1-next.56](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.55...web-v0.0.1-next.56) (2025-05-08)
1828
+ ## [0.0.1-next.56](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.55...web-v0.0.1-next.56) (2025-05-08)
967
1829
 
968
1830
 
969
1831
  ### Miscellaneous Chores
@@ -978,12 +1840,12 @@
978
1840
  * @twin.org/core bumped from 0.0.1-next.55 to 0.0.1-next.56
979
1841
  * @twin.org/crypto bumped from 0.0.1-next.55 to 0.0.1-next.56
980
1842
 
981
- ## [0.0.1-next.55](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.54...web-v0.0.1-next.55) (2025-05-07)
1843
+ ## [0.0.1-next.55](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.54...web-v0.0.1-next.55) (2025-05-07)
982
1844
 
983
1845
 
984
1846
  ### Features
985
1847
 
986
- * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/twinfoundation/framework/issues/136)) ([46a5af1](https://github.com/twinfoundation/framework/commit/46a5af127192d7048068275d14f555f09add3642))
1848
+ * ensure the alg is the correct one when generating JWK or JWS ([#136](https://github.com/iotaledger/twin-framework/issues/136)) ([46a5af1](https://github.com/iotaledger/twin-framework/commit/46a5af127192d7048068275d14f555f09add3642))
987
1849
 
988
1850
 
989
1851
  ### Dependencies
@@ -993,12 +1855,12 @@
993
1855
  * @twin.org/core bumped from 0.0.1-next.54 to 0.0.1-next.55
994
1856
  * @twin.org/crypto bumped from 0.0.1-next.54 to 0.0.1-next.55
995
1857
 
996
- ## [0.0.1-next.54](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.53...web-v0.0.1-next.54) (2025-05-06)
1858
+ ## [0.0.1-next.54](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.53...web-v0.0.1-next.54) (2025-05-06)
997
1859
 
998
1860
 
999
1861
  ### Bug Fixes
1000
1862
 
1001
- * wrap inner error within FetchError / 2 ([#134](https://github.com/twinfoundation/framework/issues/134)) ([2ddb101](https://github.com/twinfoundation/framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
1863
+ * wrap inner error within FetchError / 2 ([#134](https://github.com/iotaledger/twin-framework/issues/134)) ([2ddb101](https://github.com/iotaledger/twin-framework/commit/2ddb101c3778be4e99559e37aa036cd7101585fb))
1002
1864
 
1003
1865
 
1004
1866
  ### Dependencies
@@ -1008,7 +1870,7 @@
1008
1870
  * @twin.org/core bumped from 0.0.1-next.53 to 0.0.1-next.54
1009
1871
  * @twin.org/crypto bumped from 0.0.1-next.53 to 0.0.1-next.54
1010
1872
 
1011
- ## [0.0.1-next.53](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.52...web-v0.0.1-next.53) (2025-05-01)
1873
+ ## [0.0.1-next.53](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.52...web-v0.0.1-next.53) (2025-05-01)
1012
1874
 
1013
1875
 
1014
1876
  ### Miscellaneous Chores
@@ -1023,12 +1885,12 @@
1023
1885
  * @twin.org/core bumped from 0.0.1-next.52 to 0.0.1-next.53
1024
1886
  * @twin.org/crypto bumped from 0.0.1-next.52 to 0.0.1-next.53
1025
1887
 
1026
- ## [0.0.1-next.52](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.51...web-v0.0.1-next.52) (2025-04-17)
1888
+ ## [0.0.1-next.52](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.51...web-v0.0.1-next.52) (2025-04-17)
1027
1889
 
1028
1890
 
1029
1891
  ### Features
1030
1892
 
1031
- * use new shared store mechanism ([#131](https://github.com/twinfoundation/framework/issues/131)) ([934385b](https://github.com/twinfoundation/framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1893
+ * use new shared store mechanism ([#131](https://github.com/iotaledger/twin-framework/issues/131)) ([934385b](https://github.com/iotaledger/twin-framework/commit/934385b2fbaf9f5c00a505ebf9d093bd5a425f55))
1032
1894
 
1033
1895
 
1034
1896
  ### Dependencies
@@ -1038,7 +1900,7 @@
1038
1900
  * @twin.org/core bumped from 0.0.1-next.51 to 0.0.1-next.52
1039
1901
  * @twin.org/crypto bumped from 0.0.1-next.51 to 0.0.1-next.52
1040
1902
 
1041
- ## [0.0.1-next.51](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.50...web-v0.0.1-next.51) (2025-03-27)
1903
+ ## [0.0.1-next.51](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.50...web-v0.0.1-next.51) (2025-03-27)
1042
1904
 
1043
1905
 
1044
1906
  ### Miscellaneous Chores
@@ -1053,12 +1915,12 @@
1053
1915
  * @twin.org/core bumped from 0.0.1-next.50 to 0.0.1-next.51
1054
1916
  * @twin.org/crypto bumped from 0.0.1-next.50 to 0.0.1-next.51
1055
1917
 
1056
- ## [0.0.1-next.50](https://github.com/twinfoundation/framework/compare/web-v0.0.1-next.49...web-v0.0.1-next.50) (2025-03-26)
1918
+ ## [0.0.1-next.50](https://github.com/iotaledger/twin-framework/compare/web-v0.0.1-next.49...web-v0.0.1-next.50) (2025-03-26)
1057
1919
 
1058
1920
 
1059
1921
  ### Features
1060
1922
 
1061
- * add set method for async caches ([ba34b55](https://github.com/twinfoundation/framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
1923
+ * add set method for async caches ([ba34b55](https://github.com/iotaledger/twin-framework/commit/ba34b55e651ad56ab8fc59e139e4af631c19cda0))
1062
1924
 
1063
1925
 
1064
1926
  ### Dependencies