@objectstack/runtime 4.0.4 → 4.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +37168 -1457
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +711 -6
- package/dist/index.d.ts +711 -6
- package/dist/index.js +37178 -1448
- package/dist/index.js.map +1 -1
- package/package.json +42 -9
- package/.turbo/turbo-build.log +0 -22
- package/CHANGELOG.md +0 -763
- package/src/app-plugin.test.ts +0 -274
- package/src/app-plugin.ts +0 -285
- package/src/dispatcher-plugin.ts +0 -503
- package/src/driver-plugin.ts +0 -76
- package/src/http-dispatcher.root.test.ts +0 -73
- package/src/http-dispatcher.test.ts +0 -1317
- package/src/http-dispatcher.ts +0 -1483
- package/src/http-server.ts +0 -142
- package/src/index.ts +0 -39
- package/src/middleware.ts +0 -222
- package/src/runtime.test.ts +0 -65
- package/src/runtime.ts +0 -69
- package/src/seed-loader.test.ts +0 -1123
- package/src/seed-loader.ts +0 -713
- package/tsconfig.json +0 -10
- package/vitest.config.ts +0 -26
package/CHANGELOG.md
DELETED
|
@@ -1,763 +0,0 @@
|
|
|
1
|
-
# @objectstack/runtime
|
|
2
|
-
|
|
3
|
-
## 4.0.4
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- Updated dependencies [326b66b]
|
|
8
|
-
- @objectstack/spec@4.0.4
|
|
9
|
-
- @objectstack/core@4.0.4
|
|
10
|
-
- @objectstack/rest@4.0.4
|
|
11
|
-
- @objectstack/types@4.0.4
|
|
12
|
-
|
|
13
|
-
## 4.0.3
|
|
14
|
-
|
|
15
|
-
### Patch Changes
|
|
16
|
-
|
|
17
|
-
- @objectstack/spec@4.0.3
|
|
18
|
-
- @objectstack/core@4.0.3
|
|
19
|
-
- @objectstack/types@4.0.3
|
|
20
|
-
- @objectstack/rest@4.0.3
|
|
21
|
-
|
|
22
|
-
## 4.0.2
|
|
23
|
-
|
|
24
|
-
### Patch Changes
|
|
25
|
-
|
|
26
|
-
- Updated dependencies [5f659e9]
|
|
27
|
-
- @objectstack/spec@4.0.2
|
|
28
|
-
- @objectstack/core@4.0.2
|
|
29
|
-
- @objectstack/rest@4.0.2
|
|
30
|
-
- @objectstack/types@4.0.2
|
|
31
|
-
|
|
32
|
-
## 4.0.0
|
|
33
|
-
|
|
34
|
-
### Patch Changes
|
|
35
|
-
|
|
36
|
-
- f08ffc3: Fix discovery API endpoint routing and protocol consistency.
|
|
37
|
-
|
|
38
|
-
**Discovery route standardization:**
|
|
39
|
-
|
|
40
|
-
- All adapters (Express, Fastify, Hono, NestJS, Next.js, Nuxt, SvelteKit) now mount the discovery endpoint at `{prefix}/discovery` instead of `{prefix}` root.
|
|
41
|
-
- `.well-known/objectstack` redirects now point to `{prefix}/discovery`.
|
|
42
|
-
- Client `connect()` fallback URL changed from `/api/v1` to `/api/v1/discovery`.
|
|
43
|
-
- Runtime dispatcher handles both `/discovery` (standard) and `/` (legacy) for backward compatibility.
|
|
44
|
-
|
|
45
|
-
**Schema & route alignment:**
|
|
46
|
-
|
|
47
|
-
- Added `storage` (service: `file-storage`) and `feed` (service: `data`) routes to `DEFAULT_DISPATCHER_ROUTES`.
|
|
48
|
-
- Added `feed` and `discovery` fields to `ApiRoutesSchema`.
|
|
49
|
-
- Unified `GetDiscoveryResponseSchema` with `DiscoverySchema` as single source of truth.
|
|
50
|
-
- Client `getRoute('feed')` fallback updated from `/api/v1/data` to `/api/v1/feed`.
|
|
51
|
-
|
|
52
|
-
**Type safety:**
|
|
53
|
-
|
|
54
|
-
- Extracted `ApiRouteType` from `ApiRoutes` keys for type-safe client route resolution.
|
|
55
|
-
- Removed `as any` type casting in client route access.
|
|
56
|
-
|
|
57
|
-
- e0b0a78: Deprecate DataEngineQueryOptions in favor of QueryAST-aligned EngineQueryOptions.
|
|
58
|
-
|
|
59
|
-
Engine, Protocol, and Client now use standard QueryAST parameter names:
|
|
60
|
-
|
|
61
|
-
- `filter` → `where`
|
|
62
|
-
- `select` → `fields`
|
|
63
|
-
- `sort` → `orderBy`
|
|
64
|
-
- `skip` → `offset`
|
|
65
|
-
- `populate` → `expand`
|
|
66
|
-
- `top` → `limit`
|
|
67
|
-
|
|
68
|
-
The old DataEngine\* schemas and types are preserved with `@deprecated` markers for backward compatibility.
|
|
69
|
-
|
|
70
|
-
- Updated dependencies [f08ffc3]
|
|
71
|
-
- Updated dependencies [e0b0a78]
|
|
72
|
-
- @objectstack/spec@4.0.0
|
|
73
|
-
- @objectstack/core@4.0.0
|
|
74
|
-
- @objectstack/rest@4.0.0
|
|
75
|
-
- @objectstack/types@4.0.0
|
|
76
|
-
|
|
77
|
-
## 3.3.1
|
|
78
|
-
|
|
79
|
-
### Patch Changes
|
|
80
|
-
|
|
81
|
-
- @objectstack/spec@3.3.1
|
|
82
|
-
- @objectstack/core@3.3.1
|
|
83
|
-
- @objectstack/types@3.3.1
|
|
84
|
-
- @objectstack/rest@3.3.1
|
|
85
|
-
|
|
86
|
-
## 3.3.0
|
|
87
|
-
|
|
88
|
-
### Patch Changes
|
|
89
|
-
|
|
90
|
-
- @objectstack/spec@3.3.0
|
|
91
|
-
- @objectstack/core@3.3.0
|
|
92
|
-
- @objectstack/types@3.3.0
|
|
93
|
-
- @objectstack/rest@3.3.0
|
|
94
|
-
|
|
95
|
-
## 3.2.9
|
|
96
|
-
|
|
97
|
-
### Patch Changes
|
|
98
|
-
|
|
99
|
-
- @objectstack/spec@3.2.9
|
|
100
|
-
- @objectstack/core@3.2.9
|
|
101
|
-
- @objectstack/types@3.2.9
|
|
102
|
-
- @objectstack/rest@3.2.9
|
|
103
|
-
|
|
104
|
-
## 3.2.8
|
|
105
|
-
|
|
106
|
-
### Patch Changes
|
|
107
|
-
|
|
108
|
-
- @objectstack/spec@3.2.8
|
|
109
|
-
- @objectstack/core@3.2.8
|
|
110
|
-
- @objectstack/types@3.2.8
|
|
111
|
-
- @objectstack/rest@3.2.8
|
|
112
|
-
|
|
113
|
-
## 3.2.7
|
|
114
|
-
|
|
115
|
-
### Patch Changes
|
|
116
|
-
|
|
117
|
-
- @objectstack/spec@3.2.7
|
|
118
|
-
- @objectstack/core@3.2.7
|
|
119
|
-
- @objectstack/types@3.2.7
|
|
120
|
-
- @objectstack/rest@3.2.7
|
|
121
|
-
|
|
122
|
-
## 3.2.6
|
|
123
|
-
|
|
124
|
-
### Patch Changes
|
|
125
|
-
|
|
126
|
-
- @objectstack/spec@3.2.6
|
|
127
|
-
- @objectstack/core@3.2.6
|
|
128
|
-
- @objectstack/types@3.2.6
|
|
129
|
-
- @objectstack/rest@3.2.6
|
|
130
|
-
|
|
131
|
-
## 3.2.5
|
|
132
|
-
|
|
133
|
-
### Patch Changes
|
|
134
|
-
|
|
135
|
-
- @objectstack/spec@3.2.5
|
|
136
|
-
- @objectstack/core@3.2.5
|
|
137
|
-
- @objectstack/types@3.2.5
|
|
138
|
-
- @objectstack/rest@3.2.5
|
|
139
|
-
|
|
140
|
-
## 3.2.4
|
|
141
|
-
|
|
142
|
-
### Patch Changes
|
|
143
|
-
|
|
144
|
-
- @objectstack/spec@3.2.4
|
|
145
|
-
- @objectstack/core@3.2.4
|
|
146
|
-
- @objectstack/types@3.2.4
|
|
147
|
-
- @objectstack/rest@3.2.4
|
|
148
|
-
|
|
149
|
-
## 3.2.3
|
|
150
|
-
|
|
151
|
-
### Patch Changes
|
|
152
|
-
|
|
153
|
-
- @objectstack/spec@3.2.3
|
|
154
|
-
- @objectstack/core@3.2.3
|
|
155
|
-
- @objectstack/types@3.2.3
|
|
156
|
-
- @objectstack/rest@3.2.3
|
|
157
|
-
|
|
158
|
-
## 3.2.2
|
|
159
|
-
|
|
160
|
-
### Patch Changes
|
|
161
|
-
|
|
162
|
-
- Updated dependencies [46defbb]
|
|
163
|
-
- @objectstack/spec@3.2.2
|
|
164
|
-
- @objectstack/core@3.2.2
|
|
165
|
-
- @objectstack/rest@3.2.2
|
|
166
|
-
- @objectstack/types@3.2.2
|
|
167
|
-
|
|
168
|
-
## 3.2.1
|
|
169
|
-
|
|
170
|
-
### Patch Changes
|
|
171
|
-
|
|
172
|
-
- Updated dependencies [850b546]
|
|
173
|
-
- @objectstack/spec@3.2.1
|
|
174
|
-
- @objectstack/core@3.2.1
|
|
175
|
-
- @objectstack/rest@3.2.1
|
|
176
|
-
- @objectstack/types@3.2.1
|
|
177
|
-
|
|
178
|
-
## 3.2.0
|
|
179
|
-
|
|
180
|
-
### Patch Changes
|
|
181
|
-
|
|
182
|
-
- Updated dependencies [5901c29]
|
|
183
|
-
- @objectstack/spec@3.2.0
|
|
184
|
-
- @objectstack/core@3.2.0
|
|
185
|
-
- @objectstack/rest@3.2.0
|
|
186
|
-
- @objectstack/types@3.2.0
|
|
187
|
-
|
|
188
|
-
## 3.1.1
|
|
189
|
-
|
|
190
|
-
### Patch Changes
|
|
191
|
-
|
|
192
|
-
- Updated dependencies [953d667]
|
|
193
|
-
- @objectstack/spec@3.1.1
|
|
194
|
-
- @objectstack/core@3.1.1
|
|
195
|
-
- @objectstack/rest@3.1.1
|
|
196
|
-
- @objectstack/types@3.1.1
|
|
197
|
-
|
|
198
|
-
## 3.1.0
|
|
199
|
-
|
|
200
|
-
### Patch Changes
|
|
201
|
-
|
|
202
|
-
- Updated dependencies [0088830]
|
|
203
|
-
- @objectstack/spec@3.1.0
|
|
204
|
-
- @objectstack/core@3.1.0
|
|
205
|
-
- @objectstack/rest@3.1.0
|
|
206
|
-
- @objectstack/types@3.1.0
|
|
207
|
-
|
|
208
|
-
## 3.0.11
|
|
209
|
-
|
|
210
|
-
### Patch Changes
|
|
211
|
-
|
|
212
|
-
- Updated dependencies [92d9d99]
|
|
213
|
-
- @objectstack/spec@3.0.11
|
|
214
|
-
- @objectstack/core@3.0.11
|
|
215
|
-
- @objectstack/rest@3.0.11
|
|
216
|
-
- @objectstack/types@3.0.11
|
|
217
|
-
|
|
218
|
-
## 3.0.10
|
|
219
|
-
|
|
220
|
-
### Patch Changes
|
|
221
|
-
|
|
222
|
-
- Updated dependencies [d1e5d31]
|
|
223
|
-
- @objectstack/spec@3.0.10
|
|
224
|
-
- @objectstack/core@3.0.10
|
|
225
|
-
- @objectstack/rest@3.0.10
|
|
226
|
-
- @objectstack/types@3.0.10
|
|
227
|
-
|
|
228
|
-
## 3.0.9
|
|
229
|
-
|
|
230
|
-
### Patch Changes
|
|
231
|
-
|
|
232
|
-
- Updated dependencies [15e0df6]
|
|
233
|
-
- @objectstack/spec@3.0.9
|
|
234
|
-
- @objectstack/core@3.0.9
|
|
235
|
-
- @objectstack/rest@3.0.9
|
|
236
|
-
- @objectstack/types@3.0.9
|
|
237
|
-
|
|
238
|
-
## 3.0.8
|
|
239
|
-
|
|
240
|
-
### Patch Changes
|
|
241
|
-
|
|
242
|
-
- Updated dependencies [5a968a2]
|
|
243
|
-
- @objectstack/spec@3.0.8
|
|
244
|
-
- @objectstack/core@3.0.8
|
|
245
|
-
- @objectstack/rest@3.0.8
|
|
246
|
-
- @objectstack/types@3.0.8
|
|
247
|
-
|
|
248
|
-
## 3.0.7
|
|
249
|
-
|
|
250
|
-
### Patch Changes
|
|
251
|
-
|
|
252
|
-
- Updated dependencies [0119bd7]
|
|
253
|
-
- Updated dependencies [5426bdf]
|
|
254
|
-
- @objectstack/spec@3.0.7
|
|
255
|
-
- @objectstack/core@3.0.7
|
|
256
|
-
- @objectstack/rest@3.0.7
|
|
257
|
-
- @objectstack/types@3.0.7
|
|
258
|
-
|
|
259
|
-
## 3.0.6
|
|
260
|
-
|
|
261
|
-
### Patch Changes
|
|
262
|
-
|
|
263
|
-
- Updated dependencies [5df254c]
|
|
264
|
-
- @objectstack/spec@3.0.6
|
|
265
|
-
- @objectstack/core@3.0.6
|
|
266
|
-
- @objectstack/rest@3.0.6
|
|
267
|
-
- @objectstack/types@3.0.6
|
|
268
|
-
|
|
269
|
-
## 3.0.5
|
|
270
|
-
|
|
271
|
-
### Patch Changes
|
|
272
|
-
|
|
273
|
-
- Updated dependencies [23a4a68]
|
|
274
|
-
- @objectstack/spec@3.0.5
|
|
275
|
-
- @objectstack/core@3.0.5
|
|
276
|
-
- @objectstack/rest@3.0.5
|
|
277
|
-
- @objectstack/types@3.0.5
|
|
278
|
-
|
|
279
|
-
## 3.0.4
|
|
280
|
-
|
|
281
|
-
### Patch Changes
|
|
282
|
-
|
|
283
|
-
- Updated dependencies [d738987]
|
|
284
|
-
- @objectstack/spec@3.0.4
|
|
285
|
-
- @objectstack/core@3.0.4
|
|
286
|
-
- @objectstack/rest@3.0.4
|
|
287
|
-
- @objectstack/types@3.0.4
|
|
288
|
-
|
|
289
|
-
## 3.0.3
|
|
290
|
-
|
|
291
|
-
### Patch Changes
|
|
292
|
-
|
|
293
|
-
- c7267f6: Patch release for maintenance updates and improvements.
|
|
294
|
-
- Updated dependencies [c7267f6]
|
|
295
|
-
- @objectstack/spec@3.0.3
|
|
296
|
-
- @objectstack/core@3.0.3
|
|
297
|
-
- @objectstack/types@3.0.3
|
|
298
|
-
- @objectstack/rest@3.0.3
|
|
299
|
-
|
|
300
|
-
## 3.0.2
|
|
301
|
-
|
|
302
|
-
### Patch Changes
|
|
303
|
-
|
|
304
|
-
- Updated dependencies [28985f5]
|
|
305
|
-
- @objectstack/spec@3.0.2
|
|
306
|
-
- @objectstack/core@3.0.2
|
|
307
|
-
- @objectstack/rest@3.0.2
|
|
308
|
-
- @objectstack/types@3.0.2
|
|
309
|
-
|
|
310
|
-
## 3.0.1
|
|
311
|
-
|
|
312
|
-
### Patch Changes
|
|
313
|
-
|
|
314
|
-
- Updated dependencies [389725a]
|
|
315
|
-
- @objectstack/spec@3.0.1
|
|
316
|
-
- @objectstack/core@3.0.1
|
|
317
|
-
- @objectstack/rest@3.0.1
|
|
318
|
-
- @objectstack/types@3.0.1
|
|
319
|
-
|
|
320
|
-
## 3.0.0
|
|
321
|
-
|
|
322
|
-
### Major Changes
|
|
323
|
-
|
|
324
|
-
- Release v3.0.0 — unified version bump for all ObjectStack packages.
|
|
325
|
-
|
|
326
|
-
### Patch Changes
|
|
327
|
-
|
|
328
|
-
- Updated dependencies
|
|
329
|
-
- @objectstack/spec@3.0.0
|
|
330
|
-
- @objectstack/core@3.0.0
|
|
331
|
-
- @objectstack/types@3.0.0
|
|
332
|
-
- @objectstack/rest@3.0.0
|
|
333
|
-
|
|
334
|
-
## 2.0.7
|
|
335
|
-
|
|
336
|
-
### Patch Changes
|
|
337
|
-
|
|
338
|
-
- Updated dependencies
|
|
339
|
-
- @objectstack/spec@2.0.7
|
|
340
|
-
- @objectstack/core@2.0.7
|
|
341
|
-
- @objectstack/rest@2.0.7
|
|
342
|
-
- @objectstack/types@2.0.7
|
|
343
|
-
|
|
344
|
-
## 2.0.6
|
|
345
|
-
|
|
346
|
-
### Patch Changes
|
|
347
|
-
|
|
348
|
-
- Patch release for maintenance and stability improvements
|
|
349
|
-
- Updated dependencies
|
|
350
|
-
- @objectstack/spec@2.0.6
|
|
351
|
-
- @objectstack/core@2.0.6
|
|
352
|
-
- @objectstack/types@2.0.6
|
|
353
|
-
- @objectstack/rest@2.0.6
|
|
354
|
-
|
|
355
|
-
## 2.0.5
|
|
356
|
-
|
|
357
|
-
### Patch Changes
|
|
358
|
-
|
|
359
|
-
- Updated dependencies
|
|
360
|
-
- @objectstack/spec@2.0.5
|
|
361
|
-
- @objectstack/core@2.0.5
|
|
362
|
-
- @objectstack/rest@2.0.5
|
|
363
|
-
- @objectstack/types@2.0.5
|
|
364
|
-
|
|
365
|
-
## 2.0.4
|
|
366
|
-
|
|
367
|
-
### Patch Changes
|
|
368
|
-
|
|
369
|
-
- Patch release for maintenance and stability improvements
|
|
370
|
-
- Updated dependencies
|
|
371
|
-
- @objectstack/spec@2.0.4
|
|
372
|
-
- @objectstack/core@2.0.4
|
|
373
|
-
- @objectstack/types@2.0.4
|
|
374
|
-
- @objectstack/rest@2.0.4
|
|
375
|
-
|
|
376
|
-
## 2.0.3
|
|
377
|
-
|
|
378
|
-
### Patch Changes
|
|
379
|
-
|
|
380
|
-
- Patch release for maintenance and stability improvements
|
|
381
|
-
- Updated dependencies
|
|
382
|
-
- @objectstack/spec@2.0.3
|
|
383
|
-
- @objectstack/core@2.0.3
|
|
384
|
-
- @objectstack/types@2.0.3
|
|
385
|
-
- @objectstack/rest@2.0.3
|
|
386
|
-
|
|
387
|
-
## 2.0.2
|
|
388
|
-
|
|
389
|
-
### Patch Changes
|
|
390
|
-
|
|
391
|
-
- Updated dependencies [1db8559]
|
|
392
|
-
- @objectstack/spec@2.0.2
|
|
393
|
-
- @objectstack/core@2.0.2
|
|
394
|
-
- @objectstack/rest@2.0.2
|
|
395
|
-
- @objectstack/types@2.0.2
|
|
396
|
-
|
|
397
|
-
## 2.0.1
|
|
398
|
-
|
|
399
|
-
### Patch Changes
|
|
400
|
-
|
|
401
|
-
- Patch release for maintenance and stability improvements
|
|
402
|
-
- Updated dependencies
|
|
403
|
-
- @objectstack/spec@2.0.1
|
|
404
|
-
- @objectstack/core@2.0.1
|
|
405
|
-
- @objectstack/types@2.0.1
|
|
406
|
-
- @objectstack/rest@2.0.1
|
|
407
|
-
|
|
408
|
-
## 2.0.0
|
|
409
|
-
|
|
410
|
-
### Patch Changes
|
|
411
|
-
|
|
412
|
-
- Updated dependencies [38e5dd5]
|
|
413
|
-
- Updated dependencies [38e5dd5]
|
|
414
|
-
- @objectstack/spec@2.0.0
|
|
415
|
-
- @objectstack/core@2.0.0
|
|
416
|
-
- @objectstack/rest@2.0.0
|
|
417
|
-
- @objectstack/types@2.0.0
|
|
418
|
-
|
|
419
|
-
## 1.0.12
|
|
420
|
-
|
|
421
|
-
### Patch Changes
|
|
422
|
-
|
|
423
|
-
- chore: add Vercel deployment configs, simplify console runtime configuration
|
|
424
|
-
- Updated dependencies
|
|
425
|
-
- @objectstack/spec@1.0.12
|
|
426
|
-
- @objectstack/core@1.0.12
|
|
427
|
-
- @objectstack/types@1.0.12
|
|
428
|
-
|
|
429
|
-
## 1.0.11
|
|
430
|
-
|
|
431
|
-
### Patch Changes
|
|
432
|
-
|
|
433
|
-
- @objectstack/spec@1.0.11
|
|
434
|
-
- @objectstack/core@1.0.11
|
|
435
|
-
- @objectstack/types@1.0.11
|
|
436
|
-
|
|
437
|
-
## 1.0.10
|
|
438
|
-
|
|
439
|
-
### Patch Changes
|
|
440
|
-
|
|
441
|
-
- Updated dependencies [10f52e1]
|
|
442
|
-
- @objectstack/core@1.0.10
|
|
443
|
-
- @objectstack/spec@1.0.10
|
|
444
|
-
- @objectstack/types@1.0.10
|
|
445
|
-
|
|
446
|
-
## 1.0.9
|
|
447
|
-
|
|
448
|
-
### Patch Changes
|
|
449
|
-
|
|
450
|
-
- @objectstack/spec@1.0.9
|
|
451
|
-
- @objectstack/core@1.0.9
|
|
452
|
-
- @objectstack/types@1.0.9
|
|
453
|
-
|
|
454
|
-
## 1.0.8
|
|
455
|
-
|
|
456
|
-
### Patch Changes
|
|
457
|
-
|
|
458
|
-
- @objectstack/spec@1.0.8
|
|
459
|
-
- @objectstack/core@1.0.8
|
|
460
|
-
- @objectstack/types@1.0.8
|
|
461
|
-
|
|
462
|
-
## 1.0.7
|
|
463
|
-
|
|
464
|
-
### Patch Changes
|
|
465
|
-
|
|
466
|
-
- ebdf787: feat: implement standard service discovery via `/.well-known/objectstack`
|
|
467
|
-
- @objectstack/spec@1.0.7
|
|
468
|
-
- @objectstack/core@1.0.7
|
|
469
|
-
- @objectstack/types@1.0.7
|
|
470
|
-
|
|
471
|
-
## 1.0.6
|
|
472
|
-
|
|
473
|
-
### Patch Changes
|
|
474
|
-
|
|
475
|
-
- Updated dependencies [a7f7b9d]
|
|
476
|
-
- @objectstack/spec@1.0.6
|
|
477
|
-
- @objectstack/core@1.0.6
|
|
478
|
-
- @objectstack/types@1.0.6
|
|
479
|
-
|
|
480
|
-
## 1.0.5
|
|
481
|
-
|
|
482
|
-
### Patch Changes
|
|
483
|
-
|
|
484
|
-
- b1d24bd: refactor: migrate build system from tsc to tsup for faster builds
|
|
485
|
-
- Replaced `tsc` with `tsup` (using esbuild) across all packages
|
|
486
|
-
- Added shared `tsup.config.ts` in workspace root
|
|
487
|
-
- Added `tsup` as workspace dev dependency
|
|
488
|
-
- significantly improved build performance
|
|
489
|
-
- 877b864: fix: add SPA fallback to hono, fix msw context binding, improve runtime resilience, and fix client-react build types
|
|
490
|
-
- Updated dependencies [b1d24bd]
|
|
491
|
-
- @objectstack/core@1.0.5
|
|
492
|
-
- @objectstack/types@1.0.5
|
|
493
|
-
- @objectstack/spec@1.0.5
|
|
494
|
-
|
|
495
|
-
## 1.0.4
|
|
496
|
-
|
|
497
|
-
### Patch Changes
|
|
498
|
-
|
|
499
|
-
- @objectstack/spec@1.0.4
|
|
500
|
-
- @objectstack/core@1.0.4
|
|
501
|
-
- @objectstack/types@1.0.4
|
|
502
|
-
|
|
503
|
-
## 1.0.3
|
|
504
|
-
|
|
505
|
-
### Patch Changes
|
|
506
|
-
|
|
507
|
-
- fb2eabd: fix: resolve "process is not defined" runtime error in browser environments by adding safe environment detection and polyfills
|
|
508
|
-
- Updated dependencies [fb2eabd]
|
|
509
|
-
- @objectstack/core@1.0.3
|
|
510
|
-
- @objectstack/spec@1.0.3
|
|
511
|
-
- @objectstack/types@1.0.3
|
|
512
|
-
|
|
513
|
-
## 1.0.2
|
|
514
|
-
|
|
515
|
-
### Patch Changes
|
|
516
|
-
|
|
517
|
-
- a0a6c85: Infrastructure and development tooling improvements
|
|
518
|
-
|
|
519
|
-
- Add changeset configuration for automated version management
|
|
520
|
-
- Add comprehensive GitHub Actions workflows (CI, CodeQL, linting, releases)
|
|
521
|
-
- Add development configuration files (.cursorrules, .github/prompts)
|
|
522
|
-
- Add documentation files (ARCHITECTURE.md, CONTRIBUTING.md, workflows docs)
|
|
523
|
-
- Update test script configuration in package.json
|
|
524
|
-
- Add @objectstack/cli to devDependencies for better development experience
|
|
525
|
-
|
|
526
|
-
- 109fc5b: Unified patch release to align all package versions.
|
|
527
|
-
- Updated dependencies [a0a6c85]
|
|
528
|
-
- Updated dependencies [109fc5b]
|
|
529
|
-
- @objectstack/spec@1.0.2
|
|
530
|
-
- @objectstack/core@1.0.2
|
|
531
|
-
- @objectstack/types@1.0.2
|
|
532
|
-
|
|
533
|
-
## 1.0.1
|
|
534
|
-
|
|
535
|
-
### Patch Changes
|
|
536
|
-
|
|
537
|
-
- Fix TypeScript error in http-dispatcher tests to resolve CI build failures.
|
|
538
|
-
- @objectstack/spec@1.0.1
|
|
539
|
-
- @objectstack/core@1.0.1
|
|
540
|
-
- @objectstack/types@1.0.1
|
|
541
|
-
|
|
542
|
-
## 1.0.0
|
|
543
|
-
|
|
544
|
-
### Major Changes
|
|
545
|
-
|
|
546
|
-
- Major version release for ObjectStack Protocol v1.0.
|
|
547
|
-
- Stabilized Protocol Definitions
|
|
548
|
-
- Enhanced Runtime Plugin Support
|
|
549
|
-
- Fixed Type Compliance across Monorepo
|
|
550
|
-
|
|
551
|
-
### Patch Changes
|
|
552
|
-
|
|
553
|
-
- Updated dependencies
|
|
554
|
-
- @objectstack/spec@1.0.0
|
|
555
|
-
- @objectstack/core@1.0.0
|
|
556
|
-
- @objectstack/types@1.0.0
|
|
557
|
-
|
|
558
|
-
## 0.9.2
|
|
559
|
-
|
|
560
|
-
### Patch Changes
|
|
561
|
-
|
|
562
|
-
- Updated dependencies
|
|
563
|
-
- @objectstack/spec@0.9.2
|
|
564
|
-
- @objectstack/core@0.9.2
|
|
565
|
-
- @objectstack/types@0.9.2
|
|
566
|
-
|
|
567
|
-
## 0.9.1
|
|
568
|
-
|
|
569
|
-
### Patch Changes
|
|
570
|
-
|
|
571
|
-
- Patch release for maintenance and stability improvements. All packages updated with unified versioning.
|
|
572
|
-
- Updated dependencies
|
|
573
|
-
- @objectstack/spec@0.9.1
|
|
574
|
-
- @objectstack/core@0.9.1
|
|
575
|
-
- @objectstack/types@0.9.1
|
|
576
|
-
|
|
577
|
-
## 0.8.2
|
|
578
|
-
|
|
579
|
-
### Patch Changes
|
|
580
|
-
|
|
581
|
-
- Updated dependencies [555e6a7]
|
|
582
|
-
- @objectstack/spec@0.8.2
|
|
583
|
-
- @objectstack/core@0.8.2
|
|
584
|
-
- @objectstack/types@0.8.2
|
|
585
|
-
|
|
586
|
-
## 0.8.1
|
|
587
|
-
|
|
588
|
-
### Patch Changes
|
|
589
|
-
|
|
590
|
-
- @objectstack/spec@0.8.1
|
|
591
|
-
- @objectstack/core@0.8.1
|
|
592
|
-
- @objectstack/types@0.8.1
|
|
593
|
-
|
|
594
|
-
## 1.0.0
|
|
595
|
-
|
|
596
|
-
### Minor Changes
|
|
597
|
-
|
|
598
|
-
- # Upgrade to Zod v4 and Protocol Improvements
|
|
599
|
-
|
|
600
|
-
This release includes a major upgrade to the core validation engine (Zod v4) and aligns all protocol definitions with stricter type safety.
|
|
601
|
-
|
|
602
|
-
### Patch Changes
|
|
603
|
-
|
|
604
|
-
- Updated dependencies
|
|
605
|
-
- @objectstack/spec@1.0.0
|
|
606
|
-
- @objectstack/core@1.0.0
|
|
607
|
-
- @objectstack/types@1.0.0
|
|
608
|
-
|
|
609
|
-
## 0.7.2
|
|
610
|
-
|
|
611
|
-
### Patch Changes
|
|
612
|
-
|
|
613
|
-
- fb41cc0: Patch release: Updated documentation and JSON schemas
|
|
614
|
-
- Updated dependencies [fb41cc0]
|
|
615
|
-
- @objectstack/spec@0.7.2
|
|
616
|
-
- @objectstack/core@0.7.2
|
|
617
|
-
- @objectstack/types@0.7.2
|
|
618
|
-
|
|
619
|
-
## 0.7.1
|
|
620
|
-
|
|
621
|
-
### Patch Changes
|
|
622
|
-
|
|
623
|
-
- Patch release for maintenance and stability improvements
|
|
624
|
-
- Updated dependencies
|
|
625
|
-
- @objectstack/spec@0.7.1
|
|
626
|
-
- @objectstack/types@0.7.1
|
|
627
|
-
- @objectstack/core@0.7.1
|
|
628
|
-
|
|
629
|
-
## 0.6.1
|
|
630
|
-
|
|
631
|
-
### Patch Changes
|
|
632
|
-
|
|
633
|
-
- Patch release for maintenance and stability improvements
|
|
634
|
-
- Updated dependencies
|
|
635
|
-
- @objectstack/spec@0.6.1
|
|
636
|
-
- @objectstack/types@0.6.1
|
|
637
|
-
- @objectstack/core@0.6.1
|
|
638
|
-
|
|
639
|
-
## 0.6.0
|
|
640
|
-
|
|
641
|
-
### Minor Changes
|
|
642
|
-
|
|
643
|
-
- b2df5f7: Unified version bump to 0.5.0
|
|
644
|
-
|
|
645
|
-
- Standardized all package versions to 0.5.0 across the monorepo
|
|
646
|
-
- Fixed driver-memory package.json paths for proper module resolution
|
|
647
|
-
- Ensured all packages are in sync for the 0.5.0 release
|
|
648
|
-
|
|
649
|
-
### Patch Changes
|
|
650
|
-
|
|
651
|
-
- Updated dependencies [b2df5f7]
|
|
652
|
-
- @objectstack/spec@0.6.0
|
|
653
|
-
- @objectstack/objectql@0.6.0
|
|
654
|
-
- @objectstack/types@0.6.0
|
|
655
|
-
- @objectstack/core@0.6.0
|
|
656
|
-
|
|
657
|
-
## 0.4.2
|
|
658
|
-
|
|
659
|
-
### Patch Changes
|
|
660
|
-
|
|
661
|
-
- Unify all package versions to 0.4.2
|
|
662
|
-
- Updated dependencies
|
|
663
|
-
- @objectstack/spec@0.4.2
|
|
664
|
-
- @objectstack/objectql@0.4.2
|
|
665
|
-
- @objectstack/types@0.4.2
|
|
666
|
-
|
|
667
|
-
## 0.4.1
|
|
668
|
-
|
|
669
|
-
### Patch Changes
|
|
670
|
-
|
|
671
|
-
- Version synchronization and dependency updates
|
|
672
|
-
|
|
673
|
-
- Synchronized plugin-msw version to 0.4.1
|
|
674
|
-
- Updated runtime peer dependency versions to ^0.4.1
|
|
675
|
-
- Fixed internal dependency version mismatches
|
|
676
|
-
|
|
677
|
-
- Updated dependencies
|
|
678
|
-
- @objectstack/spec@0.4.1
|
|
679
|
-
- @objectstack/types@0.4.1
|
|
680
|
-
- @objectstack/objectql@0.4.1
|
|
681
|
-
|
|
682
|
-
## 0.4.0
|
|
683
|
-
|
|
684
|
-
### Minor Changes
|
|
685
|
-
|
|
686
|
-
- Release version 0.4.0
|
|
687
|
-
|
|
688
|
-
## 0.3.3
|
|
689
|
-
|
|
690
|
-
### Patch Changes
|
|
691
|
-
|
|
692
|
-
- Workflow and configuration improvements
|
|
693
|
-
|
|
694
|
-
- Enhanced GitHub workflows for CI, release, and PR automation
|
|
695
|
-
- Added comprehensive prompt templates for different protocol areas
|
|
696
|
-
- Improved project documentation and automation guides
|
|
697
|
-
- Updated changeset configuration
|
|
698
|
-
- Added cursor rules for better development experience
|
|
699
|
-
|
|
700
|
-
- Updated dependencies
|
|
701
|
-
- @objectstack/spec@0.3.3
|
|
702
|
-
- @objectstack/objectql@0.3.3
|
|
703
|
-
- @objectstack/types@0.3.3
|
|
704
|
-
|
|
705
|
-
## 0.3.2
|
|
706
|
-
|
|
707
|
-
### Patch Changes
|
|
708
|
-
|
|
709
|
-
- Patch release for maintenance and stability improvements
|
|
710
|
-
- Updated dependencies
|
|
711
|
-
- @objectstack/objectql@0.3.2
|
|
712
|
-
- @objectstack/spec@0.3.2
|
|
713
|
-
- @objectstack/types@0.3.2
|
|
714
|
-
|
|
715
|
-
## 0.3.1
|
|
716
|
-
|
|
717
|
-
### Patch Changes
|
|
718
|
-
|
|
719
|
-
- Organize zod schema files by folder structure and improve project documentation
|
|
720
|
-
- @objectstack/spec@0.3.1
|
|
721
|
-
- @objectstack/objectql@0.3.1
|
|
722
|
-
- @objectstack/types@0.3.1
|
|
723
|
-
|
|
724
|
-
## 0.3.0
|
|
725
|
-
|
|
726
|
-
### Patch Changes
|
|
727
|
-
|
|
728
|
-
- Updated dependencies
|
|
729
|
-
- @objectstack/spec@1.0.0
|
|
730
|
-
- @objectstack/objectql@1.0.0
|
|
731
|
-
- @objectstack/types@1.0.0
|
|
732
|
-
|
|
733
|
-
## 0.2.0
|
|
734
|
-
|
|
735
|
-
### Minor Changes
|
|
736
|
-
|
|
737
|
-
- Initial release of ObjectStack Protocol & Specification packages
|
|
738
|
-
|
|
739
|
-
This is the first public release of the ObjectStack ecosystem, providing:
|
|
740
|
-
|
|
741
|
-
- Core protocol definitions and TypeScript types
|
|
742
|
-
- ObjectQL query language and runtime
|
|
743
|
-
- Memory driver for in-memory data storage
|
|
744
|
-
- Client library for interacting with ObjectStack
|
|
745
|
-
- Hono server plugin for REST API endpoints
|
|
746
|
-
- Complete JSON schema generation for all specifications
|
|
747
|
-
|
|
748
|
-
### Patch Changes
|
|
749
|
-
|
|
750
|
-
- Updated dependencies
|
|
751
|
-
- @objectstack/spec@0.2.0
|
|
752
|
-
- @objectstack/types@0.2.0
|
|
753
|
-
- @objectstack/objectql@0.2.0
|
|
754
|
-
|
|
755
|
-
## 0.1.1
|
|
756
|
-
|
|
757
|
-
### Patch Changes
|
|
758
|
-
|
|
759
|
-
- Remove debug logs from registry and protocol modules
|
|
760
|
-
- Updated dependencies
|
|
761
|
-
- @objectstack/spec@0.1.2
|
|
762
|
-
- @objectstack/objectql@0.1.1
|
|
763
|
-
- @objectstack/types@0.1.1
|