@mastra/client-js 0.0.0-message-list-update-20250715150321 → 0.0.0-message-file-url-handling-fix-20250904234524

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 (81) hide show
  1. package/CHANGELOG.md +795 -3
  2. package/README.md +6 -3
  3. package/dist/client.d.ts +280 -0
  4. package/dist/client.d.ts.map +1 -0
  5. package/dist/example.d.ts +2 -0
  6. package/dist/example.d.ts.map +1 -0
  7. package/dist/index.cjs +1627 -701
  8. package/dist/index.cjs.map +1 -0
  9. package/dist/index.d.ts +4 -1194
  10. package/dist/index.d.ts.map +1 -0
  11. package/dist/index.js +1627 -701
  12. package/dist/index.js.map +1 -0
  13. package/dist/resources/a2a.d.ts +41 -0
  14. package/dist/resources/a2a.d.ts.map +1 -0
  15. package/dist/resources/agent-builder.d.ts +161 -0
  16. package/dist/resources/agent-builder.d.ts.map +1 -0
  17. package/dist/resources/agent.d.ts +155 -0
  18. package/dist/resources/agent.d.ts.map +1 -0
  19. package/dist/resources/base.d.ts +13 -0
  20. package/dist/resources/base.d.ts.map +1 -0
  21. package/dist/resources/index.d.ts +13 -0
  22. package/dist/resources/index.d.ts.map +1 -0
  23. package/dist/resources/legacy-workflow.d.ts +87 -0
  24. package/dist/resources/legacy-workflow.d.ts.map +1 -0
  25. package/dist/resources/mcp-tool.d.ts +27 -0
  26. package/dist/resources/mcp-tool.d.ts.map +1 -0
  27. package/dist/resources/memory-thread.d.ts +53 -0
  28. package/dist/resources/memory-thread.d.ts.map +1 -0
  29. package/dist/resources/network-memory-thread.d.ts +47 -0
  30. package/dist/resources/network-memory-thread.d.ts.map +1 -0
  31. package/dist/resources/network.d.ts +30 -0
  32. package/dist/resources/network.d.ts.map +1 -0
  33. package/dist/resources/observability.d.ts +19 -0
  34. package/dist/resources/observability.d.ts.map +1 -0
  35. package/dist/resources/tool.d.ts +23 -0
  36. package/dist/resources/tool.d.ts.map +1 -0
  37. package/dist/resources/vNextNetwork.d.ts +42 -0
  38. package/dist/resources/vNextNetwork.d.ts.map +1 -0
  39. package/dist/resources/vector.d.ts +48 -0
  40. package/dist/resources/vector.d.ts.map +1 -0
  41. package/dist/resources/workflow.d.ts +154 -0
  42. package/dist/resources/workflow.d.ts.map +1 -0
  43. package/dist/types.d.ts +461 -0
  44. package/dist/types.d.ts.map +1 -0
  45. package/dist/utils/index.d.ts +3 -0
  46. package/dist/utils/index.d.ts.map +1 -0
  47. package/dist/utils/process-client-tools.d.ts +3 -0
  48. package/dist/utils/process-client-tools.d.ts.map +1 -0
  49. package/dist/utils/process-mastra-stream.d.ts +7 -0
  50. package/dist/utils/process-mastra-stream.d.ts.map +1 -0
  51. package/dist/utils/zod-to-json-schema.d.ts +3 -0
  52. package/dist/utils/zod-to-json-schema.d.ts.map +1 -0
  53. package/package.json +26 -14
  54. package/.turbo/turbo-build.log +0 -19
  55. package/dist/index.d.cts +0 -1194
  56. package/eslint.config.js +0 -6
  57. package/src/adapters/agui.test.ts +0 -180
  58. package/src/adapters/agui.ts +0 -239
  59. package/src/client.ts +0 -526
  60. package/src/example.ts +0 -95
  61. package/src/index.test.ts +0 -830
  62. package/src/index.ts +0 -2
  63. package/src/resources/a2a.ts +0 -88
  64. package/src/resources/agent.ts +0 -800
  65. package/src/resources/base.ts +0 -72
  66. package/src/resources/index.ts +0 -10
  67. package/src/resources/legacy-workflow.ts +0 -242
  68. package/src/resources/mcp-tool.ts +0 -48
  69. package/src/resources/memory-thread.ts +0 -63
  70. package/src/resources/network-memory-thread.ts +0 -63
  71. package/src/resources/network.ts +0 -85
  72. package/src/resources/tool.ts +0 -45
  73. package/src/resources/vNextNetwork.ts +0 -194
  74. package/src/resources/vector.ts +0 -83
  75. package/src/resources/workflow.ts +0 -396
  76. package/src/types.ts +0 -428
  77. package/src/utils/index.ts +0 -11
  78. package/src/utils/process-client-tools.ts +0 -32
  79. package/src/utils/zod-to-json-schema.ts +0 -10
  80. package/tsconfig.json +0 -5
  81. package/vitest.config.js +0 -8
package/CHANGELOG.md CHANGED
@@ -1,6 +1,786 @@
1
1
  # @mastra/client-js
2
2
 
