@mastra/client-js 0.0.0-generate-message-id-20250512171942 → 0.0.0-gl-test-20250917080133

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 (78) hide show
  1. package/CHANGELOG.md +1708 -4
  2. package/LICENSE.md +11 -42
  3. package/README.md +8 -9
  4. package/dist/client.d.ts +284 -0
  5. package/dist/client.d.ts.map +1 -0
  6. package/dist/example.d.ts +2 -0
  7. package/dist/example.d.ts.map +1 -0
  8. package/dist/index.cjs +2790 -608
  9. package/dist/index.cjs.map +1 -0
  10. package/dist/index.d.ts +5 -790
  11. package/dist/index.d.ts.map +1 -0
  12. package/dist/index.js +2791 -611
  13. package/dist/index.js.map +1 -0
  14. package/dist/resources/a2a.d.ts +41 -0
  15. package/dist/resources/a2a.d.ts.map +1 -0
  16. package/dist/resources/agent-builder.d.ts +160 -0
  17. package/dist/resources/agent-builder.d.ts.map +1 -0
  18. package/dist/resources/agent.d.ts +175 -0
  19. package/dist/resources/agent.d.ts.map +1 -0
  20. package/dist/resources/base.d.ts +13 -0
  21. package/dist/resources/base.d.ts.map +1 -0
  22. package/dist/resources/index.d.ts +13 -0
  23. package/dist/resources/index.d.ts.map +1 -0
  24. package/dist/resources/legacy-workflow.d.ts +90 -0
  25. package/dist/resources/legacy-workflow.d.ts.map +1 -0
  26. package/dist/resources/mcp-tool.d.ts +28 -0
  27. package/dist/resources/mcp-tool.d.ts.map +1 -0
  28. package/dist/resources/memory-thread.d.ts +53 -0
  29. package/dist/resources/memory-thread.d.ts.map +1 -0
  30. package/dist/resources/network-memory-thread.d.ts +47 -0
  31. package/dist/resources/network-memory-thread.d.ts.map +1 -0
  32. package/dist/resources/network.d.ts +32 -0
  33. package/dist/resources/network.d.ts.map +1 -0
  34. package/dist/resources/observability.d.ts +19 -0
  35. package/dist/resources/observability.d.ts.map +1 -0
  36. package/dist/resources/tool.d.ts +24 -0
  37. package/dist/resources/tool.d.ts.map +1 -0
  38. package/dist/resources/vNextNetwork.d.ts +43 -0
  39. package/dist/resources/vNextNetwork.d.ts.map +1 -0
  40. package/dist/resources/vector.d.ts +51 -0
  41. package/dist/resources/vector.d.ts.map +1 -0
  42. package/dist/resources/workflow.d.ts +226 -0
  43. package/dist/resources/workflow.d.ts.map +1 -0
  44. package/dist/tools.d.ts +22 -0
  45. package/dist/tools.d.ts.map +1 -0
  46. package/dist/types.d.ts +469 -0
  47. package/dist/types.d.ts.map +1 -0
  48. package/dist/utils/index.d.ts +5 -0
  49. package/dist/utils/index.d.ts.map +1 -0
  50. package/dist/utils/process-client-tools.d.ts +3 -0
  51. package/dist/utils/process-client-tools.d.ts.map +1 -0
  52. package/dist/utils/process-mastra-stream.d.ts +11 -0
  53. package/dist/utils/process-mastra-stream.d.ts.map +1 -0
  54. package/dist/utils/zod-to-json-schema.d.ts +3 -0
  55. package/dist/utils/zod-to-json-schema.d.ts.map +1 -0
  56. package/package.json +37 -20
  57. package/dist/index.d.cts +0 -790
  58. package/eslint.config.js +0 -6
  59. package/src/adapters/agui.test.ts +0 -180
  60. package/src/adapters/agui.ts +0 -239
  61. package/src/client.ts +0 -268
  62. package/src/example.ts +0 -65
  63. package/src/index.test.ts +0 -710
  64. package/src/index.ts +0 -2
  65. package/src/resources/a2a.ts +0 -88
  66. package/src/resources/agent.ts +0 -196
  67. package/src/resources/base.ts +0 -70
  68. package/src/resources/index.ts +0 -9
  69. package/src/resources/memory-thread.ts +0 -53
  70. package/src/resources/network.ts +0 -86
  71. package/src/resources/tool.ts +0 -44
  72. package/src/resources/vector.ts +0 -83
  73. package/src/resources/vnext-workflow.ts +0 -261
  74. package/src/resources/workflow.ts +0 -251
  75. package/src/types.ts +0 -262
  76. package/src/utils/zod-to-json-schema.ts +0 -10
  77. package/tsconfig.json +0 -5
  78. package/vitest.config.js +0 -8
package/CHANGELOG.md CHANGED
@@ -1,16 +1,1699 @@
1
1
  # @mastra/client-js
2
2
 
