hyperstack-macros 0.5.2

Proc-macros for defining HyperStack streams
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
# Changelog

## [0.5.2]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.5.1...hyperstack-macros-v0.5.2 (2026-02-07)


### Bug Fixes

* batch primary and resolver mutations to avoid duplicate frames ([160feee]https://github.com/HyperTekOrg/hyperstack/commit/160feee69c8e9429939f13cdf81359278750f241)

## [0.5.1]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.5.0...hyperstack-macros-v0.5.1 (2026-02-06)


### Miscellaneous Chores

* **hyperstack-macros:** Synchronize hyperstack versions

## [0.5.0]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.4.3...hyperstack-macros-v0.5.0 (2026-02-06)


### Features

* add append hints to frame protocol for granular array updates ([ce2213f]https://github.com/HyperTekOrg/hyperstack/commit/ce2213fc5a2c242cb4833ab417ff3d71f918812f)
* add bytemuck serialization support and fix lookup index key resolution ([b2dcd1f]https://github.com/HyperTekOrg/hyperstack/commit/b2dcd1fa881644d7d4fdc909216fa1ef2995dd7b)
* add derived view support to React SDK and macros ([5f6414f]https://github.com/HyperTekOrg/hyperstack/commit/5f6414f879f2891be2d8ee5c16173cf83ddf2ea9)
* Add deterministic sorting ([e775f59]https://github.com/HyperTekOrg/hyperstack/commit/e775f598a95165b2dd5504be67d24e7b1dabc766)
* add gRPC stream reconnection with exponential backoff ([48e3ec7]https://github.com/HyperTekOrg/hyperstack/commit/48e3ec7a952399135a84323da78cdc499804bce9)
* Add PDA and Instruction type definitions for SDK code generation ([6a74067]https://github.com/HyperTekOrg/hyperstack/commit/6a7406751d865b9e4caef3749779217e305636a5)
* add PDA resolution hooks and multi-program stack support ([f4210a0]https://github.com/HyperTekOrg/hyperstack/commit/f4210a0a665f75f60fce09634e9ddbdde3f6898c)
* add resolver support with resolve attribute and computed field methods ([aed45c8]https://github.com/HyperTekOrg/hyperstack/commit/aed45c81477267cb6a005d439ee30400c1e24e5c)
* add resolver-declared transforms to #[map] attribute ([8f35bff]https://github.com/HyperTekOrg/hyperstack/commit/8f35bff8c3fa811e4bfb50a1c431ecc09822e2d2)
* add resolver-provided computed methods (ui_amount, raw_amount) ([3729710]https://github.com/HyperTekOrg/hyperstack/commit/372971072f597625905a1365da4ec2e5e8d9d978)
* add stop attribute for conditional field population ([441cfef]https://github.com/HyperTekOrg/hyperstack/commit/441cfef39760af9b3af78b992d1269eaeecd2f99)
* add token metadata resolver with DAS API integration ([ced55fe]https://github.com/HyperTekOrg/hyperstack/commit/ced55fe4981e0f36abbebe277438eb17ea01b519)
* add view pipeline for derived views like `latest`, `top10` ([f2f72fa]https://github.com/HyperTekOrg/hyperstack/commit/f2f72fa8894d2a38a13e8ee05791b7e4124977ea)
* **computed:** add __slot and __timestamp context access in computed fields ([b707f95]https://github.com/HyperTekOrg/hyperstack/commit/b707f95058f74ae52c6003bc2d68e948e657e70e)
* **computed:** support resolver computed fields inside array .map() closures ([1f571c0]https://github.com/HyperTekOrg/hyperstack/commit/1f571c08caa2da41192c3b45399f1abe747dda10)
* **interpreter:** add memory limits and LRU eviction to prevent unbounded growth ([33198a6]https://github.com/HyperTekOrg/hyperstack/commit/33198a69833de6e57f0c5fe568b0714a2105e987)
* **interpreter:** add staleness detection to reject out-of-order gRPC updates ([d693f42]https://github.com/HyperTekOrg/hyperstack/commit/d693f421742258bbbd3528ffbbd4731d638c992b)
* **macros:** add #[view] attribute for declarative view definitions on entities ([3f0bdc5]https://github.com/HyperTekOrg/hyperstack/commit/3f0bdc51d7945c32082ffa8997362328c7b26022)
* **macros:** support tuple structs, 8-byte discriminators, and optional error messages in IDL ([090b5d6]https://github.com/HyperTekOrg/hyperstack/commit/090b5d62999e7bbae2dfb577a0d028b6675def01)
* multi-IDL support with always-scoped naming ([d752008]https://github.com/HyperTekOrg/hyperstack/commit/d752008c8662b8dd91a4b411e9f9ff4404630f81)
* **sdk:** add sorted view support with server-side subscribed frame ([1a7d83f]https://github.com/HyperTekOrg/hyperstack/commit/1a7d83fe4000c26d282f2df9ce95f9d79414014d)
* **server:** add slot-based sequence ordering for list views ([892c3d5]https://github.com/HyperTekOrg/hyperstack/commit/892c3d526c71df4c4d848142908ce511e302e082)
* **server:** add trace context propagation and expanded telemetry ([0dbd8ed]https://github.com/HyperTekOrg/hyperstack/commit/0dbd8ed49780dd2f8f793b6af2425b47d9ccb151)
* unified multi-entity stack spec format with SDK generation ([00194c5]https://github.com/HyperTekOrg/hyperstack/commit/00194c58b1d1bfc5d7dc9f46506ebd9c35af7338)


### Bug Fixes

* Account lookup ([bdf8b55]https://github.com/HyperTekOrg/hyperstack/commit/bdf8b5564619695575503e817507c0c8238cecac)
* Broken streams after naming refactor ([64437b4]https://github.com/HyperTekOrg/hyperstack/commit/64437b4d80c3b2ec68468ce11bbeaab49678aa8b)
* Clippy errors ([d6a9f4d]https://github.com/HyperTekOrg/hyperstack/commit/d6a9f4d27f619d05189f421e214f6eacb8c19542)
* Codegen correct path for bytemuck ([ae1d6b5]https://github.com/HyperTekOrg/hyperstack/commit/ae1d6b52a6c1c216542888a7516fcd33fb619054)
* convert field names to camelCase for JSON serialization ([3dc05a4]https://github.com/HyperTekOrg/hyperstack/commit/3dc05a4eddebca9636827562f9793fdf1c16c1c9)
* correct lookup resolution and conditional mappings ([0c1ac80]https://github.com/HyperTekOrg/hyperstack/commit/0c1ac809d65eb6139b1208e041817ca9d0f73724)
* flush queued account updates when lookup index is populated ([8a09279]https://github.com/HyperTekOrg/hyperstack/commit/8a09279c06a369d513c2b1d2f0cbf1560187db6f)
* Logging ([b727602]https://github.com/HyperTekOrg/hyperstack/commit/b727602bd0a232fcede8bfdeea4c9ec3d060483d)
* Logs ([163b5ff]https://github.com/HyperTekOrg/hyperstack/commit/163b5ff75dababdf17761b193b7f3b8d3d7bc30c)
* **macros:** add explicit type annotation to account_names vector ([76a124e]https://github.com/HyperTekOrg/hyperstack/commit/76a124ef623c6aabd4d88ae688701403105a80dd)
* **macros:** convert lookup_indexes field_name to camelCase ([0c65c07]https://github.com/HyperTekOrg/hyperstack/commit/0c65c071adb36a768708eb53d05f3dcf0fb3c3b6)
* **macros:** recover from poisoned mutex and support block expressions in computed fields ([1106e77]https://github.com/HyperTekOrg/hyperstack/commit/1106e7774dd43639444b79c1d2fc2d8099e7fa5c)
* **macros:** simplify account mapping and warn on IDL mismatch ([597ea1e]https://github.com/HyperTekOrg/hyperstack/commit/597ea1e155e9fa19572f1d32a4c3089a7c7c57ca)
* Map syntax ([8a5eaad]https://github.com/HyperTekOrg/hyperstack/commit/8a5eaadf5642dc7e569b2591e8e051c728a6eb9f)
* Module name snake case ([72348a4]https://github.com/HyperTekOrg/hyperstack/commit/72348a42ee3988e94873db0d24317f3e661e093d)
* prefix unused variable with underscore to satisfy clippy ([06f1819]https://github.com/HyperTekOrg/hyperstack/commit/06f1819193721f48edd96723c4cc833745732070)
* Preserve integer types in computed field expressions ([616f042]https://github.com/HyperTekOrg/hyperstack/commit/616f04288637a84a4eed0febebf9867e06d134cb)
* preserve VM state across reconnections and add memory management ([7fba770]https://github.com/HyperTekOrg/hyperstack/commit/7fba770df913dd0fbd06e43b402c6c288b25acbb)
* prevent entity field loss from partial patches in sorted cache ([1e3c8e6]https://github.com/HyperTekOrg/hyperstack/commit/1e3c8e6f25b2b7968e60754e8175c7a66f68c908)
* Remove ast build log output ([67ebb21]https://github.com/HyperTekOrg/hyperstack/commit/67ebb21746b9142ef52c46caae5019a925db3a2b)
* resolve clippy warnings across workspace ([565d92b]https://github.com/HyperTekOrg/hyperstack/commit/565d92b91552d92262cfaeca9674d0ad4d3f6b5d)
* resolve clippy warnings for Rust 1.91 ([10c1611]https://github.com/HyperTekOrg/hyperstack/commit/10c1611282babb70bbe70d19fb599c83654caa6c)
* Update naming ([4381946]https://github.com/HyperTekOrg/hyperstack/commit/4381946147e9c51c7de0cb0e63a052c9e9379600)
* wire auto-generated lookup resolvers into IDL codegen path ([1175753]https://github.com/HyperTekOrg/hyperstack/commit/1175753d45a0cdf512e0f173df0964d9fddd889b)

## [0.4.3]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.4.2...hyperstack-macros-v0.4.3 (2026-02-03)


### Features

* add PDA resolution hooks and multi-program stack support ([f4210a0]https://github.com/HyperTekOrg/hyperstack/commit/f4210a0a665f75f60fce09634e9ddbdde3f6898c)
* multi-IDL support with always-scoped naming ([d752008]https://github.com/HyperTekOrg/hyperstack/commit/d752008c8662b8dd91a4b411e9f9ff4404630f81)
* unified multi-entity stack spec format with SDK generation ([00194c5]https://github.com/HyperTekOrg/hyperstack/commit/00194c58b1d1bfc5d7dc9f46506ebd9c35af7338)


### Bug Fixes

* correct lookup resolution and conditional mappings ([0c1ac80]https://github.com/HyperTekOrg/hyperstack/commit/0c1ac809d65eb6139b1208e041817ca9d0f73724)
* resolve clippy warnings for Rust 1.91 ([10c1611]https://github.com/HyperTekOrg/hyperstack/commit/10c1611282babb70bbe70d19fb599c83654caa6c)

## [0.4.2]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.4.1...hyperstack-macros-v0.4.2 (2026-02-01)


### Bug Fixes

* Codegen correct path for bytemuck ([ae1d6b5]https://github.com/HyperTekOrg/hyperstack/commit/ae1d6b52a6c1c216542888a7516fcd33fb619054)

## [0.4.1]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.4.0...hyperstack-macros-v0.4.1 (2026-02-01)


### Features

* add bytemuck serialization support and fix lookup index key resolution ([b2dcd1f]https://github.com/HyperTekOrg/hyperstack/commit/b2dcd1fa881644d7d4fdc909216fa1ef2995dd7b)


### Bug Fixes

* flush queued account updates when lookup index is populated ([8a09279]https://github.com/HyperTekOrg/hyperstack/commit/8a09279c06a369d513c2b1d2f0cbf1560187db6f)
* wire auto-generated lookup resolvers into IDL codegen path ([1175753]https://github.com/HyperTekOrg/hyperstack/commit/1175753d45a0cdf512e0f173df0964d9fddd889b)

## [0.4.0]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.3.15...hyperstack-macros-v0.4.0 (2026-01-31)


### Features

* add append hints to frame protocol for granular array updates ([ce2213f]https://github.com/HyperTekOrg/hyperstack/commit/ce2213fc5a2c242cb4833ab417ff3d71f918812f)
* add derived view support to React SDK and macros ([5f6414f]https://github.com/HyperTekOrg/hyperstack/commit/5f6414f879f2891be2d8ee5c16173cf83ddf2ea9)
* Add deterministic sorting ([e775f59]https://github.com/HyperTekOrg/hyperstack/commit/e775f598a95165b2dd5504be67d24e7b1dabc766)
* add gRPC stream reconnection with exponential backoff ([48e3ec7]https://github.com/HyperTekOrg/hyperstack/commit/48e3ec7a952399135a84323da78cdc499804bce9)
* add view pipeline for derived views like `latest`, `top10` ([f2f72fa]https://github.com/HyperTekOrg/hyperstack/commit/f2f72fa8894d2a38a13e8ee05791b7e4124977ea)
* **interpreter:** add memory limits and LRU eviction to prevent unbounded growth ([33198a6]https://github.com/HyperTekOrg/hyperstack/commit/33198a69833de6e57f0c5fe568b0714a2105e987)
* **interpreter:** add staleness detection to reject out-of-order gRPC updates ([d693f42]https://github.com/HyperTekOrg/hyperstack/commit/d693f421742258bbbd3528ffbbd4731d638c992b)
* **macros:** add #[view] attribute for declarative view definitions on entities ([3f0bdc5]https://github.com/HyperTekOrg/hyperstack/commit/3f0bdc51d7945c32082ffa8997362328c7b26022)
* **macros:** support tuple structs, 8-byte discriminators, and optional error messages in IDL ([090b5d6]https://github.com/HyperTekOrg/hyperstack/commit/090b5d62999e7bbae2dfb577a0d028b6675def01)
* **sdk:** add sorted view support with server-side subscribed frame ([1a7d83f]https://github.com/HyperTekOrg/hyperstack/commit/1a7d83fe4000c26d282f2df9ce95f9d79414014d)
* **server:** add slot-based sequence ordering for list views ([892c3d5]https://github.com/HyperTekOrg/hyperstack/commit/892c3d526c71df4c4d848142908ce511e302e082)
* **server:** add trace context propagation and expanded telemetry ([0dbd8ed]https://github.com/HyperTekOrg/hyperstack/commit/0dbd8ed49780dd2f8f793b6af2425b47d9ccb151)


### Bug Fixes

* Account lookup ([bdf8b55]https://github.com/HyperTekOrg/hyperstack/commit/bdf8b5564619695575503e817507c0c8238cecac)
* Broken streams after naming refactor ([64437b4]https://github.com/HyperTekOrg/hyperstack/commit/64437b4d80c3b2ec68468ce11bbeaab49678aa8b)
* Clippy errors ([d6a9f4d]https://github.com/HyperTekOrg/hyperstack/commit/d6a9f4d27f619d05189f421e214f6eacb8c19542)
* convert field names to camelCase for JSON serialization ([3dc05a4]https://github.com/HyperTekOrg/hyperstack/commit/3dc05a4eddebca9636827562f9793fdf1c16c1c9)
* Logging ([b727602]https://github.com/HyperTekOrg/hyperstack/commit/b727602bd0a232fcede8bfdeea4c9ec3d060483d)
* Logs ([163b5ff]https://github.com/HyperTekOrg/hyperstack/commit/163b5ff75dababdf17761b193b7f3b8d3d7bc30c)
* **macros:** add explicit type annotation to account_names vector ([76a124e]https://github.com/HyperTekOrg/hyperstack/commit/76a124ef623c6aabd4d88ae688701403105a80dd)
* **macros:** convert lookup_indexes field_name to camelCase ([0c65c07]https://github.com/HyperTekOrg/hyperstack/commit/0c65c071adb36a768708eb53d05f3dcf0fb3c3b6)
* **macros:** simplify account mapping and warn on IDL mismatch ([597ea1e]https://github.com/HyperTekOrg/hyperstack/commit/597ea1e155e9fa19572f1d32a4c3089a7c7c57ca)
* Map syntax ([8a5eaad]https://github.com/HyperTekOrg/hyperstack/commit/8a5eaadf5642dc7e569b2591e8e051c728a6eb9f)
* Module name snake case ([72348a4]https://github.com/HyperTekOrg/hyperstack/commit/72348a42ee3988e94873db0d24317f3e661e093d)
* prefix unused variable with underscore to satisfy clippy ([06f1819]https://github.com/HyperTekOrg/hyperstack/commit/06f1819193721f48edd96723c4cc833745732070)
* Preserve integer types in computed field expressions ([616f042]https://github.com/HyperTekOrg/hyperstack/commit/616f04288637a84a4eed0febebf9867e06d134cb)
* preserve VM state across reconnections and add memory management ([7fba770]https://github.com/HyperTekOrg/hyperstack/commit/7fba770df913dd0fbd06e43b402c6c288b25acbb)
* prevent entity field loss from partial patches in sorted cache ([1e3c8e6]https://github.com/HyperTekOrg/hyperstack/commit/1e3c8e6f25b2b7968e60754e8175c7a66f68c908)
* Remove ast build log output ([67ebb21]https://github.com/HyperTekOrg/hyperstack/commit/67ebb21746b9142ef52c46caae5019a925db3a2b)
* Update naming ([4381946]https://github.com/HyperTekOrg/hyperstack/commit/4381946147e9c51c7de0cb0e63a052c9e9379600)

## [0.3.15]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.3.14...hyperstack-macros-v0.3.15 (2026-01-31)


### Bug Fixes

* prefix unused variable with underscore to satisfy clippy ([06f1819]https://github.com/HyperTekOrg/hyperstack/commit/06f1819193721f48edd96723c4cc833745732070)
* prevent entity field loss from partial patches in sorted cache ([1e3c8e6]https://github.com/HyperTekOrg/hyperstack/commit/1e3c8e6f25b2b7968e60754e8175c7a66f68c908)
* Remove ast build log output ([67ebb21]https://github.com/HyperTekOrg/hyperstack/commit/67ebb21746b9142ef52c46caae5019a925db3a2b)

## [0.3.14]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.3.13...hyperstack-macros-v0.3.14 (2026-01-28)


### Miscellaneous Chores

* **hyperstack-macros:** Synchronize hyperstack versions

## [0.3.13]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.3.12...hyperstack-macros-v0.3.13 (2026-01-28)


### Miscellaneous Chores

* **hyperstack-macros:** Synchronize hyperstack versions

## [0.3.12]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.3.11...hyperstack-macros-v0.3.12 (2026-01-28)


### Miscellaneous Chores

* **hyperstack-macros:** Synchronize hyperstack versions

## [0.3.11]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.3.10...hyperstack-macros-v0.3.11 (2026-01-28)


### Miscellaneous Chores

* **hyperstack-macros:** Synchronize hyperstack versions

## [0.3.10]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.3.9...hyperstack-macros-v0.3.10 (2026-01-28)


### Bug Fixes

* Logs ([163b5ff]https://github.com/HyperTekOrg/hyperstack/commit/163b5ff75dababdf17761b193b7f3b8d3d7bc30c)

## [0.3.9]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.3.8...hyperstack-macros-v0.3.9 (2026-01-28)


### Miscellaneous Chores

* **hyperstack-macros:** Synchronize hyperstack versions

## [0.3.8]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.3.7...hyperstack-macros-v0.3.8 (2026-01-28)


### Miscellaneous Chores

* **hyperstack-macros:** Synchronize hyperstack versions

## [0.3.7]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.3.6...hyperstack-macros-v0.3.7 (2026-01-26)


### Miscellaneous Chores

* **hyperstack-macros:** Synchronize hyperstack versions

## [0.3.6]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.3.5...hyperstack-macros-v0.3.6 (2026-01-26)


### Miscellaneous Chores

* **hyperstack-macros:** Synchronize hyperstack versions

## [0.3.5]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.3.4...hyperstack-macros-v0.3.5 (2026-01-24)


### Miscellaneous Chores

* **hyperstack-macros:** Synchronize hyperstack versions

## [0.3.4]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.3.3...hyperstack-macros-v0.3.4 (2026-01-24)


### Bug Fixes

* **macros:** add explicit type annotation to account_names vector ([76a124e]https://github.com/HyperTekOrg/hyperstack/commit/76a124ef623c6aabd4d88ae688701403105a80dd)

## [0.3.3]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.3.2...hyperstack-macros-v0.3.3 (2026-01-23)


### Features

* add derived view support to React SDK and macros ([5f6414f]https://github.com/HyperTekOrg/hyperstack/commit/5f6414f879f2891be2d8ee5c16173cf83ddf2ea9)
* add view pipeline for derived views like `latest`, `top10` ([f2f72fa]https://github.com/HyperTekOrg/hyperstack/commit/f2f72fa8894d2a38a13e8ee05791b7e4124977ea)
* **macros:** add #[view] attribute for declarative view definitions on entities ([3f0bdc5]https://github.com/HyperTekOrg/hyperstack/commit/3f0bdc51d7945c32082ffa8997362328c7b26022)
* **macros:** support tuple structs, 8-byte discriminators, and optional error messages in IDL ([090b5d6]https://github.com/HyperTekOrg/hyperstack/commit/090b5d62999e7bbae2dfb577a0d028b6675def01)
* **sdk:** add sorted view support with server-side subscribed frame ([1a7d83f]https://github.com/HyperTekOrg/hyperstack/commit/1a7d83fe4000c26d282f2df9ce95f9d79414014d)
* **server:** add slot-based sequence ordering for list views ([892c3d5]https://github.com/HyperTekOrg/hyperstack/commit/892c3d526c71df4c4d848142908ce511e302e082)


### Bug Fixes

* Account lookup ([bdf8b55]https://github.com/HyperTekOrg/hyperstack/commit/bdf8b5564619695575503e817507c0c8238cecac)
* convert field names to camelCase for JSON serialization ([3dc05a4]https://github.com/HyperTekOrg/hyperstack/commit/3dc05a4eddebca9636827562f9793fdf1c16c1c9)
* Logging ([b727602]https://github.com/HyperTekOrg/hyperstack/commit/b727602bd0a232fcede8bfdeea4c9ec3d060483d)
* **macros:** convert lookup_indexes field_name to camelCase ([0c65c07]https://github.com/HyperTekOrg/hyperstack/commit/0c65c071adb36a768708eb53d05f3dcf0fb3c3b6)
* **macros:** simplify account mapping and warn on IDL mismatch ([597ea1e]https://github.com/HyperTekOrg/hyperstack/commit/597ea1e155e9fa19572f1d32a4c3089a7c7c57ca)

## [0.3.2]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.3.1...hyperstack-macros-v0.3.2 (2026-01-20)


### Miscellaneous Chores

* **hyperstack-macros:** Synchronize hyperstack versions

## [0.3.1]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.3.0...hyperstack-macros-v0.3.1 (2026-01-20)


### Miscellaneous Chores

* **hyperstack-macros:** Synchronize hyperstack versions

## [0.3.0]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.2.5...hyperstack-macros-v0.3.0 (2026-01-20)


### Miscellaneous Chores

* **hyperstack-macros:** Synchronize hyperstack versions

## [0.2.5]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.2.4...hyperstack-macros-v0.2.5 (2026-01-19)


### Miscellaneous Chores

* **hyperstack-macros:** Synchronize hyperstack versions

## [0.2.4]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.2.3...hyperstack-macros-v0.2.4 (2026-01-19)


### Miscellaneous Chores

* **hyperstack-macros:** Synchronize hyperstack versions

## [0.2.3]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.2.2...hyperstack-macros-v0.2.3 (2026-01-18)


### Features

* add append hints to frame protocol for granular array updates ([ce2213f]https://github.com/HyperTekOrg/hyperstack/commit/ce2213fc5a2c242cb4833ab417ff3d71f918812f)
* **server:** add trace context propagation and expanded telemetry ([0dbd8ed]https://github.com/HyperTekOrg/hyperstack/commit/0dbd8ed49780dd2f8f793b6af2425b47d9ccb151)


### Bug Fixes

* preserve VM state across reconnections and add memory management ([7fba770]https://github.com/HyperTekOrg/hyperstack/commit/7fba770df913dd0fbd06e43b402c6c288b25acbb)

## [0.2.2]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.2.1...hyperstack-macros-v0.2.2 (2026-01-16)


### Features

* **interpreter:** add memory limits and LRU eviction to prevent unbounded growth ([33198a6]https://github.com/HyperTekOrg/hyperstack/commit/33198a69833de6e57f0c5fe568b0714a2105e987)
* **interpreter:** add staleness detection to reject out-of-order gRPC updates ([d693f42]https://github.com/HyperTekOrg/hyperstack/commit/d693f421742258bbbd3528ffbbd4731d638c992b)


### Bug Fixes

* Clippy errors ([d6a9f4d]https://github.com/HyperTekOrg/hyperstack/commit/d6a9f4d27f619d05189f421e214f6eacb8c19542)

## [0.2.1]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.2.0...hyperstack-macros-v0.2.1 (2026-01-16)


### Features

* add gRPC stream reconnection with exponential backoff ([48e3ec7]https://github.com/HyperTekOrg/hyperstack/commit/48e3ec7a952399135a84323da78cdc499804bce9)

## [0.2.0]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.1.11...hyperstack-macros-v0.2.0 (2026-01-15)


### Miscellaneous Chores

* **hyperstack-macros:** Synchronize hyperstack versions

## [0.1.11]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.1.10...hyperstack-macros-v0.1.11 (2026-01-14)


### Miscellaneous Chores

* **hyperstack-macros:** Synchronize hyperstack versions

## [0.1.10]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.1.9...hyperstack-macros-v0.1.10 (2026-01-13)


### Features

* Add deterministic sorting ([e775f59]https://github.com/HyperTekOrg/hyperstack/commit/e775f598a95165b2dd5504be67d24e7b1dabc766)

## [0.1.9]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.1.8...hyperstack-macros-v0.1.9 (2026-01-13)


### Miscellaneous Chores

* **hyperstack-macros:** Synchronize hyperstack versions

## [0.1.8]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.1.6...hyperstack-macros-v0.1.8 (2026-01-13)


### Bug Fixes

* Broken streams after naming refactor ([64437b4]https://github.com/HyperTekOrg/hyperstack/commit/64437b4d80c3b2ec68468ce11bbeaab49678aa8b)
* Map syntax ([8a5eaad]https://github.com/HyperTekOrg/hyperstack/commit/8a5eaadf5642dc7e569b2591e8e051c728a6eb9f)
* Module name snake case ([72348a4]https://github.com/HyperTekOrg/hyperstack/commit/72348a42ee3988e94873db0d24317f3e661e093d)
* Preserve integer types in computed field expressions ([616f042]https://github.com/HyperTekOrg/hyperstack/commit/616f04288637a84a4eed0febebf9867e06d134cb)
* Update naming ([4381946]https://github.com/HyperTekOrg/hyperstack/commit/4381946147e9c51c7de0cb0e63a052c9e9379600)

## [0.1.6]https://github.com/HyperTekOrg/hyperstack/compare/v0.1.5...v0.1.6 (2026-01-13)


### Bug Fixes

* Broken streams after naming refactor ([64437b4]https://github.com/HyperTekOrg/hyperstack/commit/64437b4d80c3b2ec68468ce11bbeaab49678aa8b)
* Map syntax ([8a5eaad]https://github.com/HyperTekOrg/hyperstack/commit/8a5eaadf5642dc7e569b2591e8e051c728a6eb9f)
* Module name snake case ([72348a4]https://github.com/HyperTekOrg/hyperstack/commit/72348a42ee3988e94873db0d24317f3e661e093d)
* Preserve integer types in computed field expressions ([616f042]https://github.com/HyperTekOrg/hyperstack/commit/616f04288637a84a4eed0febebf9867e06d134cb)
* Update naming ([4381946]https://github.com/HyperTekOrg/hyperstack/commit/4381946147e9c51c7de0cb0e63a052c9e9379600)

## [0.1.5]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.1.4...hyperstack-macros-v0.1.5 (2026-01-09)


### Bug Fixes

* Broken streams after naming refactor ([64437b4]https://github.com/HyperTekOrg/hyperstack/commit/64437b4d80c3b2ec68468ce11bbeaab49678aa8b)
* Map syntax ([8a5eaad]https://github.com/HyperTekOrg/hyperstack/commit/8a5eaadf5642dc7e569b2591e8e051c728a6eb9f)
* Module name snake case ([72348a4]https://github.com/HyperTekOrg/hyperstack/commit/72348a42ee3988e94873db0d24317f3e661e093d)

## [0.1.4]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.1.2...hyperstack-macros-v0.1.4 (2026-01-09)


### Miscellaneous Chores

* **hyperstack-macros:** Synchronize hyperstack versions

## [0.1.2]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-macros-v0.1.1...hyperstack-macros-v0.1.2 (2026-01-09)


### Bug Fixes

* Update naming ([4381946]https://github.com/HyperTekOrg/hyperstack/commit/4381946147e9c51c7de0cb0e63a052c9e9379600)

## [0.1.1]https://github.com/HyperTekOrg/hyperstack/compare/hyperstack-spec-macros-v0.1.0...hyperstack-spec-macros-v0.1.1 (2026-01-09)


### Features

* Better sdk types during generation ([f9555ef]https://github.com/HyperTekOrg/hyperstack/commit/f9555ef440eb9271a147d178d8b3554cf532b9c7)


### Bug Fixes

* Clippy errors/warnings ([e18fcd6]https://github.com/HyperTekOrg/hyperstack/commit/e18fcd66fb45ee33b0c6019ab65562d286c16eab)