3
- ## 0.0.0-message-list-update-20250715150321
3
+ ## 0.0.0-message-file-url-handling-fix-20250904234524
4
+
5
+ ### Minor Changes
6
+
7
+ - 6155cfc: Remove AGUI implementation from client-js
8
+
9
+ ### Patch Changes
10
+
11
+ - cf4e353: Agent Builder Template - adding in UI components to use agent builder template actions
12
+ - 5397eb4: Add public URL support when adding files in Multi Modal
13
+ - Updated dependencies [fd83526]
14
+ - Updated dependencies [d0b90ab]
15
+ - Updated dependencies [6f5eb7a]
16
+ - Updated dependencies [a01cf14]
17
+ - Updated dependencies [a9e50ee]
18
+ - Updated dependencies [5397eb4]
19
+ - Updated dependencies [c9f4e4a]
20
+ - Updated dependencies [b586a0b]
21
+ - Updated dependencies [0acbc80]
22
+ - @mastra/core@0.0.0-message-file-url-handling-fix-20250904234524
23
+
24
+ ## 0.12.0-alpha.0
25
+
26
+ ### Minor Changes
27
+
28
+ - 6155cfc: Remove AGUI implementation from client-js
29
+
30
+ ### Patch Changes
31
+
32
+ - cf4e353: Agent Builder Template - adding in UI components to use agent builder template actions
33
+ - 5397eb4: Add public URL support when adding files in Multi Modal
34
+ - Updated dependencies [fd83526]
35
+ - Updated dependencies [d0b90ab]
36
+ - Updated dependencies [6f5eb7a]
37
+ - Updated dependencies [a01cf14]
38
+ - Updated dependencies [a9e50ee]
39
+ - Updated dependencies [5397eb4]
40
+ - Updated dependencies [c9f4e4a]
41
+ - Updated dependencies [0acbc80]
42
+ - @mastra/core@0.16.0-alpha.0
43
+
44
+ ## 0.11.3
45
+
46
+ ### Patch Changes
47
+
48
+ - ab48c97: dependencies updates:
49
+ - Updated dependency [`zod-to-json-schema@^3.24.6` ↗︎](https://www.npmjs.com/package/zod-to-json-schema/v/3.24.6) (from `^3.24.5`, in `dependencies`)
50
+ - ff89505: Add deprecation warnings and add legacy routes
51
+ - de3cbc6: Update the `package.json` file to include additional fields like `repository`, `homepage` or `files`.
52
+ - 26b0d7c: Cleanup pkg output
53
+ - 48f0742: add deployer, server and clientjs handlers for agent builder template
54
+ - 5de1555: Fixed tracingContext on tool executions in AI tracing
55
+ - Updated dependencies [ab48c97]
56
+ - Updated dependencies [85ef90b]
57
+ - Updated dependencies [aedbbfa]
58
+ - Updated dependencies [ff89505]
59
+ - Updated dependencies [637f323]
60
+ - Updated dependencies [de3cbc6]
61
+ - Updated dependencies [c19bcf7]
62
+ - Updated dependencies [4474d04]
63
+ - Updated dependencies [183dc95]
64
+ - Updated dependencies [a1111e2]
65
+ - Updated dependencies [b42a961]
66
+ - Updated dependencies [61debef]
67
+ - Updated dependencies [9beaeff]
68
+ - Updated dependencies [29de0e1]
69
+ - Updated dependencies [f643c65]
70
+ - Updated dependencies [00c74e7]
71
+ - Updated dependencies [fef7375]
72
+ - Updated dependencies [e3d8fea]
73
+ - Updated dependencies [45e4d39]
74
+ - Updated dependencies [9eee594]
75
+ - Updated dependencies [7149d8d]
76
+ - Updated dependencies [822c2e8]
77
+ - Updated dependencies [979912c]
78
+ - Updated dependencies [7dcf4c0]
79
+ - Updated dependencies [4106a58]
80
+ - Updated dependencies [ad78bfc]
81
+ - Updated dependencies [0302f50]
82
+ - Updated dependencies [6ac697e]
83
+ - Updated dependencies [74db265]
84
+ - Updated dependencies [0ce418a]
85
+ - Updated dependencies [af90672]
86
+ - Updated dependencies [8387952]
87
+ - Updated dependencies [7f3b8da]
88
+ - Updated dependencies [905352b]
89
+ - Updated dependencies [599d04c]
90
+ - Updated dependencies [56041d0]
91
+ - Updated dependencies [3412597]
92
+ - Updated dependencies [5eca5d2]
93
+ - Updated dependencies [f2cda47]
94
+ - Updated dependencies [5de1555]
95
+ - Updated dependencies [cfd377a]
96
+ - Updated dependencies [1ed5a3e]
97
+ - @mastra/core@0.15.3
98
+
99
+ ## 0.11.3-alpha.9
100
+
101
+ ### Patch Changes
102
+
103
+ - Updated dependencies [[`599d04c`](https://github.com/mastra-ai/mastra/commit/599d04cebe92c1d536fee3190434941b8c91548e)]:
104
+ - @mastra/core@0.15.3-alpha.9
105
+
106
+ ## 0.11.3-alpha.8
107
+
108
+ ### Patch Changes
109
+
110
+ - Updated dependencies [[`4474d04`](https://github.com/mastra-ai/mastra/commit/4474d0489b1e152e0985c33a4f529207317d27b5), [`4106a58`](https://github.com/mastra-ai/mastra/commit/4106a58b15b4c0a060a4a9ccab52d119d00d8edb)]:
111
+ - @mastra/core@0.15.3-alpha.8
112
+
113
+ ## 0.11.3-alpha.7
114
+
115
+ ### Patch Changes
116
+
117
+ - Updated dependencies [[`7149d8d`](https://github.com/mastra-ai/mastra/commit/7149d8d4bdc1edf0008e0ca9b7925eb0b8b60dbe)]:
118
+ - @mastra/core@0.15.3-alpha.7
119
+
120
+ ## 0.11.3-alpha.6
121
+
122
+ ### Patch Changes
123
+
124
+ - Updated dependencies [[`c19bcf7`](https://github.com/mastra-ai/mastra/commit/c19bcf7b43542b02157b5e17303e519933a153ab), [`b42a961`](https://github.com/mastra-ai/mastra/commit/b42a961a5aefd19d6e938a7705fc0ecc90e8f756), [`45e4d39`](https://github.com/mastra-ai/mastra/commit/45e4d391a2a09fc70c48e4d60f505586ada1ba0e), [`0302f50`](https://github.com/mastra-ai/mastra/commit/0302f50861a53c66ff28801fc371b37c5f97e41e), [`74db265`](https://github.com/mastra-ai/mastra/commit/74db265b96aa01a72ffd91dcae0bc3b346cca0f2), [`7f3b8da`](https://github.com/mastra-ai/mastra/commit/7f3b8da6dd21c35d3672e44b4f5dd3502b8f8f92), [`905352b`](https://github.com/mastra-ai/mastra/commit/905352bcda134552400eb252bca1cb05a7975c14), [`f2cda47`](https://github.com/mastra-ai/mastra/commit/f2cda47ae911038c5d5489f54c36517d6f15bdcc), [`cfd377a`](https://github.com/mastra-ai/mastra/commit/cfd377a3a33a9c88b644f6540feed9cd9832db47)]:
125
+ - @mastra/core@0.15.3-alpha.6
126
+
127
+ ## 0.11.3-alpha.5
128
+
129
+ ### Patch Changes
130
+
131
+ - [#7343](https://github.com/mastra-ai/mastra/pull/7343) [`de3cbc6`](https://github.com/mastra-ai/mastra/commit/de3cbc61079211431bd30487982ea3653517278e) Thanks [@LekoArts](https://github.com/LekoArts)! - Update the `package.json` file to include additional fields like `repository`, `homepage` or `files`.
132
+
133
+ - Updated dependencies [[`85ef90b`](https://github.com/mastra-ai/mastra/commit/85ef90bb2cd4ae4df855c7ac175f7d392c55c1bf), [`de3cbc6`](https://github.com/mastra-ai/mastra/commit/de3cbc61079211431bd30487982ea3653517278e)]:
134
+ - @mastra/core@0.15.3-alpha.5
135
+
136
+ ## 0.11.3-alpha.4
137
+
138
+ ### Patch Changes
139
+
140
+ - [#5816](https://github.com/mastra-ai/mastra/pull/5816) [`ab48c97`](https://github.com/mastra-ai/mastra/commit/ab48c979098ea571faf998a55d3a00e7acd7a715) Thanks [@dane-ai-mastra](https://github.com/apps/dane-ai-mastra)! - dependencies updates:
141
+ - Updated dependency [`zod-to-json-schema@^3.24.6` ↗︎](https://www.npmjs.com/package/zod-to-json-schema/v/3.24.6) (from `^3.24.5`, in `dependencies`)
142
+
143
+ - [#7269](https://github.com/mastra-ai/mastra/pull/7269) [`ff89505`](https://github.com/mastra-ai/mastra/commit/ff895057c8c7e91a5535faef46c5e5391085ddfa) Thanks [@wardpeet](https://github.com/wardpeet)! - Add deprecation warnings and add legacy routes
144
+
145
+ - [#7329](https://github.com/mastra-ai/mastra/pull/7329) [`26b0d7c`](https://github.com/mastra-ai/mastra/commit/26b0d7c7cba46469351d453714e119ac7aae9da2) Thanks [@wardpeet](https://github.com/wardpeet)! - Cleanup pkg output
146
+
147
+ - [#7136](https://github.com/mastra-ai/mastra/pull/7136) [`48f0742`](https://github.com/mastra-ai/mastra/commit/48f0742662414610dc9a7a99d45902d059ee123d) Thanks [@NikAiyer](https://github.com/NikAiyer)! - add deployer, server and clientjs handlers for agent builder template
148
+
149
+ - Updated dependencies [[`ab48c97`](https://github.com/mastra-ai/mastra/commit/ab48c979098ea571faf998a55d3a00e7acd7a715), [`ff89505`](https://github.com/mastra-ai/mastra/commit/ff895057c8c7e91a5535faef46c5e5391085ddfa), [`183dc95`](https://github.com/mastra-ai/mastra/commit/183dc95596f391b977bd1a2c050b8498dac74891), [`a1111e2`](https://github.com/mastra-ai/mastra/commit/a1111e24e705488adfe5e0a6f20c53bddf26cb22), [`61debef`](https://github.com/mastra-ai/mastra/commit/61debefd80ad3a7ed5737e19df6a23d40091689a), [`9beaeff`](https://github.com/mastra-ai/mastra/commit/9beaeffa4a97b1d5fd01a7f8af8708b16067f67c), [`9eee594`](https://github.com/mastra-ai/mastra/commit/9eee594e35e0ca2a650fcc33fa82009a142b9ed0), [`979912c`](https://github.com/mastra-ai/mastra/commit/979912cfd180aad53287cda08af771df26454e2c), [`7dcf4c0`](https://github.com/mastra-ai/mastra/commit/7dcf4c04f44d9345b1f8bc5d41eae3f11ac61611), [`ad78bfc`](https://github.com/mastra-ai/mastra/commit/ad78bfc4ea6a1fff140432bf4f638e01af7af668), [`0ce418a`](https://github.com/mastra-ai/mastra/commit/0ce418a1ccaa5e125d4483a9651b635046152569), [`8387952`](https://github.com/mastra-ai/mastra/commit/838795227b4edf758c84a2adf6f7fba206c27719), [`5eca5d2`](https://github.com/mastra-ai/mastra/commit/5eca5d2655788863ea0442a46c9ef5d3c6dbe0a8)]:
150
+ - @mastra/core@0.15.3-alpha.4
151
+
152
+ ## 0.11.3-alpha.3
153
+
154
+ ### Patch Changes
155
+
156
+ - Updated dependencies [[`aedbbfa`](https://github.com/mastra-ai/mastra/commit/aedbbfa064124ddde039111f12629daebfea7e48), [`f643c65`](https://github.com/mastra-ai/mastra/commit/f643c651bdaf57c2343cf9dbfc499010495701fb), [`fef7375`](https://github.com/mastra-ai/mastra/commit/fef737534574f41b432a7361a285f776c3bac42b), [`e3d8fea`](https://github.com/mastra-ai/mastra/commit/e3d8feaacfb8b5c5c03c13604cc06ea2873d45fe), [`3412597`](https://github.com/mastra-ai/mastra/commit/3412597a6644c0b6bf3236d6e319ed1450c5bae8)]:
157
+ - @mastra/core@0.15.3-alpha.3
158
+
159
+ ## 0.11.3-alpha.2
160
+
161
+ ### Patch Changes
162
+
163
+ - Updated dependencies [[`822c2e8`](https://github.com/mastra-ai/mastra/commit/822c2e88a3ecbffb7c680e6227976006ccefe6a8)]:
164
+ - @mastra/core@0.15.3-alpha.2
165
+
166
+ ## 0.11.3-alpha.1
167
+
168
+ ### Patch Changes
169
+
170
+ - Updated dependencies [[`637f323`](https://github.com/mastra-ai/mastra/commit/637f32371d79a8f78c52c0d53411af0915fcec67), [`29de0e1`](https://github.com/mastra-ai/mastra/commit/29de0e1b0a7173317ae7d1ab0c0993167c659f2b), [`6ac697e`](https://github.com/mastra-ai/mastra/commit/6ac697edcc2435482c247cba615277ec4765dcc4)]:
171
+ - @mastra/core@0.15.3-alpha.1
172
+
173
+ ## 0.11.3-alpha.0
174
+
175
+ ### Patch Changes
176
+
177
+ - [#7109](https://github.com/mastra-ai/mastra/pull/7109) [`5de1555`](https://github.com/mastra-ai/mastra/commit/5de15554d3d6695211945a36928f6657e76cddc9) Thanks [@epinzur](https://github.com/epinzur)! - Fixed tracingContext on tool executions in AI tracing
178
+
179
+ - Updated dependencies [[`00c74e7`](https://github.com/mastra-ai/mastra/commit/00c74e73b1926be0d475693bb886fb67a22ff352), [`af90672`](https://github.com/mastra-ai/mastra/commit/af906722d8da28688882193b1e531026f9e2e81e), [`56041d0`](https://github.com/mastra-ai/mastra/commit/56041d018863a3da6b98c512e47348647c075fb3), [`5de1555`](https://github.com/mastra-ai/mastra/commit/5de15554d3d6695211945a36928f6657e76cddc9), [`1ed5a3e`](https://github.com/mastra-ai/mastra/commit/1ed5a3e19330374c4347a4237cd2f4b9ffb60376)]:
180
+ - @mastra/core@0.15.3-alpha.0
181
+
182
+ ## 0.11.2
183
+
184
+ ### Patch Changes
185
+
186
+ - [`c6113ed`](https://github.com/mastra-ai/mastra/commit/c6113ed7f9df297e130d94436ceee310273d6430) Thanks [@wardpeet](https://github.com/wardpeet)! - Fix peerdpes for @mastra/core
187
+
188
+ - Updated dependencies []:
189
+ - @mastra/core@0.15.2
190
+
191
+ ## 0.11.1
192
+
193
+ ### Patch Changes
194
+
195
+ - Updated dependencies []:
196
+ - @mastra/core@0.15.1
197
+
198
+ ## 0.11.0
199
+
200
+ ### Minor Changes
201
+
202
+ - [#6993](https://github.com/mastra-ai/mastra/pull/6993) [`82d9f64`](https://github.com/mastra-ai/mastra/commit/82d9f647fbe4f0177320e7c05073fce88599aa95) Thanks [@wardpeet](https://github.com/wardpeet)! - Improve types and fix linting issues
203
+
204
+ - [#7032](https://github.com/mastra-ai/mastra/pull/7032) [`1191ce9`](https://github.com/mastra-ai/mastra/commit/1191ce946b40ed291e7877a349f8388e3cff7e5c) Thanks [@wardpeet](https://github.com/wardpeet)! - Bump zod peerdep to 3.25.0 to support both v3/v4
205
+
206
+ ### Patch Changes
207
+
208
+ - [#6967](https://github.com/mastra-ai/mastra/pull/6967) [`01be5d3`](https://github.com/mastra-ai/mastra/commit/01be5d358fad8faa101e5c69dfa54562c02cc0af) Thanks [@YujohnNattrass](https://github.com/YujohnNattrass)! - Implement AI traces for server apis and client sdk
209
+
210
+ - [#6972](https://github.com/mastra-ai/mastra/pull/6972) [`00ef6c1`](https://github.com/mastra-ai/mastra/commit/00ef6c1d3c76708712acd3de7f39c4d6b0f3b427) Thanks [@roaminro](https://github.com/roaminro)! - add credentials option for fetch requests
211
+
212
+ - [#6949](https://github.com/mastra-ai/mastra/pull/6949) [`e6f5046`](https://github.com/mastra-ai/mastra/commit/e6f50467aff317e67e8bd74c485c3fbe2a5a6db1) Thanks [@CalebBarnes](https://github.com/CalebBarnes)! - stream/generate vnext: simplify internal output schema handling, improve types and typescript generics, and add jsdoc comments
213
+
214
+ - [#6942](https://github.com/mastra-ai/mastra/pull/6942) [`ca8ec2f`](https://github.com/mastra-ai/mastra/commit/ca8ec2f61884b9dfec5fc0d5f4f29d281ad13c01) Thanks [@wardpeet](https://github.com/wardpeet)! - Add zod as peerdeps for all packages
215
+
216
+ - Updated dependencies [[`0778757`](https://github.com/mastra-ai/mastra/commit/07787570e4addbd501522037bd2542c3d9e26822), [`943a7f3`](https://github.com/mastra-ai/mastra/commit/943a7f3dbc6a8ab3f9b7bc7c8a1c5b319c3d7f56), [`bf504a8`](https://github.com/mastra-ai/mastra/commit/bf504a833051f6f321d832cc7d631f3cb86d657b), [`be49354`](https://github.com/mastra-ai/mastra/commit/be493546dca540101923ec700feb31f9a13939f2), [`d591ab3`](https://github.com/mastra-ai/mastra/commit/d591ab3ecc985c1870c0db347f8d7a20f7360536), [`ba82abe`](https://github.com/mastra-ai/mastra/commit/ba82abe76e869316bb5a9c95e8ea3946f3436fae), [`727f7e5`](https://github.com/mastra-ai/mastra/commit/727f7e5086e62e0dfe3356fb6dcd8bcb420af246), [`e6f5046`](https://github.com/mastra-ai/mastra/commit/e6f50467aff317e67e8bd74c485c3fbe2a5a6db1), [`82d9f64`](https://github.com/mastra-ai/mastra/commit/82d9f647fbe4f0177320e7c05073fce88599aa95), [`2e58325`](https://github.com/mastra-ai/mastra/commit/2e58325beb170f5b92f856e27d915cd26917e5e6), [`1191ce9`](https://github.com/mastra-ai/mastra/commit/1191ce946b40ed291e7877a349f8388e3cff7e5c), [`4189486`](https://github.com/mastra-ai/mastra/commit/4189486c6718fda78347bdf4ce4d3fc33b2236e1), [`ca8ec2f`](https://github.com/mastra-ai/mastra/commit/ca8ec2f61884b9dfec5fc0d5f4f29d281ad13c01), [`9613558`](https://github.com/mastra-ai/mastra/commit/9613558e6475f4710e05d1be7553a32ee7bddc20)]:
217
+ - @mastra/core@0.15.0
218
+
219
+ ## 0.11.0-alpha.4
220
+
221
+ ### Minor Changes
222
+
223
+ - [#7032](https://github.com/mastra-ai/mastra/pull/7032) [`1191ce9`](https://github.com/mastra-ai/mastra/commit/1191ce946b40ed291e7877a349f8388e3cff7e5c) Thanks [@wardpeet](https://github.com/wardpeet)! - Bump zod peerdep to 3.25.0 to support both v3/v4
224
+
225
+ ### Patch Changes
226
+
227
+ - Updated dependencies [[`1191ce9`](https://github.com/mastra-ai/mastra/commit/1191ce946b40ed291e7877a349f8388e3cff7e5c)]:
228
+ - @mastra/core@0.15.0-alpha.4
229
+
230
+ ## 0.11.0-alpha.3
231
+
232
+ ### Patch Changes
233
+
234
+ - Updated dependencies []:
235
+ - @mastra/core@0.15.0-alpha.3
236
+
237
+ ## 0.11.0-alpha.2
238
+
239
+ ### Patch Changes
240
+
241
+ - Updated dependencies [[`2e58325`](https://github.com/mastra-ai/mastra/commit/2e58325beb170f5b92f856e27d915cd26917e5e6)]:
242
+ - @mastra/core@0.14.2-alpha.2
243
+
244
+ ## 0.11.0-alpha.1
245
+
246
+ ### Minor Changes
247
+
248
+ - [#6993](https://github.com/mastra-ai/mastra/pull/6993) [`82d9f64`](https://github.com/mastra-ai/mastra/commit/82d9f647fbe4f0177320e7c05073fce88599aa95) Thanks [@wardpeet](https://github.com/wardpeet)! - Improve types and fix linting issues
249
+
250
+ ### Patch Changes
251
+
252
+ - [#6967](https://github.com/mastra-ai/mastra/pull/6967) [`01be5d3`](https://github.com/mastra-ai/mastra/commit/01be5d358fad8faa101e5c69dfa54562c02cc0af) Thanks [@YujohnNattrass](https://github.com/YujohnNattrass)! - Implement AI traces for server apis and client sdk
253
+
254
+ - [#6972](https://github.com/mastra-ai/mastra/pull/6972) [`00ef6c1`](https://github.com/mastra-ai/mastra/commit/00ef6c1d3c76708712acd3de7f39c4d6b0f3b427) Thanks [@roaminro](https://github.com/roaminro)! - add credentials option for fetch requests
255
+
256
+ - [#6942](https://github.com/mastra-ai/mastra/pull/6942) [`ca8ec2f`](https://github.com/mastra-ai/mastra/commit/ca8ec2f61884b9dfec5fc0d5f4f29d281ad13c01) Thanks [@wardpeet](https://github.com/wardpeet)! - Add zod as peerdeps for all packages
257
+
258
+ - Updated dependencies [[`943a7f3`](https://github.com/mastra-ai/mastra/commit/943a7f3dbc6a8ab3f9b7bc7c8a1c5b319c3d7f56), [`be49354`](https://github.com/mastra-ai/mastra/commit/be493546dca540101923ec700feb31f9a13939f2), [`d591ab3`](https://github.com/mastra-ai/mastra/commit/d591ab3ecc985c1870c0db347f8d7a20f7360536), [`ba82abe`](https://github.com/mastra-ai/mastra/commit/ba82abe76e869316bb5a9c95e8ea3946f3436fae), [`727f7e5`](https://github.com/mastra-ai/mastra/commit/727f7e5086e62e0dfe3356fb6dcd8bcb420af246), [`82d9f64`](https://github.com/mastra-ai/mastra/commit/82d9f647fbe4f0177320e7c05073fce88599aa95), [`4189486`](https://github.com/mastra-ai/mastra/commit/4189486c6718fda78347bdf4ce4d3fc33b2236e1), [`ca8ec2f`](https://github.com/mastra-ai/mastra/commit/ca8ec2f61884b9dfec5fc0d5f4f29d281ad13c01)]:
259
+ - @mastra/core@0.14.2-alpha.1
260
+
261
+ ## 0.10.24-alpha.0
262
+
263
+ ### Patch Changes
264
+
265
+ - [#6949](https://github.com/mastra-ai/mastra/pull/6949) [`e6f5046`](https://github.com/mastra-ai/mastra/commit/e6f50467aff317e67e8bd74c485c3fbe2a5a6db1) Thanks [@CalebBarnes](https://github.com/CalebBarnes)! - stream/generate vnext: simplify internal output schema handling, improve types and typescript generics, and add jsdoc comments
266
+
267
+ - Updated dependencies [[`0778757`](https://github.com/mastra-ai/mastra/commit/07787570e4addbd501522037bd2542c3d9e26822), [`bf504a8`](https://github.com/mastra-ai/mastra/commit/bf504a833051f6f321d832cc7d631f3cb86d657b), [`e6f5046`](https://github.com/mastra-ai/mastra/commit/e6f50467aff317e67e8bd74c485c3fbe2a5a6db1), [`9613558`](https://github.com/mastra-ai/mastra/commit/9613558e6475f4710e05d1be7553a32ee7bddc20)]:
268
+ - @mastra/core@0.14.2-alpha.0
269
+
270
+ ## 0.10.23
271
+
272
+ ### Patch Changes
273
+
274
+ - Updated dependencies [[`6e7e120`](https://github.com/mastra-ai/mastra/commit/6e7e1207d6e8d8b838f9024f90bd10df1181ba27), [`0f00e17`](https://github.com/mastra-ai/mastra/commit/0f00e172953ccdccadb35ed3d70f5e4d89115869), [`217cd7a`](https://github.com/mastra-ai/mastra/commit/217cd7a4ce171e9a575c41bb8c83300f4db03236), [`a5a23d9`](https://github.com/mastra-ai/mastra/commit/a5a23d981920d458dc6078919992a5338931ef02)]:
275
+ - @mastra/core@0.14.1
276
+
277
+ ## 0.10.23-alpha.1
278
+
279
+ ### Patch Changes
280
+
281
+ - Updated dependencies [[`0f00e17`](https://github.com/mastra-ai/mastra/commit/0f00e172953ccdccadb35ed3d70f5e4d89115869), [`217cd7a`](https://github.com/mastra-ai/mastra/commit/217cd7a4ce171e9a575c41bb8c83300f4db03236)]:
282
+ - @mastra/core@0.14.1-alpha.1
283
+
284
+ ## 0.10.23-alpha.0
285
+
286
+ ### Patch Changes
287
+
288
+ - Updated dependencies [[`6e7e120`](https://github.com/mastra-ai/mastra/commit/6e7e1207d6e8d8b838f9024f90bd10df1181ba27), [`a5a23d9`](https://github.com/mastra-ai/mastra/commit/a5a23d981920d458dc6078919992a5338931ef02)]:
289
+ - @mastra/core@0.14.1-alpha.0
290
+
291
+ ## 0.10.22
292
+
293
+ ### Patch Changes
294
+
295
+ - 0a7f675: Add VNext methods and `processMastraStream`
296
+ - 6313063: Implement model switcher in playground
297
+ - 1d59515: Add options to playground based on modelVersion
298
+ - Updated dependencies [227c7e6]
299
+ - Updated dependencies [12cae67]
300
+ - Updated dependencies [fd3a3eb]
301
+ - Updated dependencies [6faaee5]
302
+ - Updated dependencies [4232b14]
303
+ - Updated dependencies [a89de7e]
304
+ - Updated dependencies [5a37d0c]
305
+ - Updated dependencies [4bde0cb]
306
+ - Updated dependencies [cf4f357]
307
+ - Updated dependencies [ad888a2]
308
+ - Updated dependencies [481751d]
309
+ - Updated dependencies [2454423]
310
+ - Updated dependencies [194e395]
311
+ - Updated dependencies [a722c0b]
312
+ - Updated dependencies [c30bca8]
313
+ - Updated dependencies [3b5fec7]
314
+ - Updated dependencies [a8f129d]
315
+ - @mastra/core@0.14.0
316
+
317
+ ## 0.10.22-alpha.7
318
+
319
+ ### Patch Changes
320
+
321
+ - @mastra/core@0.14.0-alpha.7
322
+
323
+ ## 0.10.22-alpha.6
324
+
325
+ ### Patch Changes
326
+
327
+ - Updated dependencies [ad888a2]
328
+ - Updated dependencies [481751d]
329
+ - Updated dependencies [194e395]
330
+ - @mastra/core@0.14.0-alpha.6
331
+
332
+ ## 0.10.22-alpha.5
333
+
334
+ ### Patch Changes
335
+
336
+ - @mastra/core@0.14.0-alpha.5
337
+
338
+ ## 0.10.22-alpha.4
339
+
340
+ ### Patch Changes
341
+
342
+ - 0a7f675: Client JS vnext methods
343
+ - 1d59515: Add options to playground based on modelVersion
344
+ - 195eabb: Process Mastra Stream
345
+ - Updated dependencies [0a7f675]
346
+ - Updated dependencies [12cae67]
347
+ - Updated dependencies [5a37d0c]
348
+ - Updated dependencies [4bde0cb]
349
+ - Updated dependencies [1a80071]
350
+ - Updated dependencies [36a3be8]
351
+ - Updated dependencies [361757b]
352
+ - Updated dependencies [2bb9955]
353
+ - Updated dependencies [2454423]
354
+ - Updated dependencies [a44d91e]
355
+ - Updated dependencies [dfb91e9]
356
+ - Updated dependencies [a741dde]
357
+ - Updated dependencies [7cb3fc0]
358
+ - Updated dependencies [195eabb]
359
+ - Updated dependencies [b78b95b]
360
+ - @mastra/core@0.14.0-alpha.4
361
+
362
+ ## 0.10.22-alpha.3
363
+
364
+ ### Patch Changes
365
+
366
+ - Updated dependencies [227c7e6]
367
+ - Updated dependencies [fd3a3eb]
368
+ - Updated dependencies [a8f129d]
369
+ - @mastra/core@0.14.0-alpha.3
370
+
371
+ ## 0.10.22-alpha.2
372
+
373
+ ### Patch Changes
374
+
375
+ - @mastra/core@0.14.0-alpha.2
376
+
377
+ ## 0.10.22-alpha.1
378
+
379
+ ### Patch Changes
380
+
381
+ - 6313063: Implement model switcher in playground
382
+ - Updated dependencies [6faaee5]
383
+ - Updated dependencies [4232b14]
384
+ - Updated dependencies [a89de7e]
385
+ - Updated dependencies [cf4f357]
386
+ - Updated dependencies [a722c0b]
387
+ - Updated dependencies [3b5fec7]
388
+ - @mastra/core@0.14.0-alpha.1
389
+
390
+ ## 0.10.22-alpha.0
391
+
392
+ ### Patch Changes
393
+
394
+ - Updated dependencies [c30bca8]
395
+ - @mastra/core@0.13.3-alpha.0
396
+
397
+ ## 0.10.21
398
+
399
+ ### Patch Changes
400
+
401
+ - a239d41: Updated A2A syntax to v0.3.0
402
+ - 96169cc: Create handler that returns providers user has keys for in their env
403
+ - ce04175: Add update agent model handler
404
+ - Updated dependencies [d5330bf]
405
+ - Updated dependencies [2e74797]
406
+ - Updated dependencies [8388649]
407
+ - Updated dependencies [a239d41]
408
+ - Updated dependencies [dd94a26]
409
+ - Updated dependencies [3ba6772]
410
+ - Updated dependencies [b5cf2a3]
411
+ - Updated dependencies [2fff911]
412
+ - Updated dependencies [b32c50d]
413
+ - Updated dependencies [63449d0]
414
+ - Updated dependencies [121a3f8]
415
+ - Updated dependencies [ec510e7]
416
+ - @mastra/core@0.13.2
417
+
418
+ ## 0.10.21-alpha.3
419
+
420
+ ### Patch Changes
421
+
422
+ - Updated dependencies [b5cf2a3]
423
+ - @mastra/core@0.13.2-alpha.3
424
+
425
+ ## 0.10.21-alpha.2
426
+
427
+ ### Patch Changes
428
+
429
+ - a239d41: Updated A2A syntax to v0.3.0
430
+ - 96169cc: Create handler that returns providers user has keys for in their env
431
+ - ce04175: Add update agent model handler
432
+ - Updated dependencies [d5330bf]
433
+ - Updated dependencies [a239d41]
434
+ - Updated dependencies [b32c50d]
435
+ - Updated dependencies [121a3f8]
436
+ - Updated dependencies [ec510e7]
437
+ - @mastra/core@0.13.2-alpha.2
438
+
439
+ ## 0.10.21-alpha.1
440
+
441
+ ### Patch Changes
442
+
443
+ - Updated dependencies [2e74797]
444
+ - Updated dependencies [63449d0]
445
+ - @mastra/core@0.13.2-alpha.1
446
+
447
+ ## 0.10.21-alpha.0
448
+
449
+ ### Patch Changes
450
+
451
+ - Updated dependencies [8388649]
452
+ - Updated dependencies [dd94a26]
453
+ - Updated dependencies [3ba6772]
454
+ - Updated dependencies [2fff911]
455
+ - @mastra/core@0.13.2-alpha.0
456
+
457
+ ## 0.10.20
458
+
459
+ ### Patch Changes
460
+
461
+ - Updated dependencies [cd0042e]
462
+ - @mastra/core@0.13.1
463
+
464
+ ## 0.10.20-alpha.0
465
+
466
+ ### Patch Changes
467
+
468
+ - Updated dependencies [cd0042e]
469
+ - @mastra/core@0.13.1-alpha.0
470
+
471
+ ## 0.10.19
472
+
473
+ ### Patch Changes
474
+
475
+ - 42dfc48: Fix tool messages structure in agui adapter
476
+ - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
477
+ - Updated dependencies [cb36de0]
478
+ - Updated dependencies [d0496e6]
479
+ - Updated dependencies [a82b851]
480
+ - Updated dependencies [ea0c5f2]
481
+ - Updated dependencies [41a0a0e]
482
+ - Updated dependencies [2871020]
483
+ - Updated dependencies [94f4812]
484
+ - Updated dependencies [e202b82]
485
+ - Updated dependencies [e00f6a0]
486
+ - Updated dependencies [4a406ec]
487
+ - Updated dependencies [b0e43c1]
488
+ - Updated dependencies [5d377e5]
489
+ - Updated dependencies [1fb812e]
490
+ - Updated dependencies [35c5798]
491
+ - @mastra/core@0.13.0
492
+
493
+ ## 0.10.19-alpha.3
494
+
495
+ ### Patch Changes
496
+
497
+ - Updated dependencies [d0496e6]
498
+ - @mastra/core@0.13.0-alpha.3
499
+
500
+ ## 0.10.19-alpha.2
501
+
502
+ ### Patch Changes
503
+
504
+ - 42dfc48: Fix tool messages structure in agui adapter
505
+ - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
506
+ - Updated dependencies [cb36de0]
507
+ - Updated dependencies [a82b851]
508
+ - Updated dependencies [41a0a0e]
509
+ - Updated dependencies [2871020]
510
+ - Updated dependencies [4a406ec]
511
+ - Updated dependencies [5d377e5]
512
+ - @mastra/core@0.13.0-alpha.2
513
+
514
+ ## 0.10.19-alpha.1
515
+
516
+ ### Patch Changes
517
+
518
+ - Updated dependencies [ea0c5f2]
519
+ - Updated dependencies [b0e43c1]
520
+ - Updated dependencies [1fb812e]
521
+ - Updated dependencies [35c5798]
522
+ - @mastra/core@0.13.0-alpha.1
523
+
524
+ ## 0.10.19-alpha.0
525
+
526
+ ### Patch Changes
527
+
528
+ - Updated dependencies [94f4812]
529
+ - Updated dependencies [e202b82]
530
+ - Updated dependencies [e00f6a0]
531
+ - @mastra/core@0.12.2-alpha.0
532
+
533
+ ## 0.10.18
534
+
535
+ ### Patch Changes
536
+
537
+ - 6690a16: dependencies updates:
538
+ - Updated dependency [`@ag-ui/client@^0.0.35` ↗︎](https://www.npmjs.com/package/@ag-ui/client/v/0.0.35) (from `^0.0.27`, in `dependencies`)
539
+ - Updated dependencies [33dcb07]
540
+ - Updated dependencies [d0d9500]
541
+ - Updated dependencies [d30b1a0]
542
+ - Updated dependencies [bff87f7]
543
+ - Updated dependencies [b4a8df0]
544
+ - @mastra/core@0.12.1
545
+
546
+ ## 0.10.18-alpha.1
547
+
548
+ ### Patch Changes
549
+
550
+ - Updated dependencies [d0d9500]
551
+ - @mastra/core@0.12.1-alpha.1
552
+
553
+ ## 0.10.18-alpha.0
554
+
555
+ ### Patch Changes
556
+
557
+ - 6690a16: dependencies updates:
558
+ - Updated dependency [`@ag-ui/client@^0.0.35` ↗︎](https://www.npmjs.com/package/@ag-ui/client/v/0.0.35) (from `^0.0.27`, in `dependencies`)
559
+ - Updated dependencies [33dcb07]
560
+ - Updated dependencies [d30b1a0]
561
+ - Updated dependencies [bff87f7]
562
+ - Updated dependencies [b4a8df0]
563
+ - @mastra/core@0.12.1-alpha.0
564
+
565
+ ## 0.10.17
566
+
567
+ ### Patch Changes
568
+
569
+ - aa2715b: process stream response error handling
570
+ - 6bd354c: Should not send content type if body instance of FormData
571
+ - cda801d: Added the ability to pass in metadata for UIMessage and MastraMessageV2 in client-js and agent.stream/generate
572
+ - b641ba3: fix: save score params
573
+ - 9802f42: Added types and tests to ensure client-js and hono endpoints can save memory messages where the input is either a v1 or v2 mastra message
574
+ - 1ac8f6b: deduplicate message
575
+ - b8efbb9: feat: add flexible deleteMessages method to memory API
576
+ - Added `memory.deleteMessages(input)` method that accepts multiple input types:
577
+ - Single message ID as string: `deleteMessages('msg-123')`
578
+ - Array of message IDs: `deleteMessages(['msg-1', 'msg-2'])`
579
+ - Message object with id property: `deleteMessages({ id: 'msg-123' })`
580
+ - Array of message objects: `deleteMessages([{ id: 'msg-1' }, { id: 'msg-2' }])`
581
+ - Implemented in all storage adapters (LibSQL, PostgreSQL, Upstash, InMemory)
582
+ - Added REST API endpoint: `POST /api/memory/messages/delete`
583
+ - Updated client SDK: `thread.deleteMessages()` accepts all input types
584
+ - Updates thread timestamps when messages are deleted
585
+ - Added comprehensive test coverage and documentation
586
+
587
+ - Updated dependencies [510e2c8]
588
+ - Updated dependencies [2f72fb2]
589
+ - Updated dependencies [27cc97a]
590
+ - Updated dependencies [3f89307]
591
+ - Updated dependencies [9eda7d4]
592
+ - Updated dependencies [9d49408]
593
+ - Updated dependencies [41daa63]
594
+ - Updated dependencies [ad0a58b]
595
+ - Updated dependencies [254a36b]
596
+ - Updated dependencies [2ecf658]
597
+ - Updated dependencies [7a7754f]
598
+ - Updated dependencies [fc92d80]
599
+ - Updated dependencies [e0f73c6]
600
+ - Updated dependencies [0b89602]
601
+ - Updated dependencies [4d37822]
602
+ - Updated dependencies [23a6a7c]
603
+ - Updated dependencies [cda801d]
604
+ - Updated dependencies [a77c823]
605
+ - Updated dependencies [ff9c125]
606
+ - Updated dependencies [09bca64]
607
+ - Updated dependencies [b8efbb9]
608
+ - Updated dependencies [71466e7]
609
+ - Updated dependencies [0c99fbe]
610
+ - @mastra/core@0.12.0
611
+
612
+ ## 0.10.17-alpha.5
613
+
614
+ ### Patch Changes
615
+
616
+ - @mastra/core@0.12.0-alpha.5
617
+
618
+ ## 0.10.17-alpha.4
619
+
620
+ ### Patch Changes
621
+
622
+ - Updated dependencies [ad0a58b]
623
+ - @mastra/core@0.12.0-alpha.4
624
+
625
+ ## 0.10.17-alpha.3
626
+
627
+ ### Patch Changes
628
+
629
+ - 9802f42: Added types and tests to ensure client-js and hono endpoints can save memory messages where the input is either a v1 or v2 mastra message
630
+ - 1ac8f6b: deduplicate message
631
+ - @mastra/core@0.12.0-alpha.3
632
+
633
+ ## 0.10.17-alpha.2
634
+
635
+ ### Patch Changes
636
+
637
+ - aa2715b: process stream response error handling
638
+ - b8efbb9: feat: add flexible deleteMessages method to memory API
639
+ - Added `memory.deleteMessages(input)` method that accepts multiple input types:
640
+ - Single message ID as string: `deleteMessages('msg-123')`
641
+ - Array of message IDs: `deleteMessages(['msg-1', 'msg-2'])`
642
+ - Message object with id property: `deleteMessages({ id: 'msg-123' })`
643
+ - Array of message objects: `deleteMessages([{ id: 'msg-1' }, { id: 'msg-2' }])`
644
+ - Implemented in all storage adapters (LibSQL, PostgreSQL, Upstash, InMemory)
645
+ - Added REST API endpoint: `POST /api/memory/messages/delete`
646
+ - Updated client SDK: `thread.deleteMessages()` accepts all input types
647
+ - Updates thread timestamps when messages are deleted
648
+ - Added comprehensive test coverage and documentation
649
+
650
+ - Updated dependencies [27cc97a]
651
+ - Updated dependencies [41daa63]
652
+ - Updated dependencies [254a36b]
653
+ - Updated dependencies [0b89602]
654
+ - Updated dependencies [4d37822]
655
+ - Updated dependencies [ff9c125]
656
+ - Updated dependencies [b8efbb9]
657
+ - Updated dependencies [71466e7]
658
+ - Updated dependencies [0c99fbe]
659
+ - @mastra/core@0.12.0-alpha.2
660
+
661
+ ## 0.10.17-alpha.1
662
+
663
+ ### Patch Changes
664
+
665
+ - cda801d: Added the ability to pass in metadata for UIMessage and MastraMessageV2 in client-js and agent.stream/generate
666
+ - Updated dependencies [e0f73c6]
667
+ - Updated dependencies [cda801d]
668
+ - Updated dependencies [a77c823]
669
+ - @mastra/core@0.12.0-alpha.1
670
+
671
+ ## 0.10.17-alpha.0
672
+
673
+ ### Patch Changes
674
+
675
+ - 6bd354c: Should not send content type if body instance of FormData
676
+ - b641ba3: fix: save score params
677
+ - Updated dependencies [510e2c8]
678
+ - Updated dependencies [2f72fb2]
679
+ - Updated dependencies [3f89307]
680
+ - Updated dependencies [9eda7d4]
681
+ - Updated dependencies [9d49408]
682
+ - Updated dependencies [2ecf658]
683
+ - Updated dependencies [7a7754f]
684
+ - Updated dependencies [fc92d80]
685
+ - Updated dependencies [23a6a7c]
686
+ - Updated dependencies [09bca64]
687
+ - @mastra/core@0.12.0-alpha.0
688
+
689
+ ## 0.10.16
690
+
691
+ ### Patch Changes
692
+
693
+ - @mastra/core@0.11.1
694
+
695
+ ## 0.10.15
696
+
697
+ ### Patch Changes
698
+
699
+ - 4832752: Do not set content-type header when making POST/PUT requests without a body
700
+ - f248d53: Adding `getMessagesPaginated` to the serve, deployer, and client-js
701
+ - 2affc57: Fix output type of network loop
702
+ - 032cb66: ClientJS
703
+ - 7827943: Handle streaming large data
704
+ - 65e3395: Add Scores playground-ui and add scorer hooks
705
+ - 80c2b06: Fix agent chat stop button to cancel stream/generate reqs in the playground
706
+ - 6f6e651: Alias createRun -> createRunAsync to match Mastra Workflow class
707
+ - Updated dependencies [f248d53]
708
+ - Updated dependencies [2affc57]
709
+ - Updated dependencies [66e13e3]
710
+ - Updated dependencies [edd9482]
711
+ - Updated dependencies [18344d7]
712
+ - Updated dependencies [9d372c2]
713
+ - Updated dependencies [40c2525]
714
+ - Updated dependencies [e473f27]
715
+ - Updated dependencies [032cb66]
716
+ - Updated dependencies [703ac71]
717
+ - Updated dependencies [a723d69]
718
+ - Updated dependencies [7827943]
719
+ - Updated dependencies [5889a31]
720
+ - Updated dependencies [bf1e7e7]
721
+ - Updated dependencies [65e3395]
722
+ - Updated dependencies [4933192]
723
+ - Updated dependencies [d1c77a4]
724
+ - Updated dependencies [bea9dd1]
725
+ - Updated dependencies [dcd4802]
726
+ - Updated dependencies [cbddd18]
727
+ - Updated dependencies [7ba91fa]
728
+ - @mastra/core@0.11.0
729
+
730
+ ## 0.10.15-alpha.3
731
+
732
+ ### Patch Changes
733
+
734
+ - @mastra/core@0.11.0-alpha.3
735
+
736
+ ## 0.10.15-alpha.2
737
+
738
+ ### Patch Changes
739
+
740
+ - 4832752: Do not set content-type header when making POST/PUT requests without a body
741
+ - f248d53: Adding `getMessagesPaginated` to the serve, deployer, and client-js
742
+ - 2affc57: Fix output type of network loop
743
+ - 032cb66: ClientJS
744
+ - 65e3395: Add Scores playground-ui and add scorer hooks
745
+ - 80c2b06: Fix agent chat stop button to cancel stream/generate reqs in the playground
746
+ - 6f6e651: Alias createRun -> createRunAsync to match Mastra Workflow class
747
+ - Updated dependencies [f248d53]
748
+ - Updated dependencies [2affc57]
749
+ - Updated dependencies [66e13e3]
750
+ - Updated dependencies [edd9482]
751
+ - Updated dependencies [18344d7]
752
+ - Updated dependencies [9d372c2]
753
+ - Updated dependencies [40c2525]
754
+ - Updated dependencies [e473f27]
755
+ - Updated dependencies [032cb66]
756
+ - Updated dependencies [703ac71]
757
+ - Updated dependencies [a723d69]
758
+ - Updated dependencies [5889a31]
759
+ - Updated dependencies [65e3395]
760
+ - Updated dependencies [4933192]
761
+ - Updated dependencies [d1c77a4]
762
+ - Updated dependencies [bea9dd1]
763
+ - Updated dependencies [dcd4802]
764
+ - Updated dependencies [7ba91fa]
765
+ - @mastra/core@0.11.0-alpha.2
766
+
767
+ ## 0.10.15-alpha.1
768
+
769
+ ### Patch Changes
770
+
771
+ - @mastra/core@0.11.0-alpha.1
772
+
773
+ ## 0.10.15-alpha.0
774
+
775
+ ### Patch Changes
776
+
777
+ - 7827943: Handle streaming large data
778
+ - Updated dependencies [7827943]
779
+ - Updated dependencies [bf1e7e7]
780
+ - Updated dependencies [cbddd18]
781
+ - @mastra/core@0.11.0-alpha.0
782
+
783
+ ## 0.10.14
4
784
 
5
785
  ### Patch Changes
6
786
 
@@ -11,16 +791,28 @@
11
791
  - Updated dependencies [db5cc15]
12
792
  - Updated dependencies [2ba5b76]
13
793
  - Updated dependencies [5237998]
794
+ - Updated dependencies [c3a30de]
14
795
  - Updated dependencies [37c1acd]
15
796
  - Updated dependencies [1aa60b1]
16
797
  - Updated dependencies [89ec9d4]
17
798
  - Updated dependencies [cf3a184]
18
- - Updated dependencies [3759392]
799
+ - Updated dependencies [d6bfd60]
19
800
  - Updated dependencies [626b0f4]
20
801
  - Updated dependencies [c22a91f]
21
802
  - Updated dependencies [f7403ab]
22
803
  - Updated dependencies [6c89d7f]
23
- - @mastra/core@0.0.0-message-list-update-20250715150321
804
+ - @mastra/core@0.10.15
805
+
806
+ ## 0.10.14-alpha.1
807
+
808
+ ### Patch Changes
809
+
810
+ - Updated dependencies [0b56518]
811
+ - Updated dependencies [2ba5b76]
812
+ - Updated dependencies [c3a30de]
813
+ - Updated dependencies [cf3a184]
814
+ - Updated dependencies [d6bfd60]
815
+ - @mastra/core@0.10.15-alpha.1
24
816
 
25
817
  ## 0.10.14-alpha.0
26
818