3
- ## 0.0.0-generate-message-id-20250512171942
3
+ ## 0.0.0-gl-test-20250917080133
4
+
5
+ ### Minor Changes
6
+
7
+ - Fully deprecated createRun (now throws an error) in favour of createRunAsync ([#7897](https://github.com/mastra-ai/mastra/pull/7897))
8
+
9
+ ### Patch Changes
10
+
11
+ - Update peerdep of @mastra/core ([#7619](https://github.com/mastra-ai/mastra/pull/7619))
12
+
13
+ - Playground ui -pass runtimeContext to client SDK get methods ([#7767](https://github.com/mastra-ai/mastra/pull/7767))
14
+
15
+ - Improve client-js SDK agent and workflow APIs ([#7592](https://github.com/mastra-ai/mastra/pull/7592))
16
+
17
+ - Dedicated client-js SDK createTool without server dependencies ([#7781](https://github.com/mastra-ai/mastra/pull/7781))
18
+
19
+ - Update package.json and README ([#7886](https://github.com/mastra-ai/mastra/pull/7886))
20
+
21
+ - Updated dependencies [[`a1bb887`](https://github.com/mastra-ai/mastra/commit/a1bb887e8bfae44230f487648da72e96ef824561), [`fb84c21`](https://github.com/mastra-ai/mastra/commit/fb84c21859d09bdc8f158bd5412bdc4b5835a61c), [`5802bf5`](https://github.com/mastra-ai/mastra/commit/5802bf57f6182e4b67c28d7d91abed349a8d14f3), [`5bda53a`](https://github.com/mastra-ai/mastra/commit/5bda53a9747bfa7d876d754fc92c83a06e503f62), [`f26a8fd`](https://github.com/mastra-ai/mastra/commit/f26a8fd99fcb0497a5d86c28324430d7f6a5fb83), [`6047778`](https://github.com/mastra-ai/mastra/commit/6047778e501df460648f31decddf8e443f36e373), [`a0f5f1c`](https://github.com/mastra-ai/mastra/commit/a0f5f1ca39c3c5c6d26202e9fcab986b4fe14568), [`9d4fc09`](https://github.com/mastra-ai/mastra/commit/9d4fc09b2ad55caa7738c7ceb3a905e454f74cdd), [`d75ccf0`](https://github.com/mastra-ai/mastra/commit/d75ccf06dfd2582b916aa12624e3cd61b279edf1), [`b356f5f`](https://github.com/mastra-ai/mastra/commit/b356f5f7566cb3edb755d91f00b72fc1420b2a37), [`de056a0`](https://github.com/mastra-ai/mastra/commit/de056a02cbb43f6aa0380ab2150ea404af9ec0dd), [`f5ce05f`](https://github.com/mastra-ai/mastra/commit/f5ce05f831d42c69559bf4c0fdb46ccb920fc3a3), [`60c9cec`](https://github.com/mastra-ai/mastra/commit/60c9cec7048a79a87440f7840c383875bd710d93), [`c93532a`](https://github.com/mastra-ai/mastra/commit/c93532a340b80e4dd946d4c138d9381de5f70399), [`9f6f30f`](https://github.com/mastra-ai/mastra/commit/9f6f30f04ec6648bbca798ea8aad59317c40d8db), [`547c621`](https://github.com/mastra-ai/mastra/commit/547c62104af3f7a551b3754e9cbdf0a3fbba15e4), [`897995e`](https://github.com/mastra-ai/mastra/commit/897995e630d572fe2891e7ede817938cabb43251), [`0fed8f2`](https://github.com/mastra-ai/mastra/commit/0fed8f2aa84b167b3415ea6f8f70755775132c8d), [`1a1fbe6`](https://github.com/mastra-ai/mastra/commit/1a1fbe66efb7d94abc373ed0dd9676adb8122454), [`d706fad`](https://github.com/mastra-ai/mastra/commit/d706fad6e6e4b72357b18d229ba38e6c913c0e70), [`87fd07f`](https://github.com/mastra-ai/mastra/commit/87fd07ff35387a38728967163460231b5d33ae3b), [`5c3768f`](https://github.com/mastra-ai/mastra/commit/5c3768fa959454232ad76715c381f4aac00c6881), [`36f39c0`](https://github.com/mastra-ai/mastra/commit/36f39c00dc794952dc3c11aab91c2fa8bca74b11), [`8a3f5e4`](https://github.com/mastra-ai/mastra/commit/8a3f5e4212ec36b302957deb4bd47005ab598382)]:
22
+ - @mastra/core@0.0.0-gl-test-20250917080133
23
+
24
+ ## 0.13.0-alpha.5
25
+
26
+ ### Patch Changes
27
+
28
+ - Updated dependencies [[`6047778`](https://github.com/mastra-ai/mastra/commit/6047778e501df460648f31decddf8e443f36e373)]:
29
+ - @mastra/core@0.17.0-alpha.5
30
+
31
+ ## 0.13.0-alpha.4
32
+
33
+ ### Minor Changes
34
+
35
+ - Fully deprecated createRun (now throws an error) in favour of createRunAsync ([#7897](https://github.com/mastra-ai/mastra/pull/7897))
36
+
37
+ ### Patch Changes
38
+
39
+ - Update package.json and README ([#7886](https://github.com/mastra-ai/mastra/pull/7886))
40
+
41
+ - Updated dependencies [[`fb84c21`](https://github.com/mastra-ai/mastra/commit/fb84c21859d09bdc8f158bd5412bdc4b5835a61c), [`9d4fc09`](https://github.com/mastra-ai/mastra/commit/9d4fc09b2ad55caa7738c7ceb3a905e454f74cdd), [`d75ccf0`](https://github.com/mastra-ai/mastra/commit/d75ccf06dfd2582b916aa12624e3cd61b279edf1), [`0fed8f2`](https://github.com/mastra-ai/mastra/commit/0fed8f2aa84b167b3415ea6f8f70755775132c8d), [`87fd07f`](https://github.com/mastra-ai/mastra/commit/87fd07ff35387a38728967163460231b5d33ae3b)]:
42
+ - @mastra/core@0.17.0-alpha.4
43
+
44
+ ## 0.12.4-alpha.3
45
+
46
+ ### Patch Changes
47
+
48
+ - Update peerdep of @mastra/core ([#7619](https://github.com/mastra-ai/mastra/pull/7619))
49
+
50
+ - Updated dependencies [[`a1bb887`](https://github.com/mastra-ai/mastra/commit/a1bb887e8bfae44230f487648da72e96ef824561), [`a0f5f1c`](https://github.com/mastra-ai/mastra/commit/a0f5f1ca39c3c5c6d26202e9fcab986b4fe14568), [`b356f5f`](https://github.com/mastra-ai/mastra/commit/b356f5f7566cb3edb755d91f00b72fc1420b2a37), [`f5ce05f`](https://github.com/mastra-ai/mastra/commit/f5ce05f831d42c69559bf4c0fdb46ccb920fc3a3), [`9f6f30f`](https://github.com/mastra-ai/mastra/commit/9f6f30f04ec6648bbca798ea8aad59317c40d8db), [`d706fad`](https://github.com/mastra-ai/mastra/commit/d706fad6e6e4b72357b18d229ba38e6c913c0e70), [`5c3768f`](https://github.com/mastra-ai/mastra/commit/5c3768fa959454232ad76715c381f4aac00c6881), [`8a3f5e4`](https://github.com/mastra-ai/mastra/commit/8a3f5e4212ec36b302957deb4bd47005ab598382)]:
51
+ - @mastra/core@0.17.0-alpha.3
52
+
53
+ ## 0.12.4-alpha.2
54
+
55
+ ### Patch Changes
56
+
57
+ - Updated dependencies [[`60c9cec`](https://github.com/mastra-ai/mastra/commit/60c9cec7048a79a87440f7840c383875bd710d93), [`897995e`](https://github.com/mastra-ai/mastra/commit/897995e630d572fe2891e7ede817938cabb43251)]:
58
+ - @mastra/core@0.16.4-alpha.2
59
+
60
+ ## 0.12.4-alpha.1
61
+
62
+ ### Patch Changes
63
+
64
+ - Updated dependencies [[`547c621`](https://github.com/mastra-ai/mastra/commit/547c62104af3f7a551b3754e9cbdf0a3fbba15e4)]:
65
+ - @mastra/core@0.16.4-alpha.1
66
+
67
+ ## 0.12.4-alpha.0
68
+
69
+ ### Patch Changes
70
+
71
+ - Playground ui -pass runtimeContext to client SDK get methods ([#7767](https://github.com/mastra-ai/mastra/pull/7767))
72
+
73
+ - Improve client-js SDK agent and workflow APIs ([#7592](https://github.com/mastra-ai/mastra/pull/7592))
74
+
75
+ - Dedicated client-js SDK createTool without server dependencies ([#7781](https://github.com/mastra-ai/mastra/pull/7781))
76
+
77
+ - Updated dependencies [[`5802bf5`](https://github.com/mastra-ai/mastra/commit/5802bf57f6182e4b67c28d7d91abed349a8d14f3), [`5bda53a`](https://github.com/mastra-ai/mastra/commit/5bda53a9747bfa7d876d754fc92c83a06e503f62), [`f26a8fd`](https://github.com/mastra-ai/mastra/commit/f26a8fd99fcb0497a5d86c28324430d7f6a5fb83), [`1a1fbe6`](https://github.com/mastra-ai/mastra/commit/1a1fbe66efb7d94abc373ed0dd9676adb8122454), [`36f39c0`](https://github.com/mastra-ai/mastra/commit/36f39c00dc794952dc3c11aab91c2fa8bca74b11)]:
78
+ - @mastra/core@0.16.4-alpha.0
79
+
80
+ ## 0.12.3
81
+
82
+ ### Patch Changes
83
+
84
+ - Delayed deprecation notice for streamVNext() replacing stream() until Sept 23rd ([#7739](https://github.com/mastra-ai/mastra/pull/7739))
85
+
86
+ - AN packages ([#7711](https://github.com/mastra-ai/mastra/pull/7711))
87
+
88
+ - Client SDK Agents, Mastra server - support runtimeContext with GET requests ([#7734](https://github.com/mastra-ai/mastra/pull/7734))
89
+
90
+ - Change SchemaCompat zodToJsonSchema ref strategy from none to relative, leading to less schema warnings and smaller converted schema sizes ([#7697](https://github.com/mastra-ai/mastra/pull/7697))
91
+
92
+ - Updated dependencies [[`b4379f7`](https://github.com/mastra-ai/mastra/commit/b4379f703fd74474f253420e8c3a684f2c4b2f8e), [`2a6585f`](https://github.com/mastra-ai/mastra/commit/2a6585f7cb71f023f805d521d1c3c95fb9a3aa59), [`3d26e83`](https://github.com/mastra-ai/mastra/commit/3d26e8353a945719028f087cc6ac4b06f0ce27d2), [`dd9119b`](https://github.com/mastra-ai/mastra/commit/dd9119b175a8f389082f75c12750e51f96d65dca), [`d34aaa1`](https://github.com/mastra-ai/mastra/commit/d34aaa1da5d3c5f991740f59e2fe6d28d3e2dd91), [`56e55d1`](https://github.com/mastra-ai/mastra/commit/56e55d1e9eb63e7d9e41aa46e012aae471256812), [`ce1e580`](https://github.com/mastra-ai/mastra/commit/ce1e580f6391e94a0c6816a9c5db0a21566a262f), [`b2babfa`](https://github.com/mastra-ai/mastra/commit/b2babfa9e75b22f2759179e71d8473f6dc5421ed), [`d8c3ba5`](https://github.com/mastra-ai/mastra/commit/d8c3ba516f4173282d293f7e64769cfc8738d360), [`a566c4e`](https://github.com/mastra-ai/mastra/commit/a566c4e92d86c1671707c54359b1d33934f7cc13), [`af333aa`](https://github.com/mastra-ai/mastra/commit/af333aa30fe6d1b127024b03a64736c46eddeca2), [`3863c52`](https://github.com/mastra-ai/mastra/commit/3863c52d44b4e5779968b802d977e87adf939d8e), [`6424c7e`](https://github.com/mastra-ai/mastra/commit/6424c7ec38b6921d66212431db1e0958f441b2a7), [`db94750`](https://github.com/mastra-ai/mastra/commit/db94750a41fd29b43eb1f7ce8e97ba8b9978c91b), [`a66a371`](https://github.com/mastra-ai/mastra/commit/a66a3716b00553d7f01842be9deb34f720b10fab), [`69fc3cd`](https://github.com/mastra-ai/mastra/commit/69fc3cd0fd814901785bdcf49bf536ab1e7fd975)]:
93
+ - @mastra/core@0.16.3
94
+
95
+ ## 0.12.3-alpha.1
96
+
97
+ ### Patch Changes
98
+
99
+ - Delayed deprecation notice for streamVNext() replacing stream() until Sept 23rd ([#7739](https://github.com/mastra-ai/mastra/pull/7739))
100
+
101
+ - Client SDK Agents, Mastra server - support runtimeContext with GET requests ([#7734](https://github.com/mastra-ai/mastra/pull/7734))
102
+
103
+ - Updated dependencies [[`2a6585f`](https://github.com/mastra-ai/mastra/commit/2a6585f7cb71f023f805d521d1c3c95fb9a3aa59), [`3d26e83`](https://github.com/mastra-ai/mastra/commit/3d26e8353a945719028f087cc6ac4b06f0ce27d2), [`56e55d1`](https://github.com/mastra-ai/mastra/commit/56e55d1e9eb63e7d9e41aa46e012aae471256812)]:
104
+ - @mastra/core@0.16.3-alpha.1
105
+
106
+ ## 0.12.3-alpha.0
107
+
108
+ ### Patch Changes
109
+
110
+ - AN packages ([#7711](https://github.com/mastra-ai/mastra/pull/7711))
111
+
112
+ - Change SchemaCompat zodToJsonSchema ref strategy from none to relative, leading to less schema warnings and smaller converted schema sizes ([#7697](https://github.com/mastra-ai/mastra/pull/7697))
113
+
114
+ - Updated dependencies [[`b4379f7`](https://github.com/mastra-ai/mastra/commit/b4379f703fd74474f253420e8c3a684f2c4b2f8e), [`dd9119b`](https://github.com/mastra-ai/mastra/commit/dd9119b175a8f389082f75c12750e51f96d65dca), [`d34aaa1`](https://github.com/mastra-ai/mastra/commit/d34aaa1da5d3c5f991740f59e2fe6d28d3e2dd91), [`ce1e580`](https://github.com/mastra-ai/mastra/commit/ce1e580f6391e94a0c6816a9c5db0a21566a262f), [`b2babfa`](https://github.com/mastra-ai/mastra/commit/b2babfa9e75b22f2759179e71d8473f6dc5421ed), [`d8c3ba5`](https://github.com/mastra-ai/mastra/commit/d8c3ba516f4173282d293f7e64769cfc8738d360), [`a566c4e`](https://github.com/mastra-ai/mastra/commit/a566c4e92d86c1671707c54359b1d33934f7cc13), [`af333aa`](https://github.com/mastra-ai/mastra/commit/af333aa30fe6d1b127024b03a64736c46eddeca2), [`3863c52`](https://github.com/mastra-ai/mastra/commit/3863c52d44b4e5779968b802d977e87adf939d8e), [`6424c7e`](https://github.com/mastra-ai/mastra/commit/6424c7ec38b6921d66212431db1e0958f441b2a7), [`db94750`](https://github.com/mastra-ai/mastra/commit/db94750a41fd29b43eb1f7ce8e97ba8b9978c91b), [`a66a371`](https://github.com/mastra-ai/mastra/commit/a66a3716b00553d7f01842be9deb34f720b10fab), [`69fc3cd`](https://github.com/mastra-ai/mastra/commit/69fc3cd0fd814901785bdcf49bf536ab1e7fd975)]:
115
+ - @mastra/core@0.16.3-alpha.0
116
+
117
+ ## 0.12.2
118
+
119
+ ### Patch Changes
120
+
121
+ - Updated dependencies [[`61926ef`](https://github.com/mastra-ai/mastra/commit/61926ef40d415b805a63527cffe27a50542e15e5)]:
122
+ - @mastra/core@0.16.2
123
+
124
+ ## 0.12.2-alpha.0
125
+
126
+ ### Patch Changes
127
+
128
+ - Updated dependencies [[`61926ef`](https://github.com/mastra-ai/mastra/commit/61926ef40d415b805a63527cffe27a50542e15e5)]:
129
+ - @mastra/core@0.16.2-alpha.0
130
+
131
+ ## 0.12.1
132
+
133
+ ### Patch Changes
134
+
135
+ - Allow streamVNext and generateVNext to use structuredOutputs from the MastraClient ([#7597](https://github.com/mastra-ai/mastra/pull/7597))
136
+
137
+ - Use workflow streamVNext in playground ([#7575](https://github.com/mastra-ai/mastra/pull/7575))
138
+
139
+ - Make agent streamVNext work with clientTools in client js ([#7577](https://github.com/mastra-ai/mastra/pull/7577))
140
+
141
+ - Updated dependencies [[`47b6dc9`](https://github.com/mastra-ai/mastra/commit/47b6dc94f4976d4f3d3882e8f19eb365bbc5976c), [`827d876`](https://github.com/mastra-ai/mastra/commit/827d8766f36a900afcaf64a040f7ba76249009b3), [`0662d02`](https://github.com/mastra-ai/mastra/commit/0662d02ef16916e67531890639fcd72c69cfb6e2), [`565d65f`](https://github.com/mastra-ai/mastra/commit/565d65fc16314a99f081975ec92f2636dff0c86d), [`6189844`](https://github.com/mastra-ai/mastra/commit/61898448e65bda02bb814fb15801a89dc6476938), [`4da3d68`](https://github.com/mastra-ai/mastra/commit/4da3d68a778e5c4d5a17351ef223289fe2f45a45), [`fd9bbfe`](https://github.com/mastra-ai/mastra/commit/fd9bbfee22484f8493582325f53e8171bf8e682b), [`7eaf1d1`](https://github.com/mastra-ai/mastra/commit/7eaf1d1cec7e828d7a98efc2a748ac395bbdba3b), [`6f046b5`](https://github.com/mastra-ai/mastra/commit/6f046b5ccc5c8721302a9a61d5d16c12374cc8d7), [`d7a8f59`](https://github.com/mastra-ai/mastra/commit/d7a8f59154b0621aec4f41a6b2ea2b3882f03cb7), [`0b0bbb2`](https://github.com/mastra-ai/mastra/commit/0b0bbb24f4198ead69792e92b68a350f52b45cf3), [`d951f41`](https://github.com/mastra-ai/mastra/commit/d951f41771e4e5da8da4b9f870949f9509e38756), [`4dda259`](https://github.com/mastra-ai/mastra/commit/4dda2593b6343f9258671de5fb237aeba3ef6bb7), [`8049e2e`](https://github.com/mastra-ai/mastra/commit/8049e2e8cce80a00353c64894c62b695ac34e35e), [`f3427cd`](https://github.com/mastra-ai/mastra/commit/f3427cdaf9eecd63360dfc897a4acbf5f4143a4e), [`defed1c`](https://github.com/mastra-ai/mastra/commit/defed1ca8040cc8d42e645c5a50a1bc52a4918d7), [`6991ced`](https://github.com/mastra-ai/mastra/commit/6991cedcb5a44a49d9fe58ef67926e1f96ba55b1), [`9cb9c42`](https://github.com/mastra-ai/mastra/commit/9cb9c422854ee81074989dd2d8dccc0500ba8d3e), [`8334859`](https://github.com/mastra-ai/mastra/commit/83348594d4f37b311ba4a94d679c5f8721d796d4), [`05f13b8`](https://github.com/mastra-ai/mastra/commit/05f13b8fb269ccfc4de98e9db58dbe16eae55a5e)]:
142
+ - @mastra/core@0.16.1
143
+
144
+ ## 0.12.1-alpha.3
145
+
146
+ ### Patch Changes
147
+
148
+ - Updated dependencies [[`fd9bbfe`](https://github.com/mastra-ai/mastra/commit/fd9bbfee22484f8493582325f53e8171bf8e682b)]:
149
+ - @mastra/core@0.16.1-alpha.3
150
+
151
+ ## 0.12.1-alpha.2
152
+
153
+ ### Patch Changes
154
+
155
+ - Updated dependencies [[`827d876`](https://github.com/mastra-ai/mastra/commit/827d8766f36a900afcaf64a040f7ba76249009b3), [`7eaf1d1`](https://github.com/mastra-ai/mastra/commit/7eaf1d1cec7e828d7a98efc2a748ac395bbdba3b), [`f3427cd`](https://github.com/mastra-ai/mastra/commit/f3427cdaf9eecd63360dfc897a4acbf5f4143a4e), [`05f13b8`](https://github.com/mastra-ai/mastra/commit/05f13b8fb269ccfc4de98e9db58dbe16eae55a5e)]:
156
+ - @mastra/core@0.16.1-alpha.2
157
+
158
+ ## 0.12.1-alpha.1
159
+
160
+ ### Patch Changes
161
+
162
+ - Allow streamVNext and generateVNext to use structuredOutputs from the MastraClient ([#7597](https://github.com/mastra-ai/mastra/pull/7597))
163
+
164
+ - Use workflow streamVNext in playground ([#7575](https://github.com/mastra-ai/mastra/pull/7575))
165
+
166
+ - Make agent streamVNext work with clientTools in client js ([#7577](https://github.com/mastra-ai/mastra/pull/7577))
167
+
168
+ - Updated dependencies [[`47b6dc9`](https://github.com/mastra-ai/mastra/commit/47b6dc94f4976d4f3d3882e8f19eb365bbc5976c), [`565d65f`](https://github.com/mastra-ai/mastra/commit/565d65fc16314a99f081975ec92f2636dff0c86d), [`4da3d68`](https://github.com/mastra-ai/mastra/commit/4da3d68a778e5c4d5a17351ef223289fe2f45a45), [`0b0bbb2`](https://github.com/mastra-ai/mastra/commit/0b0bbb24f4198ead69792e92b68a350f52b45cf3), [`d951f41`](https://github.com/mastra-ai/mastra/commit/d951f41771e4e5da8da4b9f870949f9509e38756), [`8049e2e`](https://github.com/mastra-ai/mastra/commit/8049e2e8cce80a00353c64894c62b695ac34e35e)]:
169
+ - @mastra/core@0.16.1-alpha.1
170
+
171
+ ## 0.12.1-alpha.0
172
+
173
+ ### Patch Changes
174
+
175
+ - Updated dependencies [[`0662d02`](https://github.com/mastra-ai/mastra/commit/0662d02ef16916e67531890639fcd72c69cfb6e2), [`6189844`](https://github.com/mastra-ai/mastra/commit/61898448e65bda02bb814fb15801a89dc6476938), [`d7a8f59`](https://github.com/mastra-ai/mastra/commit/d7a8f59154b0621aec4f41a6b2ea2b3882f03cb7), [`4dda259`](https://github.com/mastra-ai/mastra/commit/4dda2593b6343f9258671de5fb237aeba3ef6bb7), [`defed1c`](https://github.com/mastra-ai/mastra/commit/defed1ca8040cc8d42e645c5a50a1bc52a4918d7), [`6991ced`](https://github.com/mastra-ai/mastra/commit/6991cedcb5a44a49d9fe58ef67926e1f96ba55b1), [`9cb9c42`](https://github.com/mastra-ai/mastra/commit/9cb9c422854ee81074989dd2d8dccc0500ba8d3e), [`8334859`](https://github.com/mastra-ai/mastra/commit/83348594d4f37b311ba4a94d679c5f8721d796d4)]:
176
+ - @mastra/core@0.16.1-alpha.0
177
+
178
+ ## 0.12.0
179
+
180
+ ### Minor Changes
181
+
182
+ - 6155cfc: Remove AGUI implementation from client-js
183
+
184
+ ### Patch Changes
185
+
186
+ - cf4e353: Agent Builder Template - adding in UI components to use agent builder template actions
187
+ - 5397eb4: Add public URL support when adding files in Multi Modal
188
+ - Updated dependencies [8fbf79e]
189
+ - Updated dependencies [fd83526]
190
+ - Updated dependencies [d0b90ab]
191
+ - Updated dependencies [6f5eb7a]
192
+ - Updated dependencies [a01cf14]
193
+ - Updated dependencies [a9e50ee]
194
+ - Updated dependencies [5397eb4]
195
+ - Updated dependencies [c9f4e4a]
196
+ - Updated dependencies [0acbc80]
197
+ - @mastra/core@0.16.0
198
+
199
+ ## 0.12.0-alpha.1
200
+
201
+ ### Patch Changes
202
+
203
+ - Updated dependencies [8fbf79e]
204
+ - @mastra/core@0.16.0-alpha.1
205
+
206
+ ## 0.12.0-alpha.0
207
+
208
+ ### Minor Changes
209
+
210
+ - 6155cfc: Remove AGUI implementation from client-js
211
+
212
+ ### Patch Changes
213
+
214
+ - cf4e353: Agent Builder Template - adding in UI components to use agent builder template actions
215
+ - 5397eb4: Add public URL support when adding files in Multi Modal
216
+ - Updated dependencies [fd83526]
217
+ - Updated dependencies [d0b90ab]
218
+ - Updated dependencies [6f5eb7a]
219
+ - Updated dependencies [a01cf14]
220
+ - Updated dependencies [a9e50ee]
221
+ - Updated dependencies [5397eb4]
222
+ - Updated dependencies [c9f4e4a]
223
+ - Updated dependencies [0acbc80]
224
+ - @mastra/core@0.16.0-alpha.0
225
+
226
+ ## 0.11.3
227
+
228
+ ### Patch Changes
229
+
230
+ - ab48c97: dependencies updates:
231
+ - 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`)
232
+ - ff89505: Add deprecation warnings and add legacy routes
233
+ - de3cbc6: Update the `package.json` file to include additional fields like `repository`, `homepage` or `files`.
234
+ - 26b0d7c: Cleanup pkg output
235
+ - 48f0742: add deployer, server and clientjs handlers for agent builder template
236
+ - 5de1555: Fixed tracingContext on tool executions in AI tracing
237
+ - Updated dependencies [ab48c97]
238
+ - Updated dependencies [85ef90b]
239
+ - Updated dependencies [aedbbfa]
240
+ - Updated dependencies [ff89505]
241
+ - Updated dependencies [637f323]
242
+ - Updated dependencies [de3cbc6]
243
+ - Updated dependencies [c19bcf7]
244
+ - Updated dependencies [4474d04]
245
+ - Updated dependencies [183dc95]
246
+ - Updated dependencies [a1111e2]
247
+ - Updated dependencies [b42a961]
248
+ - Updated dependencies [61debef]
249
+ - Updated dependencies [9beaeff]
250
+ - Updated dependencies [29de0e1]
251
+ - Updated dependencies [f643c65]
252
+ - Updated dependencies [00c74e7]
253
+ - Updated dependencies [fef7375]
254
+ - Updated dependencies [e3d8fea]
255
+ - Updated dependencies [45e4d39]
256
+ - Updated dependencies [9eee594]
257
+ - Updated dependencies [7149d8d]
258
+ - Updated dependencies [822c2e8]
259
+ - Updated dependencies [979912c]
260
+ - Updated dependencies [7dcf4c0]
261
+ - Updated dependencies [4106a58]
262
+ - Updated dependencies [ad78bfc]
263
+ - Updated dependencies [0302f50]
264
+ - Updated dependencies [6ac697e]
265
+ - Updated dependencies [74db265]
266
+ - Updated dependencies [0ce418a]
267
+ - Updated dependencies [af90672]
268
+ - Updated dependencies [8387952]
269
+ - Updated dependencies [7f3b8da]
270
+ - Updated dependencies [905352b]
271
+ - Updated dependencies [599d04c]
272
+ - Updated dependencies [56041d0]
273
+ - Updated dependencies [3412597]
274
+ - Updated dependencies [5eca5d2]
275
+ - Updated dependencies [f2cda47]
276
+ - Updated dependencies [5de1555]
277
+ - Updated dependencies [cfd377a]
278
+ - Updated dependencies [1ed5a3e]
279
+ - @mastra/core@0.15.3
280
+
281
+ ## 0.11.3-alpha.9
282
+
283
+ ### Patch Changes
284
+
285
+ - Updated dependencies [[`599d04c`](https://github.com/mastra-ai/mastra/commit/599d04cebe92c1d536fee3190434941b8c91548e)]:
286
+ - @mastra/core@0.15.3-alpha.9
287
+
288
+ ## 0.11.3-alpha.8
289
+
290
+ ### Patch Changes
291
+
292
+ - Updated dependencies [[`4474d04`](https://github.com/mastra-ai/mastra/commit/4474d0489b1e152e0985c33a4f529207317d27b5), [`4106a58`](https://github.com/mastra-ai/mastra/commit/4106a58b15b4c0a060a4a9ccab52d119d00d8edb)]:
293
+ - @mastra/core@0.15.3-alpha.8
294
+
295
+ ## 0.11.3-alpha.7
296
+
297
+ ### Patch Changes
298
+
299
+ - Updated dependencies [[`7149d8d`](https://github.com/mastra-ai/mastra/commit/7149d8d4bdc1edf0008e0ca9b7925eb0b8b60dbe)]:
300
+ - @mastra/core@0.15.3-alpha.7
301
+
302
+ ## 0.11.3-alpha.6
303
+
304
+ ### Patch Changes
305
+
306
+ - 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)]:
307
+ - @mastra/core@0.15.3-alpha.6
308
+
309
+ ## 0.11.3-alpha.5
310
+
311
+ ### Patch Changes
312
+
313
+ - [#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`.
314
+
315
+ - Updated dependencies [[`85ef90b`](https://github.com/mastra-ai/mastra/commit/85ef90bb2cd4ae4df855c7ac175f7d392c55c1bf), [`de3cbc6`](https://github.com/mastra-ai/mastra/commit/de3cbc61079211431bd30487982ea3653517278e)]:
316
+ - @mastra/core@0.15.3-alpha.5
317
+
318
+ ## 0.11.3-alpha.4
319
+
320
+ ### Patch Changes
321
+
322
+ - [#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:
323
+ - 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`)
324
+
325
+ - [#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
326
+
327
+ - [#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
328
+
329
+ - [#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
330
+
331
+ - 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)]:
332
+ - @mastra/core@0.15.3-alpha.4
333
+
334
+ ## 0.11.3-alpha.3
335
+
336
+ ### Patch Changes
337
+
338
+ - 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)]:
339
+ - @mastra/core@0.15.3-alpha.3
340
+
341
+ ## 0.11.3-alpha.2
342
+
343
+ ### Patch Changes
344
+
345
+ - Updated dependencies [[`822c2e8`](https://github.com/mastra-ai/mastra/commit/822c2e88a3ecbffb7c680e6227976006ccefe6a8)]:
346
+ - @mastra/core@0.15.3-alpha.2
347
+
348
+ ## 0.11.3-alpha.1
349
+
350
+ ### Patch Changes
351
+
352
+ - 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)]:
353
+ - @mastra/core@0.15.3-alpha.1
354
+
355
+ ## 0.11.3-alpha.0
356
+
357
+ ### Patch Changes
358
+
359
+ - [#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
360
+
361
+ - 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)]:
362
+ - @mastra/core@0.15.3-alpha.0
363
+
364
+ ## 0.11.2
365
+
366
+ ### Patch Changes
367
+
368
+ - [`c6113ed`](https://github.com/mastra-ai/mastra/commit/c6113ed7f9df297e130d94436ceee310273d6430) Thanks [@wardpeet](https://github.com/wardpeet)! - Fix peerdpes for @mastra/core
369
+
370
+ - Updated dependencies []:
371
+ - @mastra/core@0.15.2
372
+
373
+ ## 0.11.1
374
+
375
+ ### Patch Changes
376
+
377
+ - Updated dependencies []:
378
+ - @mastra/core@0.15.1
379
+
380
+ ## 0.11.0
381
+
382
+ ### Minor Changes
383
+
384
+ - [#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
385
+
386
+ - [#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
387
+
388
+ ### Patch Changes
389
+
390
+ - [#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
391
+
392
+ - [#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
393
+
394
+ - [#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
395
+
396
+ - [#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
397
+
398
+ - 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)]:
399
+ - @mastra/core@0.15.0
400
+
401
+ ## 0.11.0-alpha.4
402
+
403
+ ### Minor Changes
404
+
405
+ - [#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
406
+
407
+ ### Patch Changes
408
+
409
+ - Updated dependencies [[`1191ce9`](https://github.com/mastra-ai/mastra/commit/1191ce946b40ed291e7877a349f8388e3cff7e5c)]:
410
+ - @mastra/core@0.15.0-alpha.4
411
+
412
+ ## 0.11.0-alpha.3
413
+
414
+ ### Patch Changes
415
+
416
+ - Updated dependencies []:
417
+ - @mastra/core@0.15.0-alpha.3
418
+
419
+ ## 0.11.0-alpha.2
420
+
421
+ ### Patch Changes
422
+
423
+ - Updated dependencies [[`2e58325`](https://github.com/mastra-ai/mastra/commit/2e58325beb170f5b92f856e27d915cd26917e5e6)]:
424
+ - @mastra/core@0.14.2-alpha.2
425
+
426
+ ## 0.11.0-alpha.1
427
+
428
+ ### Minor Changes
429
+
430
+ - [#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
431
+
432
+ ### Patch Changes
433
+
434
+ - [#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
435
+
436
+ - [#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
437
+
438
+ - [#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
439
+
440
+ - 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)]:
441
+ - @mastra/core@0.14.2-alpha.1
442
+
443
+ ## 0.10.24-alpha.0
444
+
445
+ ### Patch Changes
446
+
447
+ - [#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
448
+
449
+ - 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)]:
450
+ - @mastra/core@0.14.2-alpha.0
451
+
452
+ ## 0.10.23
453
+
454
+ ### Patch Changes
455
+
456
+ - 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)]:
457
+ - @mastra/core@0.14.1
458
+
459
+ ## 0.10.23-alpha.1
460
+
461
+ ### Patch Changes
462
+
463
+ - Updated dependencies [[`0f00e17`](https://github.com/mastra-ai/mastra/commit/0f00e172953ccdccadb35ed3d70f5e4d89115869), [`217cd7a`](https://github.com/mastra-ai/mastra/commit/217cd7a4ce171e9a575c41bb8c83300f4db03236)]:
464
+ - @mastra/core@0.14.1-alpha.1
465
+
466
+ ## 0.10.23-alpha.0
467
+
468
+ ### Patch Changes
469
+
470
+ - Updated dependencies [[`6e7e120`](https://github.com/mastra-ai/mastra/commit/6e7e1207d6e8d8b838f9024f90bd10df1181ba27), [`a5a23d9`](https://github.com/mastra-ai/mastra/commit/a5a23d981920d458dc6078919992a5338931ef02)]:
471
+ - @mastra/core@0.14.1-alpha.0
472
+
473
+ ## 0.10.22
474
+
475
+ ### Patch Changes
476
+
477
+ - 0a7f675: Add VNext methods and `processMastraStream`
478
+ - 6313063: Implement model switcher in playground
479
+ - 1d59515: Add options to playground based on modelVersion
480
+ - Updated dependencies [227c7e6]
481
+ - Updated dependencies [12cae67]
482
+ - Updated dependencies [fd3a3eb]
483
+ - Updated dependencies [6faaee5]
484
+ - Updated dependencies [4232b14]
485
+ - Updated dependencies [a89de7e]
486
+ - Updated dependencies [5a37d0c]
487
+ - Updated dependencies [4bde0cb]
488
+ - Updated dependencies [cf4f357]
489
+ - Updated dependencies [ad888a2]
490
+ - Updated dependencies [481751d]
491
+ - Updated dependencies [2454423]
492
+ - Updated dependencies [194e395]
493
+ - Updated dependencies [a722c0b]
494
+ - Updated dependencies [c30bca8]
495
+ - Updated dependencies [3b5fec7]
496
+ - Updated dependencies [a8f129d]
497
+ - @mastra/core@0.14.0
498
+
499
+ ## 0.10.22-alpha.7
500
+
501
+ ### Patch Changes
502
+
503
+ - @mastra/core@0.14.0-alpha.7
504
+
505
+ ## 0.10.22-alpha.6
506
+
507
+ ### Patch Changes
508
+
509
+ - Updated dependencies [ad888a2]
510
+ - Updated dependencies [481751d]
511
+ - Updated dependencies [194e395]
512
+ - @mastra/core@0.14.0-alpha.6
513
+
514
+ ## 0.10.22-alpha.5
515
+
516
+ ### Patch Changes
517
+
518
+ - @mastra/core@0.14.0-alpha.5
519
+
520
+ ## 0.10.22-alpha.4
521
+
522
+ ### Patch Changes
523
+
524
+ - 0a7f675: Client JS vnext methods
525
+ - 1d59515: Add options to playground based on modelVersion
526
+ - 195eabb: Process Mastra Stream
527
+ - Updated dependencies [0a7f675]
528
+ - Updated dependencies [12cae67]
529
+ - Updated dependencies [5a37d0c]
530
+ - Updated dependencies [4bde0cb]
531
+ - Updated dependencies [1a80071]
532
+ - Updated dependencies [36a3be8]
533
+ - Updated dependencies [361757b]
534
+ - Updated dependencies [2bb9955]
535
+ - Updated dependencies [2454423]
536
+ - Updated dependencies [a44d91e]
537
+ - Updated dependencies [dfb91e9]
538
+ - Updated dependencies [a741dde]
539
+ - Updated dependencies [7cb3fc0]
540
+ - Updated dependencies [195eabb]
541
+ - Updated dependencies [b78b95b]
542
+ - @mastra/core@0.14.0-alpha.4
543
+
544
+ ## 0.10.22-alpha.3
545
+
546
+ ### Patch Changes
547
+
548
+ - Updated dependencies [227c7e6]
549
+ - Updated dependencies [fd3a3eb]
550
+ - Updated dependencies [a8f129d]
551
+ - @mastra/core@0.14.0-alpha.3
552
+
553
+ ## 0.10.22-alpha.2
554
+
555
+ ### Patch Changes
556
+
557
+ - @mastra/core@0.14.0-alpha.2
558
+
559
+ ## 0.10.22-alpha.1
560
+
561
+ ### Patch Changes
562
+
563
+ - 6313063: Implement model switcher in playground
564
+ - Updated dependencies [6faaee5]
565
+ - Updated dependencies [4232b14]
566
+ - Updated dependencies [a89de7e]
567
+ - Updated dependencies [cf4f357]
568
+ - Updated dependencies [a722c0b]
569
+ - Updated dependencies [3b5fec7]
570
+ - @mastra/core@0.14.0-alpha.1
571
+
572
+ ## 0.10.22-alpha.0
573
+
574
+ ### Patch Changes
575
+
576
+ - Updated dependencies [c30bca8]
577
+ - @mastra/core@0.13.3-alpha.0
578
+
579
+ ## 0.10.21
580
+
581
+ ### Patch Changes
582
+
583
+ - a239d41: Updated A2A syntax to v0.3.0
584
+ - 96169cc: Create handler that returns providers user has keys for in their env
585
+ - ce04175: Add update agent model handler
586
+ - Updated dependencies [d5330bf]
587
+ - Updated dependencies [2e74797]
588
+ - Updated dependencies [8388649]
589
+ - Updated dependencies [a239d41]
590
+ - Updated dependencies [dd94a26]
591
+ - Updated dependencies [3ba6772]
592
+ - Updated dependencies [b5cf2a3]
593
+ - Updated dependencies [2fff911]
594
+ - Updated dependencies [b32c50d]
595
+ - Updated dependencies [63449d0]
596
+ - Updated dependencies [121a3f8]
597
+ - Updated dependencies [ec510e7]
598
+ - @mastra/core@0.13.2
599
+
600
+ ## 0.10.21-alpha.3
601
+
602
+ ### Patch Changes
603
+
604
+ - Updated dependencies [b5cf2a3]
605
+ - @mastra/core@0.13.2-alpha.3
606
+
607
+ ## 0.10.21-alpha.2
608
+
609
+ ### Patch Changes
610
+
611
+ - a239d41: Updated A2A syntax to v0.3.0
612
+ - 96169cc: Create handler that returns providers user has keys for in their env
613
+ - ce04175: Add update agent model handler
614
+ - Updated dependencies [d5330bf]
615
+ - Updated dependencies [a239d41]
616
+ - Updated dependencies [b32c50d]
617
+ - Updated dependencies [121a3f8]
618
+ - Updated dependencies [ec510e7]
619
+ - @mastra/core@0.13.2-alpha.2
620
+
621
+ ## 0.10.21-alpha.1
622
+
623
+ ### Patch Changes
624
+
625
+ - Updated dependencies [2e74797]
626
+ - Updated dependencies [63449d0]
627
+ - @mastra/core@0.13.2-alpha.1
628
+
629
+ ## 0.10.21-alpha.0
630
+
631
+ ### Patch Changes
632
+
633
+ - Updated dependencies [8388649]
634
+ - Updated dependencies [dd94a26]
635
+ - Updated dependencies [3ba6772]
636
+ - Updated dependencies [2fff911]
637
+ - @mastra/core@0.13.2-alpha.0
638
+
639
+ ## 0.10.20
640
+
641
+ ### Patch Changes
642
+
643
+ - Updated dependencies [cd0042e]
644
+ - @mastra/core@0.13.1
645
+
646
+ ## 0.10.20-alpha.0
647
+
648
+ ### Patch Changes
649
+
650
+ - Updated dependencies [cd0042e]
651
+ - @mastra/core@0.13.1-alpha.0
652
+
653
+ ## 0.10.19
654
+
655
+ ### Patch Changes
656
+
657
+ - 42dfc48: Fix tool messages structure in agui adapter
658
+ - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
659
+ - Updated dependencies [cb36de0]
660
+ - Updated dependencies [d0496e6]
661
+ - Updated dependencies [a82b851]
662
+ - Updated dependencies [ea0c5f2]
663
+ - Updated dependencies [41a0a0e]
664
+ - Updated dependencies [2871020]
665
+ - Updated dependencies [94f4812]
666
+ - Updated dependencies [e202b82]
667
+ - Updated dependencies [e00f6a0]
668
+ - Updated dependencies [4a406ec]
669
+ - Updated dependencies [b0e43c1]
670
+ - Updated dependencies [5d377e5]
671
+ - Updated dependencies [1fb812e]
672
+ - Updated dependencies [35c5798]
673
+ - @mastra/core@0.13.0
674
+
675
+ ## 0.10.19-alpha.3
676
+
677
+ ### Patch Changes
678
+
679
+ - Updated dependencies [d0496e6]
680
+ - @mastra/core@0.13.0-alpha.3
681
+
682
+ ## 0.10.19-alpha.2
683
+
684
+ ### Patch Changes
685
+
686
+ - 42dfc48: Fix tool messages structure in agui adapter
687
+ - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
688
+ - Updated dependencies [cb36de0]
689
+ - Updated dependencies [a82b851]
690
+ - Updated dependencies [41a0a0e]
691
+ - Updated dependencies [2871020]
692
+ - Updated dependencies [4a406ec]
693
+ - Updated dependencies [5d377e5]
694
+ - @mastra/core@0.13.0-alpha.2
695
+
696
+ ## 0.10.19-alpha.1
697
+
698
+ ### Patch Changes
699
+
700
+ - Updated dependencies [ea0c5f2]
701
+ - Updated dependencies [b0e43c1]
702
+ - Updated dependencies [1fb812e]
703
+ - Updated dependencies [35c5798]
704
+ - @mastra/core@0.13.0-alpha.1
705
+
706
+ ## 0.10.19-alpha.0
707
+
708
+ ### Patch Changes
709
+
710
+ - Updated dependencies [94f4812]
711
+ - Updated dependencies [e202b82]
712
+ - Updated dependencies [e00f6a0]
713
+ - @mastra/core@0.12.2-alpha.0
714
+
715
+ ## 0.10.18
716
+
717
+ ### Patch Changes
718
+
719
+ - 6690a16: dependencies updates:
720
+ - 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`)
721
+ - Updated dependencies [33dcb07]
722
+ - Updated dependencies [d0d9500]
723
+ - Updated dependencies [d30b1a0]
724
+ - Updated dependencies [bff87f7]
725
+ - Updated dependencies [b4a8df0]
726
+ - @mastra/core@0.12.1
727
+
728
+ ## 0.10.18-alpha.1
729
+
730
+ ### Patch Changes
731
+
732
+ - Updated dependencies [d0d9500]
733
+ - @mastra/core@0.12.1-alpha.1
734
+
735
+ ## 0.10.18-alpha.0
736
+
737
+ ### Patch Changes
738
+
739
+ - 6690a16: dependencies updates:
740
+ - 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`)
741
+ - Updated dependencies [33dcb07]
742
+ - Updated dependencies [d30b1a0]
743
+ - Updated dependencies [bff87f7]
744
+ - Updated dependencies [b4a8df0]
745
+ - @mastra/core@0.12.1-alpha.0
746
+
747
+ ## 0.10.17
748
+
749
+ ### Patch Changes
750
+
751
+ - aa2715b: process stream response error handling
752
+ - 6bd354c: Should not send content type if body instance of FormData
753
+ - cda801d: Added the ability to pass in metadata for UIMessage and MastraMessageV2 in client-js and agent.stream/generate
754
+ - b641ba3: fix: save score params
755
+ - 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
756
+ - 1ac8f6b: deduplicate message
757
+ - b8efbb9: feat: add flexible deleteMessages method to memory API
758
+ - Added `memory.deleteMessages(input)` method that accepts multiple input types:
759
+ - Single message ID as string: `deleteMessages('msg-123')`
760
+ - Array of message IDs: `deleteMessages(['msg-1', 'msg-2'])`
761
+ - Message object with id property: `deleteMessages({ id: 'msg-123' })`
762
+ - Array of message objects: `deleteMessages([{ id: 'msg-1' }, { id: 'msg-2' }])`
763
+ - Implemented in all storage adapters (LibSQL, PostgreSQL, Upstash, InMemory)
764
+ - Added REST API endpoint: `POST /api/memory/messages/delete`
765
+ - Updated client SDK: `thread.deleteMessages()` accepts all input types
766
+ - Updates thread timestamps when messages are deleted
767
+ - Added comprehensive test coverage and documentation
768
+
769
+ - Updated dependencies [510e2c8]
770
+ - Updated dependencies [2f72fb2]
771
+ - Updated dependencies [27cc97a]
772
+ - Updated dependencies [3f89307]
773
+ - Updated dependencies [9eda7d4]
774
+ - Updated dependencies [9d49408]
775
+ - Updated dependencies [41daa63]
776
+ - Updated dependencies [ad0a58b]
777
+ - Updated dependencies [254a36b]
778
+ - Updated dependencies [2ecf658]
779
+ - Updated dependencies [7a7754f]
780
+ - Updated dependencies [fc92d80]
781
+ - Updated dependencies [e0f73c6]
782
+ - Updated dependencies [0b89602]
783
+ - Updated dependencies [4d37822]
784
+ - Updated dependencies [23a6a7c]
785
+ - Updated dependencies [cda801d]
786
+ - Updated dependencies [a77c823]
787
+ - Updated dependencies [ff9c125]
788
+ - Updated dependencies [09bca64]
789
+ - Updated dependencies [b8efbb9]
790
+ - Updated dependencies [71466e7]
791
+ - Updated dependencies [0c99fbe]
792
+ - @mastra/core@0.12.0
793
+
794
+ ## 0.10.17-alpha.5
795
+
796
+ ### Patch Changes
797
+
798
+ - @mastra/core@0.12.0-alpha.5
799
+
800
+ ## 0.10.17-alpha.4
801
+
802
+ ### Patch Changes
803
+
804
+ - Updated dependencies [ad0a58b]
805
+ - @mastra/core@0.12.0-alpha.4
806
+
807
+ ## 0.10.17-alpha.3
808
+
809
+ ### Patch Changes
810
+
811
+ - 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
812
+ - 1ac8f6b: deduplicate message
813
+ - @mastra/core@0.12.0-alpha.3
814
+
815
+ ## 0.10.17-alpha.2
816
+
817
+ ### Patch Changes
818
+
819
+ - aa2715b: process stream response error handling
820
+ - b8efbb9: feat: add flexible deleteMessages method to memory API
821
+ - Added `memory.deleteMessages(input)` method that accepts multiple input types:
822
+ - Single message ID as string: `deleteMessages('msg-123')`
823
+ - Array of message IDs: `deleteMessages(['msg-1', 'msg-2'])`
824
+ - Message object with id property: `deleteMessages({ id: 'msg-123' })`
825
+ - Array of message objects: `deleteMessages([{ id: 'msg-1' }, { id: 'msg-2' }])`
826
+ - Implemented in all storage adapters (LibSQL, PostgreSQL, Upstash, InMemory)
827
+ - Added REST API endpoint: `POST /api/memory/messages/delete`
828
+ - Updated client SDK: `thread.deleteMessages()` accepts all input types
829
+ - Updates thread timestamps when messages are deleted
830
+ - Added comprehensive test coverage and documentation
831
+
832
+ - Updated dependencies [27cc97a]
833
+ - Updated dependencies [41daa63]
834
+ - Updated dependencies [254a36b]
835
+ - Updated dependencies [0b89602]
836
+ - Updated dependencies [4d37822]
837
+ - Updated dependencies [ff9c125]
838
+ - Updated dependencies [b8efbb9]
839
+ - Updated dependencies [71466e7]
840
+ - Updated dependencies [0c99fbe]
841
+ - @mastra/core@0.12.0-alpha.2
842
+
843
+ ## 0.10.17-alpha.1
844
+
845
+ ### Patch Changes
846
+
847
+ - cda801d: Added the ability to pass in metadata for UIMessage and MastraMessageV2 in client-js and agent.stream/generate
848
+ - Updated dependencies [e0f73c6]
849
+ - Updated dependencies [cda801d]
850
+ - Updated dependencies [a77c823]
851
+ - @mastra/core@0.12.0-alpha.1
852
+
853
+ ## 0.10.17-alpha.0
854
+
855
+ ### Patch Changes
856
+
857
+ - 6bd354c: Should not send content type if body instance of FormData
858
+ - b641ba3: fix: save score params
859
+ - Updated dependencies [510e2c8]
860
+ - Updated dependencies [2f72fb2]
861
+ - Updated dependencies [3f89307]
862
+ - Updated dependencies [9eda7d4]
863
+ - Updated dependencies [9d49408]
864
+ - Updated dependencies [2ecf658]
865
+ - Updated dependencies [7a7754f]
866
+ - Updated dependencies [fc92d80]
867
+ - Updated dependencies [23a6a7c]
868
+ - Updated dependencies [09bca64]
869
+ - @mastra/core@0.12.0-alpha.0
870
+
871
+ ## 0.10.16
872
+
873
+ ### Patch Changes
874
+
875
+ - @mastra/core@0.11.1
876
+
877
+ ## 0.10.15
878
+
879
+ ### Patch Changes
880
+
881
+ - 4832752: Do not set content-type header when making POST/PUT requests without a body
882
+ - f248d53: Adding `getMessagesPaginated` to the serve, deployer, and client-js
883
+ - 2affc57: Fix output type of network loop
884
+ - 032cb66: ClientJS
885
+ - 7827943: Handle streaming large data
886
+ - 65e3395: Add Scores playground-ui and add scorer hooks
887
+ - 80c2b06: Fix agent chat stop button to cancel stream/generate reqs in the playground
888
+ - 6f6e651: Alias createRun -> createRunAsync to match Mastra Workflow class
889
+ - Updated dependencies [f248d53]
890
+ - Updated dependencies [2affc57]
891
+ - Updated dependencies [66e13e3]
892
+ - Updated dependencies [edd9482]
893
+ - Updated dependencies [18344d7]
894
+ - Updated dependencies [9d372c2]
895
+ - Updated dependencies [40c2525]
896
+ - Updated dependencies [e473f27]
897
+ - Updated dependencies [032cb66]
898
+ - Updated dependencies [703ac71]
899
+ - Updated dependencies [a723d69]
900
+ - Updated dependencies [7827943]
901
+ - Updated dependencies [5889a31]
902
+ - Updated dependencies [bf1e7e7]
903
+ - Updated dependencies [65e3395]
904
+ - Updated dependencies [4933192]
905
+ - Updated dependencies [d1c77a4]
906
+ - Updated dependencies [bea9dd1]
907
+ - Updated dependencies [dcd4802]
908
+ - Updated dependencies [cbddd18]
909
+ - Updated dependencies [7ba91fa]
910
+ - @mastra/core@0.11.0
911
+
912
+ ## 0.10.15-alpha.3
913
+
914
+ ### Patch Changes
915
+
916
+ - @mastra/core@0.11.0-alpha.3
917
+
918
+ ## 0.10.15-alpha.2
919
+
920
+ ### Patch Changes
921
+
922
+ - 4832752: Do not set content-type header when making POST/PUT requests without a body
923
+ - f248d53: Adding `getMessagesPaginated` to the serve, deployer, and client-js
924
+ - 2affc57: Fix output type of network loop
925
+ - 032cb66: ClientJS
926
+ - 65e3395: Add Scores playground-ui and add scorer hooks
927
+ - 80c2b06: Fix agent chat stop button to cancel stream/generate reqs in the playground
928
+ - 6f6e651: Alias createRun -> createRunAsync to match Mastra Workflow class
929
+ - Updated dependencies [f248d53]
930
+ - Updated dependencies [2affc57]
931
+ - Updated dependencies [66e13e3]
932
+ - Updated dependencies [edd9482]
933
+ - Updated dependencies [18344d7]
934
+ - Updated dependencies [9d372c2]
935
+ - Updated dependencies [40c2525]
936
+ - Updated dependencies [e473f27]
937
+ - Updated dependencies [032cb66]
938
+ - Updated dependencies [703ac71]
939
+ - Updated dependencies [a723d69]
940
+ - Updated dependencies [5889a31]
941
+ - Updated dependencies [65e3395]
942
+ - Updated dependencies [4933192]
943
+ - Updated dependencies [d1c77a4]
944
+ - Updated dependencies [bea9dd1]
945
+ - Updated dependencies [dcd4802]
946
+ - Updated dependencies [7ba91fa]
947
+ - @mastra/core@0.11.0-alpha.2
948
+
949
+ ## 0.10.15-alpha.1
950
+
951
+ ### Patch Changes
952
+
953
+ - @mastra/core@0.11.0-alpha.1
954
+
955
+ ## 0.10.15-alpha.0
956
+
957
+ ### Patch Changes
958
+
959
+ - 7827943: Handle streaming large data
960
+ - Updated dependencies [7827943]
961
+ - Updated dependencies [bf1e7e7]
962
+ - Updated dependencies [cbddd18]
963
+ - @mastra/core@0.11.0-alpha.0
964
+
965
+ ## 0.10.14
966
+
967
+ ### Patch Changes
968
+
969
+ - 31f9f6b: Replace crypto randomUUID in client SDK"
970
+ - 1aa60b1: Pipe runtimeContext to vNext network agent stream and generate steps, wire up runtimeContext for vNext Networks in cliet SDK & playground
971
+ - 626b0f4: [Cloud-126] Working Memory Playground - Added working memory to playground to allow users to view/edit working memory
972
+ - Updated dependencies [0b56518]
973
+ - Updated dependencies [db5cc15]
974
+ - Updated dependencies [2ba5b76]
975
+ - Updated dependencies [5237998]
976
+ - Updated dependencies [c3a30de]
977
+ - Updated dependencies [37c1acd]
978
+ - Updated dependencies [1aa60b1]
979
+ - Updated dependencies [89ec9d4]
980
+ - Updated dependencies [cf3a184]
981
+ - Updated dependencies [d6bfd60]
982
+ - Updated dependencies [626b0f4]
983
+ - Updated dependencies [c22a91f]
984
+ - Updated dependencies [f7403ab]
985
+ - Updated dependencies [6c89d7f]
986
+ - @mastra/core@0.10.15
987
+
988
+ ## 0.10.14-alpha.1
989
+
990
+ ### Patch Changes
991
+
992
+ - Updated dependencies [0b56518]
993
+ - Updated dependencies [2ba5b76]
994
+ - Updated dependencies [c3a30de]
995
+ - Updated dependencies [cf3a184]
996
+ - Updated dependencies [d6bfd60]
997
+ - @mastra/core@0.10.15-alpha.1
998
+
999
+ ## 0.10.14-alpha.0
1000
+
1001
+ ### Patch Changes
1002
+
1003
+ - 31f9f6b: Replace crypto randomUUID in client SDK"
1004
+ - 1aa60b1: Pipe runtimeContext to vNext network agent stream and generate steps, wire up runtimeContext for vNext Networks in cliet SDK & playground
1005
+ - 626b0f4: [Cloud-126] Working Memory Playground - Added working memory to playground to allow users to view/edit working memory
1006
+ - Updated dependencies [db5cc15]
1007
+ - Updated dependencies [5237998]
1008
+ - Updated dependencies [37c1acd]
1009
+ - Updated dependencies [1aa60b1]
1010
+ - Updated dependencies [89ec9d4]
1011
+ - Updated dependencies [626b0f4]
1012
+ - Updated dependencies [c22a91f]
1013
+ - Updated dependencies [f7403ab]
1014
+ - Updated dependencies [6c89d7f]
1015
+ - @mastra/core@0.10.15-alpha.0
1016
+
1017
+ ## 0.10.13
1018
+
1019
+ ### Patch Changes
1020
+
1021
+ - @mastra/core@0.10.14
1022
+
1023
+ ## 0.10.11
1024
+
1025
+ ### Patch Changes
1026
+
1027
+ - 9468be4: Fix error on agent generate while using antropic
1028
+ - 44731a4: Client SDK - Expose processTextStream util for agent textstream with structured output
1029
+ - Updated dependencies [b4a9811]
1030
+ - Updated dependencies [4d5583d]
1031
+ - @mastra/core@0.10.12
1032
+
1033
+ ## 0.10.11-alpha.1
1034
+
1035
+ ### Patch Changes
1036
+
1037
+ - Updated dependencies [4d5583d]
1038
+ - @mastra/core@0.10.12-alpha.1
1039
+
1040
+ ## 0.10.11-alpha.0
1041
+
1042
+ ### Patch Changes
1043
+
1044
+ - 9468be4: Fix error on agent generate while using antropic
1045
+ - 44731a4: Client SDK - Expose processTextStream util for agent textstream with structured output
1046
+ - Updated dependencies [b4a9811]
1047
+ - @mastra/core@0.10.12-alpha.0
1048
+
1049
+ ## 0.10.10
1050
+
1051
+ ### Patch Changes
1052
+
1053
+ - 18da791: Add abortSignal to client SDK options
1054
+ - Updated dependencies [2873c7f]
1055
+ - Updated dependencies [1c1c6a1]
1056
+ - Updated dependencies [f8ce2cc]
1057
+ - Updated dependencies [8c846b6]
1058
+ - Updated dependencies [c7bbf1e]
1059
+ - Updated dependencies [8722d53]
1060
+ - Updated dependencies [565cc0c]
1061
+ - Updated dependencies [b790fd1]
1062
+ - Updated dependencies [132027f]
1063
+ - Updated dependencies [0c85311]
1064
+ - Updated dependencies [d7ed04d]
1065
+ - Updated dependencies [cb16baf]
1066
+ - Updated dependencies [f36e4f1]
1067
+ - Updated dependencies [7f6e403]
1068
+ - @mastra/core@0.10.11
1069
+
1070
+ ## 0.10.10-alpha.4
1071
+
1072
+ ### Patch Changes
1073
+
1074
+ - @mastra/core@0.10.11-alpha.4
1075
+
1076
+ ## 0.10.10-alpha.3
1077
+
1078
+ ### Patch Changes
1079
+
1080
+ - Updated dependencies [c7bbf1e]
1081
+ - Updated dependencies [8722d53]
1082
+ - Updated dependencies [132027f]
1083
+ - Updated dependencies [0c85311]
1084
+ - Updated dependencies [cb16baf]
1085
+ - @mastra/core@0.10.11-alpha.3
1086
+
1087
+ ## 0.10.10-alpha.2
1088
+
1089
+ ### Patch Changes
1090
+
1091
+ - 18da791: Add abortSignal to client SDK options
1092
+ - Updated dependencies [2873c7f]
1093
+ - Updated dependencies [1c1c6a1]
1094
+ - Updated dependencies [565cc0c]
1095
+ - @mastra/core@0.10.11-alpha.2
1096
+
1097
+ ## 0.10.10-alpha.1
1098
+
1099
+ ### Patch Changes
1100
+
1101
+ - Updated dependencies [7f6e403]
1102
+ - @mastra/core@0.10.11-alpha.1
1103
+
1104
+ ## 0.10.10-alpha.0
1105
+
1106
+ ### Patch Changes
1107
+
1108
+ - Updated dependencies [f8ce2cc]
1109
+ - Updated dependencies [8c846b6]
1110
+ - Updated dependencies [b790fd1]
1111
+ - Updated dependencies [d7ed04d]
1112
+ - Updated dependencies [f36e4f1]
1113
+ - @mastra/core@0.10.11-alpha.0
1114
+
1115
+ ## 0.10.9
1116
+
1117
+ ### Patch Changes
1118
+
1119
+ - b60f510: Fix getWorkflowRuns by limit and offset
1120
+ - 6997af1: add send event to server, deployer, client-js and playground-ui
1121
+ - Updated dependencies [4d3fbdf]
1122
+ - @mastra/core@0.10.10
1123
+
1124
+ ## 0.10.9-alpha.1
1125
+
1126
+ ### Patch Changes
1127
+
1128
+ - b60f510: Fix getWorkflowRuns by limit and offset
1129
+ - 6997af1: add send event to server, deployer, client-js and playground-ui
1130
+ - @mastra/core@0.10.10-alpha.1
1131
+
1132
+ ## 0.10.9-alpha.0
1133
+
1134
+ ### Patch Changes
1135
+
1136
+ - Updated dependencies [4d3fbdf]
1137
+ - @mastra/core@0.10.10-alpha.0
1138
+
1139
+ ## 0.10.8
1140
+
1141
+ ### Patch Changes
1142
+
1143
+ - 9047bda: clientTools - stream tool-result part
1144
+ - a606c75: show right suspend schema for nested workflow on playground
1145
+ - 1760a1c: Use workflow stream in playground instead of watch
1146
+ - 038e5ae: Add cancel workflow run
1147
+ - 7e801dd: Add tools to network api response
1148
+ - Updated dependencies [9dda1ac]
1149
+ - Updated dependencies [c984582]
1150
+ - Updated dependencies [7e801dd]
1151
+ - Updated dependencies [a606c75]
1152
+ - Updated dependencies [7aa70a4]
1153
+ - Updated dependencies [764f86a]
1154
+ - Updated dependencies [1760a1c]
1155
+ - Updated dependencies [038e5ae]
1156
+ - Updated dependencies [7dda16a]
1157
+ - Updated dependencies [5ebfcdd]
1158
+ - Updated dependencies [b2d0c91]
1159
+ - Updated dependencies [4e809ad]
1160
+ - Updated dependencies [57929df]
1161
+ - Updated dependencies [b7852ed]
1162
+ - Updated dependencies [6320a61]
1163
+ - @mastra/core@0.10.9
1164
+
1165
+ ## 0.10.8-alpha.0
1166
+
1167
+ ### Patch Changes
1168
+
1169
+ - 9047bda: clientTools - stream tool-result part
1170
+ - a606c75: show right suspend schema for nested workflow on playground
1171
+ - 1760a1c: Use workflow stream in playground instead of watch
1172
+ - 038e5ae: Add cancel workflow run
1173
+ - 7e801dd: Add tools to network api response
1174
+ - Updated dependencies [9dda1ac]
1175
+ - Updated dependencies [c984582]
1176
+ - Updated dependencies [7e801dd]
1177
+ - Updated dependencies [a606c75]
1178
+ - Updated dependencies [7aa70a4]
1179
+ - Updated dependencies [764f86a]
1180
+ - Updated dependencies [1760a1c]
1181
+ - Updated dependencies [038e5ae]
1182
+ - Updated dependencies [7dda16a]
1183
+ - Updated dependencies [5ebfcdd]
1184
+ - Updated dependencies [b2d0c91]
1185
+ - Updated dependencies [4e809ad]
1186
+ - Updated dependencies [57929df]
1187
+ - Updated dependencies [b7852ed]
1188
+ - Updated dependencies [6320a61]
1189
+ - @mastra/core@0.10.9-alpha.0
1190
+
1191
+ ## 0.10.7
1192
+
1193
+ ### Patch Changes
1194
+
1195
+ - a344ac7: Fix tool streaming in agent network
1196
+ - Updated dependencies [b8f16b2]
1197
+ - Updated dependencies [3e04487]
1198
+ - Updated dependencies [a344ac7]
1199
+ - Updated dependencies [dc4ca0a]
1200
+ - @mastra/core@0.10.8
1201
+
1202
+ ## 0.10.7-alpha.1
1203
+
1204
+ ### Patch Changes
1205
+
1206
+ - Updated dependencies [b8f16b2]
1207
+ - Updated dependencies [3e04487]
1208
+ - Updated dependencies [dc4ca0a]
1209
+ - @mastra/core@0.10.8-alpha.1
1210
+
1211
+ ## 0.10.7-alpha.0
1212
+
1213
+ ### Patch Changes
1214
+
1215
+ - a344ac7: Fix tool streaming in agent network
1216
+ - Updated dependencies [a344ac7]
1217
+ - @mastra/core@0.10.8-alpha.0
1218
+
1219
+ ## 0.10.6
1220
+
1221
+ ### Patch Changes
1222
+
1223
+ - 8e1b6e9: dependencies updates:
1224
+ - Updated dependency [`zod@^3.25.67` ↗︎](https://www.npmjs.com/package/zod/v/3.25.67) (from `^3.25.57`, in `dependencies`)
1225
+ - 9bf1d55: Fix runtimeContext in mastra server, client SDK
1226
+ - 18a5d59: clientTools client side execution
1227
+ - 5d74aab: vNext network in playground
1228
+ - bee3fe4: Fix client side tool calling
1229
+ - c0d41f6: Fix streaming for agent tool calls
1230
+ - Updated dependencies [15e9d26]
1231
+ - Updated dependencies [d1baedb]
1232
+ - Updated dependencies [d8f2d19]
1233
+ - Updated dependencies [4d21bf2]
1234
+ - Updated dependencies [07d6d88]
1235
+ - Updated dependencies [9d52b17]
1236
+ - Updated dependencies [2097952]
1237
+ - Updated dependencies [792c4c0]
1238
+ - Updated dependencies [5d74aab]
1239
+ - Updated dependencies [a8b194f]
1240
+ - Updated dependencies [4fb0cc2]
1241
+ - Updated dependencies [d2a7a31]
1242
+ - Updated dependencies [502fe05]
1243
+ - Updated dependencies [144eb0b]
1244
+ - Updated dependencies [8ba1b51]
1245
+ - Updated dependencies [4efcfa0]
1246
+ - Updated dependencies [0e17048]
1247
+ - @mastra/core@0.10.7
1248
+
1249
+ ## 0.10.6-alpha.6
1250
+
1251
+ ### Patch Changes
1252
+
1253
+ - c0d41f6: Fix streaming for agent tool calls
1254
+
1255
+ ## 0.10.6-alpha.5
1256
+
1257
+ ### Patch Changes
1258
+
1259
+ - bee3fe4: Fix client side tool calling
1260
+ - @mastra/core@0.10.7-alpha.5
1261
+
1262
+ ## 0.10.6-alpha.4
1263
+
1264
+ ### Patch Changes
1265
+
1266
+ - Updated dependencies [a8b194f]
1267
+ - @mastra/core@0.10.7-alpha.4
1268
+
1269
+ ## 0.10.6-alpha.3
1270
+
1271
+ ### Patch Changes
1272
+
1273
+ - 18a5d59: clientTools client side execution
1274
+ - Updated dependencies [792c4c0]
1275
+ - Updated dependencies [502fe05]
1276
+ - Updated dependencies [4efcfa0]
1277
+ - @mastra/core@0.10.7-alpha.3
1278
+
1279
+ ## 0.10.6-alpha.2
1280
+
1281
+ ### Patch Changes
1282
+
1283
+ - 8e1b6e9: dependencies updates:
1284
+ - Updated dependency [`zod@^3.25.67` ↗︎](https://www.npmjs.com/package/zod/v/3.25.67) (from `^3.25.57`, in `dependencies`)
1285
+ - 9bf1d55: Fix runtimeContext in mastra server, client SDK
1286
+ - 5d74aab: vNext network in playground
1287
+ - Updated dependencies [15e9d26]
1288
+ - Updated dependencies [07d6d88]
1289
+ - Updated dependencies [5d74aab]
1290
+ - Updated dependencies [144eb0b]
1291
+ - @mastra/core@0.10.7-alpha.2
1292
+
1293
+ ## 0.10.6-alpha.1
1294
+
1295
+ ### Patch Changes
1296
+
1297
+ - Updated dependencies [d1baedb]
1298
+ - Updated dependencies [4d21bf2]
1299
+ - Updated dependencies [2097952]
1300
+ - Updated dependencies [4fb0cc2]
1301
+ - Updated dependencies [d2a7a31]
1302
+ - Updated dependencies [0e17048]
1303
+ - @mastra/core@0.10.7-alpha.1
1304
+
1305
+ ## 0.10.6-alpha.0
1306
+
1307
+ ### Patch Changes
1308
+
1309
+ - Updated dependencies [d8f2d19]
1310
+ - Updated dependencies [9d52b17]
1311
+ - Updated dependencies [8ba1b51]
1312
+ - @mastra/core@0.10.7-alpha.0
1313
+
1314
+ ## 0.10.5
1315
+
1316
+ ### Patch Changes
1317
+
1318
+ - 63f6b7d: dependencies updates:
1319
+ - Updated dependency [`@ai-sdk/ui-utils@^1.2.11` ↗︎](https://www.npmjs.com/package/@ai-sdk/ui-utils/v/1.2.11) (from `^1.1.19`, in `dependencies`)
1320
+ - Updated dependency [`zod@^3.25.57` ↗︎](https://www.npmjs.com/package/zod/v/3.25.57) (from `^3.25.56`, in `dependencies`)
1321
+ - ee9af57: Add api for polling run execution result and get run by id
1322
+ - 3270d9d: Fix runtime context being undefined
1323
+ - Updated dependencies [63f6b7d]
1324
+ - Updated dependencies [12a95fc]
1325
+ - Updated dependencies [4b0f8a6]
1326
+ - Updated dependencies [51264a5]
1327
+ - Updated dependencies [8e6f677]
1328
+ - Updated dependencies [d70c420]
1329
+ - Updated dependencies [ee9af57]
1330
+ - Updated dependencies [36f1c36]
1331
+ - Updated dependencies [2a16996]
1332
+ - Updated dependencies [10d352e]
1333
+ - Updated dependencies [9589624]
1334
+ - Updated dependencies [53d3c37]
1335
+ - Updated dependencies [751c894]
1336
+ - Updated dependencies [577ce3a]
1337
+ - Updated dependencies [9260b3a]
1338
+ - @mastra/core@0.10.6
1339
+
1340
+ ## 0.10.5-alpha.5
1341
+
1342
+ ### Patch Changes
1343
+
1344
+ - Updated dependencies [12a95fc]
1345
+ - Updated dependencies [51264a5]
1346
+ - Updated dependencies [8e6f677]
1347
+ - @mastra/core@0.10.6-alpha.5
1348
+
1349
+ ## 0.10.5-alpha.4
1350
+
1351
+ ### Patch Changes
1352
+
1353
+ - Updated dependencies [9589624]
1354
+ - @mastra/core@0.10.6-alpha.4
1355
+
1356
+ ## 0.10.5-alpha.3
1357
+
1358
+ ### Patch Changes
1359
+
1360
+ - Updated dependencies [d70c420]
1361
+ - Updated dependencies [2a16996]
1362
+ - @mastra/core@0.10.6-alpha.3
1363
+
1364
+ ## 0.10.5-alpha.2
1365
+
1366
+ ### Patch Changes
1367
+
1368
+ - Updated dependencies [4b0f8a6]
1369
+ - @mastra/core@0.10.6-alpha.2
1370
+
1371
+ ## 0.10.5-alpha.1
1372
+
1373
+ ### Patch Changes
1374
+
1375
+ - ee9af57: Add api for polling run execution result and get run by id
1376
+ - 3270d9d: Fix runtime context being undefined
1377
+ - Updated dependencies [ee9af57]
1378
+ - Updated dependencies [751c894]
1379
+ - Updated dependencies [577ce3a]
1380
+ - Updated dependencies [9260b3a]
1381
+ - @mastra/core@0.10.6-alpha.1
1382
+
1383
+ ## 0.10.5-alpha.0
1384
+
1385
+ ### Patch Changes
1386
+
1387
+ - 63f6b7d: dependencies updates:
1388
+ - Updated dependency [`@ai-sdk/ui-utils@^1.2.11` ↗︎](https://www.npmjs.com/package/@ai-sdk/ui-utils/v/1.2.11) (from `^1.1.19`, in `dependencies`)
1389
+ - Updated dependency [`zod@^3.25.57` ↗︎](https://www.npmjs.com/package/zod/v/3.25.57) (from `^3.25.56`, in `dependencies`)
1390
+ - Updated dependencies [63f6b7d]
1391
+ - Updated dependencies [36f1c36]
1392
+ - Updated dependencies [10d352e]
1393
+ - Updated dependencies [53d3c37]
1394
+ - @mastra/core@0.10.6-alpha.0
1395
+
1396
+ ## 0.10.4
1397
+
1398
+ ### Patch Changes
1399
+
1400
+ - Updated dependencies [13c97f9]
1401
+ - @mastra/core@0.10.5
1402
+
1403
+ ## 0.10.3
1404
+
1405
+ ### Patch Changes
1406
+
1407
+ - 1ccccff: dependencies updates:
1408
+ - Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
1409
+ - 1ccccff: dependencies updates:
1410
+ - Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
1411
+ - f1f1f1b: Add basic filtering capabilities to logs
1412
+ - b2810ab: Move @mastra/core to deps
1413
+ - 82090c1: Add pagination to logs
1414
+ - 67d21b5: Added overloading to the generate method of the Agent class to enhance type definition using ZodSchema.
1415
+ - Updated dependencies [d1ed912]
1416
+ - Updated dependencies [f6fd25f]
1417
+ - Updated dependencies [dffb67b]
1418
+ - Updated dependencies [f1f1f1b]
1419
+ - Updated dependencies [925ab94]
1420
+ - Updated dependencies [f9816ae]
1421
+ - Updated dependencies [82090c1]
1422
+ - Updated dependencies [1b443fd]
1423
+ - Updated dependencies [ce97900]
1424
+ - Updated dependencies [f1309d3]
1425
+ - Updated dependencies [14a2566]
1426
+ - Updated dependencies [f7f8293]
1427
+ - Updated dependencies [48eddb9]
1428
+ - @mastra/core@0.10.4
1429
+
1430
+ ## 0.10.3-alpha.3
1431
+
1432
+ ### Patch Changes
1433
+
1434
+ - Updated dependencies [925ab94]
1435
+ - @mastra/core@0.10.4-alpha.3
1436
+
1437
+ ## 0.10.3-alpha.2
1438
+
1439
+ ### Patch Changes
1440
+
1441
+ - Updated dependencies [48eddb9]
1442
+ - @mastra/core@0.10.4-alpha.2
1443
+
1444
+ ## 0.10.3-alpha.1
1445
+
1446
+ ### Patch Changes
1447
+
1448
+ - 1ccccff: dependencies updates:
1449
+ - Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
1450
+ - 1ccccff: dependencies updates:
1451
+ - Updated dependency [`zod@^3.25.56` ↗︎](https://www.npmjs.com/package/zod/v/3.25.56) (from `^3.24.3`, in `dependencies`)
1452
+ - Updated dependencies [f6fd25f]
1453
+ - Updated dependencies [dffb67b]
1454
+ - Updated dependencies [f1309d3]
1455
+ - Updated dependencies [f7f8293]
1456
+ - @mastra/core@0.10.4-alpha.1
1457
+
1458
+ ## 0.10.3-alpha.0
1459
+
1460
+ ### Patch Changes
1461
+
1462
+ - f1f1f1b: Add basic filtering capabilities to logs
1463
+ - b2810ab: Move @mastra/core to deps
1464
+ - 82090c1: Add pagination to logs
1465
+ - 67d21b5: Added overloading to the generate method of the Agent class to enhance type definition using ZodSchema.
1466
+ - Updated dependencies [d1ed912]
1467
+ - Updated dependencies [f1f1f1b]
1468
+ - Updated dependencies [f9816ae]
1469
+ - Updated dependencies [82090c1]
1470
+ - Updated dependencies [1b443fd]
1471
+ - Updated dependencies [ce97900]
1472
+ - Updated dependencies [14a2566]
1473
+ - @mastra/core@0.10.4-alpha.0
1474
+
1475
+ ## 0.10.2
1476
+
1477
+ ### Patch Changes
1478
+
1479
+ - 592a2db: Added different icons for agents and workflows in mcp tools list
1480
+ - 37643b8: Fix tool access
1481
+ - c5bf1ce: Add backwards compat code for new MessageList in storage
1482
+ - b72c768: [Bug fix] Serialize parameters in clientTools
1483
+ - f0d559f: Fix peerdeps for alpha channel
1484
+ - Updated dependencies [ee77e78]
1485
+ - Updated dependencies [592a2db]
1486
+ - Updated dependencies [e5dc18d]
1487
+ - Updated dependencies [ab5adbe]
1488
+ - Updated dependencies [1e8bb40]
1489
+ - Updated dependencies [1b5fc55]
1490
+ - Updated dependencies [195c428]
1491
+ - Updated dependencies [f73e11b]
1492
+ - Updated dependencies [37643b8]
1493
+ - Updated dependencies [99fd6cf]
1494
+ - Updated dependencies [c5bf1ce]
1495
+ - Updated dependencies [add596e]
1496
+ - Updated dependencies [8dc94d8]
1497
+ - Updated dependencies [ecebbeb]
1498
+ - Updated dependencies [79d5145]
1499
+ - Updated dependencies [12b7002]
1500
+ - Updated dependencies [2901125]
1501
+ - @mastra/core@0.10.2
1502
+
1503
+ ## 0.10.2-alpha.3
1504
+
1505
+ ### Patch Changes
1506
+
1507
+ - 37643b8: Fix tool access
1508
+ - b72c768: [Bug fix] Serialize parameters in clientTools
1509
+ - Updated dependencies [37643b8]
1510
+ - Updated dependencies [79d5145]
1511
+ - @mastra/core@0.10.2-alpha.8
1512
+
1513
+ ## 0.10.2-alpha.2
1514
+
1515
+ ### Patch Changes
1516
+
1517
+ - c5bf1ce: Add backwards compat code for new MessageList in storage
1518
+ - Updated dependencies [c5bf1ce]
1519
+ - Updated dependencies [12b7002]
1520
+ - @mastra/core@0.10.2-alpha.4
1521
+
1522
+ ## 0.10.2-alpha.1
1523
+
1524
+ ### Patch Changes
1525
+
1526
+ - f0d559f: Fix peerdeps for alpha channel
1527
+ - Updated dependencies [1e8bb40]
1528
+ - @mastra/core@0.10.2-alpha.2
1529
+
1530
+ ## 0.10.2-alpha.0
1531
+
1532
+ ### Patch Changes
1533
+
1534
+ - 592a2db: Added different icons for agents and workflows in mcp tools list
1535
+ - Updated dependencies [592a2db]
1536
+ - Updated dependencies [e5dc18d]
1537
+ - @mastra/core@0.10.2-alpha.0
1538
+
1539
+ ## 0.10.1
1540
+
1541
+ ### Patch Changes
1542
+
1543
+ - 267773e: Show map config on workflow graph
1544
+ Highlight borders for conditions too on workflow graph
1545
+ Fix watch stream
1546
+ - 5343f93: Move emitter to symbol to make private
1547
+ - f622cfa: Make some properties of CreateMemoryThreadParams optional
1548
+ - 6015bdf: Leverage defaultAgentStreamOption, defaultAgentGenerateOption in playground
1549
+ - Updated dependencies [d70b807]
1550
+ - Updated dependencies [6d16390]
1551
+ - Updated dependencies [1e4a421]
1552
+ - Updated dependencies [200d0da]
1553
+ - Updated dependencies [bf5f17b]
1554
+ - Updated dependencies [5343f93]
1555
+ - Updated dependencies [38aee50]
1556
+ - Updated dependencies [5c41100]
1557
+ - Updated dependencies [d6a759b]
1558
+ - Updated dependencies [6015bdf]
1559
+ - @mastra/core@0.10.1
1560
+
1561
+ ## 0.10.1-alpha.3
1562
+
1563
+ ### Patch Changes
1564
+
1565
+ - 267773e: Show map config on workflow graph
1566
+ Highlight borders for conditions too on workflow graph
1567
+ Fix watch stream
1568
+
1569
+ ## 0.10.1-alpha.2
1570
+
1571
+ ### Patch Changes
1572
+
1573
+ - 6015bdf: Leverage defaultAgentStreamOption, defaultAgentGenerateOption in playground
1574
+ - Updated dependencies [6015bdf]
1575
+ - @mastra/core@0.10.1-alpha.2
1576
+
1577
+ ## 0.10.1-alpha.1
1578
+
1579
+ ### Patch Changes
1580
+
1581
+ - 5343f93: Move emitter to symbol to make private
1582
+ - Updated dependencies [200d0da]
1583
+ - Updated dependencies [bf5f17b]
1584
+ - Updated dependencies [5343f93]
1585
+ - Updated dependencies [38aee50]
1586
+ - Updated dependencies [5c41100]
1587
+ - Updated dependencies [d6a759b]
1588
+ - @mastra/core@0.10.1-alpha.1
1589
+
1590
+ ## 0.10.1-alpha.0
1591
+
1592
+ ### Patch Changes
1593
+
1594
+ - f622cfa: Make some properties of CreateMemoryThreadParams optional
1595
+ - Updated dependencies [6d16390]
1596
+ - Updated dependencies [1e4a421]
1597
+ - @mastra/core@0.10.1-alpha.0
1598
+
1599
+ ## 0.10.0
1600
+
1601
+ ### Minor Changes
1602
+
1603
+ - 83da932: Move @mastra/core to peerdeps
1604
+ - 5eb5a99: Remove pino from @mastra/core into @mastra/loggers
1605
+
1606
+ ### Patch Changes
1607
+
1608
+ - b3a3d63: BREAKING: Make vnext workflow the default worklow, and old workflow legacy_workflow
1609
+ - 0215b0b: Add description to vnext workflow response
1610
+ - f53a6ac: Add VNextWorkflowRuns type
1611
+ - ccdabdc: Remove trailing / from mastraClient baseUrl
1612
+ - a6e3881: Remove non serializable options from agent stream,generate
1613
+ - fddae56: Add telemetry to cliend SDK streamParams
1614
+ - 23f258c: Add new list and get routes for mcp servers. Changed route make-up for more consistency with existing API routes. Lastly, added in a lot of extra detail that can be optionally passed to the mcp server per the mcp spec.
1615
+ - 5063646: Accept plain obects as runtimeContext
1616
+ - 2672a05: Add MCP servers and tool call execution to playground
1617
+ - Updated dependencies [b3a3d63]
1618
+ - Updated dependencies [344f453]
1619
+ - Updated dependencies [0a3ae6d]
1620
+ - Updated dependencies [95911be]
1621
+ - Updated dependencies [f53a6ac]
1622
+ - Updated dependencies [5eb5a99]
1623
+ - Updated dependencies [7e632c5]
1624
+ - Updated dependencies [1e9fbfa]
1625
+ - Updated dependencies [eabdcd9]
1626
+ - Updated dependencies [90be034]
1627
+ - Updated dependencies [99f050a]
1628
+ - Updated dependencies [d0ee3c6]
1629
+ - Updated dependencies [b2ae5aa]
1630
+ - Updated dependencies [23f258c]
1631
+ - Updated dependencies [a7292b0]
1632
+ - Updated dependencies [0dcb9f0]
1633
+ - Updated dependencies [2672a05]
1634
+ - @mastra/core@0.10.0
1635
+
1636
+ ## 0.2.0-alpha.1
1637
+
1638
+ ### Minor Changes
1639
+
1640
+ - 83da932: Move @mastra/core to peerdeps
1641
+ - 5eb5a99: Remove pino from @mastra/core into @mastra/loggers
1642
+
1643
+ ### Patch Changes
1644
+
1645
+ - b3a3d63: BREAKING: Make vnext workflow the default worklow, and old workflow legacy_workflow
1646
+ - 0215b0b: Add description to vnext workflow response
1647
+ - 5063646: Accept plain obects as runtimeContext
1648
+ - Updated dependencies [b3a3d63]
1649
+ - Updated dependencies [344f453]
1650
+ - Updated dependencies [0a3ae6d]
1651
+ - Updated dependencies [95911be]
1652
+ - Updated dependencies [5eb5a99]
1653
+ - Updated dependencies [7e632c5]
1654
+ - Updated dependencies [1e9fbfa]
1655
+ - Updated dependencies [b2ae5aa]
1656
+ - Updated dependencies [a7292b0]
1657
+ - Updated dependencies [0dcb9f0]
1658
+ - @mastra/core@0.10.0-alpha.1
1659
+
1660
+ ## 0.1.23-alpha.0
4
1661
 
5
1662
  ### Patch Changes
6
1663
 
1664
+ - f53a6ac: Add VNextWorkflowRuns type
1665
+ - ccdabdc: Remove trailing / from mastraClient baseUrl
1666
+ - a6e3881: Remove non serializable options from agent stream,generate
1667
+ - fddae56: Add telemetry to cliend SDK streamParams
1668
+ - 23f258c: Add new list and get routes for mcp servers. Changed route make-up for more consistency with existing API routes. Lastly, added in a lot of extra detail that can be optionally passed to the mcp server per the mcp spec.
1669
+ - 2672a05: Add MCP servers and tool call execution to playground
1670
+ - Updated dependencies [f53a6ac]
1671
+ - Updated dependencies [eabdcd9]
1672
+ - Updated dependencies [90be034]
1673
+ - Updated dependencies [99f050a]
1674
+ - Updated dependencies [d0ee3c6]
1675
+ - Updated dependencies [23f258c]
1676
+ - Updated dependencies [2672a05]
1677
+ - @mastra/core@0.9.5-alpha.0
1678
+
1679
+ ## 0.1.22
1680
+
1681
+ ### Patch Changes
1682
+
1683
+ - c2f9e60: Resolves type issue and listen response string wrapped in text object twice
1684
+ - 5c70b8a: [MASTRA-3234] added limit for client-js getMessages
7
1685
  - b4c6c87: fix: Specify $refStrategy: 'none' when calling zodToJsonSchema.
8
- - 66a786d: Add support for experimental_generateMessageId and remove it from client-js types since it's not serializable
1686
+ - 0c3d117: Add workflows to agent server handlers
1687
+ - a5810ce: Add support for experimental_generateMessageId and remove it from client-js types since it's not serializable
9
1688
  - c2b980b: Fix multiple too-calls in AGUI
10
1689
  - cb1f698: Set runtimeContext from playground for agents, tools, workflows
11
1690
  - 0b8b868: Added A2A support + streaming
1691
+ - Updated dependencies [396be50]
12
1692
  - Updated dependencies [ab80e7e]
13
- - Updated dependencies [66a786d]
1693
+ - Updated dependencies [c3bd795]
1694
+ - Updated dependencies [da082f8]
1695
+ - Updated dependencies [a5810ce]
1696
+ - Updated dependencies [3e9c131]
14
1697
  - Updated dependencies [3171b5b]
15
1698
  - Updated dependencies [973e5ac]
16
1699
  - Updated dependencies [daf942f]
@@ -19,7 +1702,28 @@
19
1702
  - Updated dependencies [6fa1ad1]
20
1703
  - Updated dependencies [c28d7a0]
21
1704
  - Updated dependencies [edf1e88]
22
- - @mastra/core@0.0.0-generate-message-id-20250512171942
1705
+ - @mastra/core@0.9.4
1706
+
1707
+ ## 0.1.22-alpha.4
1708
+
1709
+ ### Patch Changes
1710
+
1711
+ - 5c70b8a: [MASTRA-3234] added limit for client-js getMessages
1712
+ - Updated dependencies [3e9c131]
1713
+ - @mastra/core@0.9.4-alpha.4
1714
+
1715
+ ## 0.1.22-alpha.3
1716
+
1717
+ ### Patch Changes
1718
+
1719
+ - c2f9e60: Resolves type issue and listen response string wrapped in text object twice
1720
+ - 0c3d117: Add workflows to agent server handlers
1721
+ - a5810ce: Add support for experimental_generateMessageId and remove it from client-js types since it's not serializable
1722
+ - Updated dependencies [396be50]
1723
+ - Updated dependencies [c3bd795]
1724
+ - Updated dependencies [da082f8]
1725
+ - Updated dependencies [a5810ce]
1726
+ - @mastra/core@0.9.4-alpha.3
23
1727
 
24
1728
  ## 0.1.22-alpha.2
25
1729