@ai-sdk/workflow 1.0.0-beta.10 → 1.0.0-beta.101

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,787 @@
1
1
  # @ai-sdk/workflow
2
2
 
3
+ ## 1.0.0-beta.101
4
+
5
+ ### Patch Changes
6
+
7
+ - b402b95: `WorkflowAgent` now rejects system messages inside `prompt` or `messages` by default, matching the behavior of `generateText`/`streamText`. Set `allowSystemInMessages: true` to opt in to the previous behavior.
8
+
9
+ ## 1.0.0-beta.100
10
+
11
+ ### Patch Changes
12
+
13
+ - 907e002: fix (workflow): forward provider-executed tool approvals to the provider on resume
14
+
15
+ `WorkflowAgent` stripped every `tool-approval-request` and `tool-approval-response` part from the messages when resuming after a tool approval, regardless of whether the tool was locally or provider-executed. For provider-executed tools (e.g. MCP via the OpenAI Responses API) this silently dropped the approval before `convertToLanguageModelPrompt` could forward it, so the provider never learned of the approval and the tool was never executed. Local approvals are still executed and stripped, while provider-executed approvals are now preserved and forwarded to the provider, matching the discriminator core's `streamText` already uses. This is the inverse of the bug fixed in #14289.
16
+
17
+ ## 1.0.0-beta.99
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies [cc6ab90]
22
+ - ai@7.0.0-beta.182
23
+
24
+ ## 1.0.0-beta.98
25
+
26
+ ### Patch Changes
27
+
28
+ - Updated dependencies [6a2caf9]
29
+ - ai@7.0.0-beta.181
30
+
31
+ ## 1.0.0-beta.97
32
+
33
+ ### Patch Changes
34
+
35
+ - Updated dependencies [81a284b]
36
+ - ai@7.0.0-beta.180
37
+
38
+ ## 1.0.0-beta.96
39
+
40
+ ### Patch Changes
41
+
42
+ - ai@7.0.0-beta.179
43
+
44
+ ## 1.0.0-beta.95
45
+
46
+ ### Patch Changes
47
+
48
+ - Updated dependencies [b097c52]
49
+ - ai@7.0.0-beta.178
50
+
51
+ ## 1.0.0-beta.94
52
+
53
+ ### Patch Changes
54
+
55
+ - b8396f0: trigger initial beta release
56
+ - Updated dependencies [b8396f0]
57
+ - @ai-sdk/provider-utils@5.0.0-beta.49
58
+ - @ai-sdk/provider@4.0.0-beta.19
59
+ - ai@7.0.0-beta.177
60
+
61
+ ## 1.0.0-canary.93
62
+
63
+ ### Patch Changes
64
+
65
+ - ai@7.0.0-canary.176
66
+
67
+ ## 1.0.0-canary.92
68
+
69
+ ### Patch Changes
70
+
71
+ - Updated dependencies [6ec57f5]
72
+ - ai@7.0.0-canary.175
73
+
74
+ ## 1.0.0-canary.91
75
+
76
+ ### Patch Changes
77
+
78
+ - ai@7.0.0-canary.174
79
+
80
+ ## 1.0.0-canary.90
81
+
82
+ ### Patch Changes
83
+
84
+ - ai@7.0.0-canary.173
85
+
86
+ ## 1.0.0-canary.89
87
+
88
+ ### Patch Changes
89
+
90
+ - Updated dependencies [aeda373]
91
+ - Updated dependencies [25a64f8]
92
+ - Updated dependencies [375fdd7]
93
+ - Updated dependencies [f18b08f]
94
+ - Updated dependencies [b4507d5]
95
+ - @ai-sdk/provider-utils@5.0.0-canary.48
96
+ - ai@7.0.0-canary.172
97
+
98
+ ## 1.0.0-canary.88
99
+
100
+ ### Patch Changes
101
+
102
+ - Updated dependencies [89ad56f]
103
+ - Updated dependencies [f9a496f]
104
+ - Updated dependencies [3295831]
105
+ - ai@7.0.0-canary.171
106
+
107
+ ## 1.0.0-canary.87
108
+
109
+ ### Patch Changes
110
+
111
+ - bae5e2b: fix(security): re-validate tool approvals from client message history before execution
112
+
113
+ The approval-replay path in `generateText`/`streamText` (and `WorkflowAgent.stream`) reconstructed approved tool calls from the client-supplied messages array and executed them without re-validating input against the tool's schema or re-applying the approval policy. A client could forge an assistant message with a pre-approved tool-call part and have the server execute a tool with attacker-chosen arguments.
114
+
115
+ The replay path now validates HMAC signature (when `experimental_toolApprovalSecret` is configured), re-validates tool-call input against the tool's input schema, and re-resolves the approval policy before execution.
116
+
117
+ - 69d7128: fix(workflow): reuse the core tool-approval validation in WorkflowAgent
118
+
119
+ `WorkflowAgent.stream` previously reconstructed approved tool calls with a copy of the core collection logic and validated them inline. Because the logic was duplicated, it could drift from the hardened `generateText`/`streamText` implementation. WorkflowAgent now collects approvals via the shared `collectToolApprovals` and re-validates each one through the shared `validateApprovedToolApprovals` (input-schema re-validation, HMAC signature verification when configured, and approval-policy re-resolution) in addition to its existing `needsApproval` guard, so a client-forged approval cannot execute a tool with unvalidated input. The duplicated collector was removed; `collectToolApprovals` and `validateApprovedToolApprovals` are now exported from `ai/internal`.
120
+
121
+ - Updated dependencies [bae5e2b]
122
+ - Updated dependencies [69d7128]
123
+ - ai@7.0.0-canary.170
124
+ - @ai-sdk/provider-utils@5.0.0-canary.47
125
+
126
+ ## 1.0.0-canary.86
127
+
128
+ ### Patch Changes
129
+
130
+ - Updated dependencies [a5018ab]
131
+ - Updated dependencies [21d3d60]
132
+ - Updated dependencies [426dbbb]
133
+ - Updated dependencies [7fd3360]
134
+ - ai@7.0.0-canary.169
135
+
136
+ ## 1.0.0-canary.85
137
+
138
+ ### Patch Changes
139
+
140
+ - 1e4b350: Honor `tool.toModelOutput` in `WorkflowAgent`.
141
+
142
+ `WorkflowAgent` now routes successful local, provider-executed, and approved tool results through each tool's optional `toModelOutput` hook, matching `generateText`, `streamText`, and `ToolLoopAgent`. Previously the hook was ignored and results were always serialized as `text` or `json`.
143
+
144
+ Internally exports the shared tool-result model-output helpers from `ai/internal`, and uses the shared `getErrorMessage` behavior for workflow tool error results.
145
+
146
+ - Updated dependencies [1e4b350]
147
+ - ai@7.0.0-canary.168
148
+
149
+ ## 1.0.0-canary.84
150
+
151
+ ### Patch Changes
152
+
153
+ - Updated dependencies [4757690]
154
+ - Updated dependencies [eeefc3f]
155
+ - Updated dependencies [b79b6a8]
156
+ - ai@7.0.0-canary.167
157
+
158
+ ## 1.0.0-canary.83
159
+
160
+ ### Patch Changes
161
+
162
+ - 19736ee: feat(ai): rename onStepFinish to onStepEnd
163
+ - Updated dependencies [19736ee]
164
+ - Updated dependencies [d66ae02]
165
+ - Updated dependencies [e4182bd]
166
+ - ai@7.0.0-canary.166
167
+
168
+ ## 1.0.0-canary.82
169
+
170
+ ### Patch Changes
171
+
172
+ - Updated dependencies [ce769dd]
173
+ - @ai-sdk/provider@4.0.0-canary.18
174
+ - ai@7.0.0-canary.165
175
+ - @ai-sdk/provider-utils@5.0.0-canary.46
176
+
177
+ ## 1.0.0-canary.81
178
+
179
+ ### Patch Changes
180
+
181
+ - ai@7.0.0-canary.164
182
+
183
+ ## 1.0.0-canary.80
184
+
185
+ ### Patch Changes
186
+
187
+ - Updated dependencies [ee798eb]
188
+ - Updated dependencies [daf6637]
189
+ - Updated dependencies [c907622]
190
+ - @ai-sdk/provider-utils@5.0.0-canary.45
191
+ - ai@7.0.0-canary.163
192
+
193
+ ## 1.0.0-canary.79
194
+
195
+ ### Patch Changes
196
+
197
+ - ai@7.0.0-canary.162
198
+
199
+ ## 1.0.0-canary.78
200
+
201
+ ### Patch Changes
202
+
203
+ - ai@7.0.0-canary.161
204
+
205
+ ## 1.0.0-canary.77
206
+
207
+ ### Patch Changes
208
+
209
+ - ai@7.0.0-canary.160
210
+
211
+ ## 1.0.0-canary.76
212
+
213
+ ### Patch Changes
214
+
215
+ - Updated dependencies [b5092f5]
216
+ - ai@7.0.0-canary.159
217
+
218
+ ## 1.0.0-canary.75
219
+
220
+ ### Patch Changes
221
+
222
+ - Updated dependencies [bcce2dd]
223
+ - ai@7.0.0-canary.158
224
+
225
+ ## 1.0.0-canary.74
226
+
227
+ ### Patch Changes
228
+
229
+ - ai@7.0.0-canary.157
230
+
231
+ ## 1.0.0-canary.73
232
+
233
+ ### Patch Changes
234
+
235
+ - Updated dependencies [023550e]
236
+ - Updated dependencies [e92fc45]
237
+ - ai@7.0.0-canary.156
238
+
239
+ ## 1.0.0-canary.72
240
+
241
+ ### Patch Changes
242
+
243
+ - Updated dependencies [e67d80e]
244
+ - Updated dependencies [6cca112]
245
+ - Updated dependencies [82fc0ab]
246
+ - Updated dependencies [76fd58c]
247
+ - ai@7.0.0-canary.155
248
+
249
+ ## 1.0.0-canary.71
250
+
251
+ ### Patch Changes
252
+
253
+ - Updated dependencies [594029e]
254
+ - ai@7.0.0-canary.154
255
+
256
+ ## 1.0.0-canary.70
257
+
258
+ ### Patch Changes
259
+
260
+ - Updated dependencies [6c93e36]
261
+ - Updated dependencies [f617ac2]
262
+ - @ai-sdk/provider-utils@5.0.0-canary.44
263
+ - ai@7.0.0-canary.153
264
+
265
+ ## 1.0.0-canary.69
266
+
267
+ ### Patch Changes
268
+
269
+ - ai@7.0.0-canary.152
270
+
271
+ ## 1.0.0-canary.68
272
+
273
+ ### Patch Changes
274
+
275
+ - ai@7.0.0-canary.151
276
+
277
+ ## 1.0.0-canary.67
278
+
279
+ ### Patch Changes
280
+
281
+ - ai@7.0.0-canary.150
282
+
283
+ ## 1.0.0-canary.66
284
+
285
+ ### Patch Changes
286
+
287
+ - Updated dependencies [e3d9c0e]
288
+ - ai@7.0.0-canary.149
289
+
290
+ ## 1.0.0-canary.65
291
+
292
+ ### Patch Changes
293
+
294
+ - Updated dependencies [2852a84]
295
+ - ai@7.0.0-canary.148
296
+
297
+ ## 1.0.0-canary.64
298
+
299
+ ### Patch Changes
300
+
301
+ - ai@7.0.0-canary.147
302
+
303
+ ## 1.0.0-canary.63
304
+
305
+ ### Patch Changes
306
+
307
+ - ai@7.0.0-canary.146
308
+
309
+ ## 1.0.0-canary.62
310
+
311
+ ### Patch Changes
312
+
313
+ - ai@7.0.0-canary.145
314
+
315
+ ## 1.0.0-canary.61
316
+
317
+ ### Patch Changes
318
+
319
+ - 7fc6bd6: Raise minimum supported Node.js version to 22. Supported versions: 22, 24, and 26.
320
+ - Updated dependencies [7fc6bd6]
321
+ - ai@7.0.0-canary.144
322
+ - @ai-sdk/provider-utils@5.0.0-canary.43
323
+ - @ai-sdk/provider@4.0.0-canary.17
324
+
325
+ ## 1.0.0-canary.60
326
+
327
+ ### Patch Changes
328
+
329
+ - b567a6c: dependency updates
330
+ - Updated dependencies [a6617c5]
331
+ - @ai-sdk/provider-utils@5.0.0-canary.42
332
+ - ai@7.0.0-canary.143
333
+
334
+ ## 1.0.0-canary.59
335
+
336
+ ### Patch Changes
337
+
338
+ - Updated dependencies [62d6481]
339
+ - ai@7.0.0-canary.142
340
+
341
+ ## 1.0.0-canary.58
342
+
343
+ ### Patch Changes
344
+
345
+ - Updated dependencies [e3a0419]
346
+ - ai@7.0.0-canary.141
347
+
348
+ ## 1.0.0-canary.57
349
+
350
+ ### Patch Changes
351
+
352
+ - ai@7.0.0-canary.140
353
+
354
+ ## 1.0.0-canary.56
355
+
356
+ ### Patch Changes
357
+
358
+ - 334ae5d: Update step performance metrics with explicit effective, input, output, and total token throughput fields.
359
+ - Updated dependencies [334ae5d]
360
+ - Updated dependencies [28dfa06]
361
+ - Updated dependencies [e93fa91]
362
+ - ai@7.0.0-canary.139
363
+ - @ai-sdk/provider-utils@5.0.0-canary.41
364
+
365
+ ## 1.0.0-canary.55
366
+
367
+ ### Patch Changes
368
+
369
+ - ai@7.0.0-canary.138
370
+
371
+ ## 1.0.0-canary.54
372
+
373
+ ### Patch Changes
374
+
375
+ - 98627e5: feat(ai): remove onChunk event from telemetry
376
+ - Updated dependencies [98627e5]
377
+ - Updated dependencies [476e1ca]
378
+ - ai@7.0.0-canary.137
379
+
380
+ ## 1.0.0-canary.53
381
+
382
+ ### Patch Changes
383
+
384
+ - Updated dependencies [a7de9c9]
385
+ - @ai-sdk/provider-utils@5.0.0-canary.40
386
+ - ai@7.0.0-canary.136
387
+
388
+ ## 1.0.0-canary.52
389
+
390
+ ### Patch Changes
391
+
392
+ - Updated dependencies [105f95b]
393
+ - @ai-sdk/provider-utils@5.0.0-canary.39
394
+ - ai@7.0.0-canary.135
395
+
396
+ ## 1.0.0-canary.51
397
+
398
+ ### Patch Changes
399
+
400
+ - Updated dependencies [ed74dae]
401
+ - Updated dependencies [f4cc8eb]
402
+ - Updated dependencies [e80ada0]
403
+ - Updated dependencies [1dca341]
404
+ - Updated dependencies [2605e5f]
405
+ - ai@7.0.0-canary.134
406
+
407
+ ## 1.0.0-canary.50
408
+
409
+ ### Patch Changes
410
+
411
+ - Updated dependencies [38ca8dc]
412
+ - Updated dependencies [6d76710]
413
+ - ai@7.0.0-canary.133
414
+
415
+ ## 1.0.0-canary.49
416
+
417
+ ### Patch Changes
418
+
419
+ - 81e68da: Fix `stepNumber` on telemetry events emitted by `WorkflowAgent.stream` so per-step telemetry integrations (e.g. `@ai-sdk/devtools`) correctly key state per step.
420
+ - Updated dependencies [eaf849f]
421
+ - Updated dependencies [8565dcb]
422
+ - ai@7.0.0-canary.132
423
+
424
+ ## 1.0.0-canary.48
425
+
426
+ ### Patch Changes
427
+
428
+ - c3a6524: Add a `stepNumber` option to `doStreamStep` so callers can create `StepResult` objects with the correct step number.
429
+
430
+ ## 1.0.0-canary.47
431
+
432
+ ### Patch Changes
433
+
434
+ - ca446f8: feat: flexible tool descriptions
435
+ - Updated dependencies [b67525f]
436
+ - Updated dependencies [ca446f8]
437
+ - Updated dependencies [bcacd48]
438
+ - ai@7.0.0-canary.131
439
+ - @ai-sdk/provider-utils@5.0.0-canary.38
440
+
441
+ ## 1.0.0-canary.46
442
+
443
+ ### Patch Changes
444
+
445
+ - ai@7.0.0-canary.130
446
+
447
+ ## 1.0.0-canary.45
448
+
449
+ ### Patch Changes
450
+
451
+ - Updated dependencies [d1b3786]
452
+ - ai@7.0.0-canary.129
453
+
454
+ ## 1.0.0-canary.44
455
+
456
+ ### Patch Changes
457
+
458
+ - Updated dependencies [d848405]
459
+ - @ai-sdk/provider-utils@5.0.0-canary.37
460
+ - ai@7.0.0-canary.128
461
+
462
+ ## 1.0.0-canary.43
463
+
464
+ ### Patch Changes
465
+
466
+ - d775a57: feat: introduce Instructions type
467
+ - 39dad72: feat(workflow): add stable telemetry integration support to `WorkflowAgent` and remove legacy telemetry options.
468
+ - Updated dependencies [e95e38d]
469
+ - Updated dependencies [016e877]
470
+ - Updated dependencies [ca99fea]
471
+ - Updated dependencies [ca39020]
472
+ - Updated dependencies [d775a57]
473
+ - Updated dependencies [538c12b]
474
+ - ai@7.0.0-canary.127
475
+ - @ai-sdk/provider-utils@5.0.0-canary.36
476
+
477
+ ## 1.0.0-canary.42
478
+
479
+ ### Patch Changes
480
+
481
+ - Updated dependencies [f634bac]
482
+ - @ai-sdk/provider-utils@5.0.0-canary.35
483
+ - ai@7.0.0-canary.126
484
+
485
+ ## 1.0.0-canary.41
486
+
487
+ ### Patch Changes
488
+
489
+ - 1d56275: feat(workflow): add `runtimeContext` and `toolsContext` to `WorkflowAgent`.
490
+
491
+ `runtimeContext` is shared agent state that flows through `prepareCall`, `prepareStep`, step results, and `onFinish`. `toolsContext` is a per-tool map; each tool receives its own validated entry as `context`, validated against `tool.contextSchema` when defined. The previous `experimental_context` option (and corresponding fields on related callbacks and option types) has been removed — use `runtimeContext` for shared state and `toolsContext` for per-tool values. Context values in `WorkflowAgent` should be serializable because they can cross workflow and step boundaries.
492
+
493
+ ## 1.0.0-canary.40
494
+
495
+ ### Patch Changes
496
+
497
+ - Updated dependencies [fd4f578]
498
+ - Updated dependencies [31f69de]
499
+ - Updated dependencies [7c71ac6]
500
+ - Updated dependencies [c0c8ca2]
501
+ - Updated dependencies [5faf71c]
502
+ - Updated dependencies [69254e0]
503
+ - Updated dependencies [3015fc3]
504
+ - Updated dependencies [eee1166]
505
+ - Updated dependencies [7dbf992]
506
+ - ai@7.0.0-canary.125
507
+ - @ai-sdk/provider-utils@5.0.0-canary.34
508
+
509
+ ## 1.0.0-canary.39
510
+
511
+ ### Patch Changes
512
+
513
+ - Updated dependencies [69aeb0e]
514
+ - Updated dependencies [48e92f3]
515
+ - ai@7.0.0-canary.124
516
+
517
+ ## 1.0.0-canary.38
518
+
519
+ ### Patch Changes
520
+
521
+ - Updated dependencies [7392266]
522
+ - Updated dependencies [4bb4dbc]
523
+ - ai@7.0.0-canary.123
524
+
525
+ ## 1.0.0-canary.37
526
+
527
+ ### Patch Changes
528
+
529
+ - Updated dependencies [79b2468]
530
+ - Updated dependencies [c22750c]
531
+ - ai@7.0.0-canary.122
532
+
533
+ ## 1.0.0-canary.36
534
+
535
+ ### Patch Changes
536
+
537
+ - Updated dependencies [2427d88]
538
+ - Updated dependencies [5588abd]
539
+ - Updated dependencies [6dd6b83]
540
+ - @ai-sdk/provider-utils@5.0.0-canary.33
541
+ - ai@7.0.0-canary.121
542
+
543
+ ## 1.0.0-canary.35
544
+
545
+ ### Patch Changes
546
+
547
+ - Updated dependencies [5463d0d]
548
+ - @ai-sdk/provider-utils@5.0.0-canary.32
549
+ - @ai-sdk/provider@4.0.0-canary.16
550
+ - ai@7.0.0-canary.120
551
+
552
+ ## 1.0.0-canary.34
553
+
554
+ ### Patch Changes
555
+
556
+ - ai@7.0.0-canary.119
557
+
558
+ ## 1.0.0-canary.33
559
+
560
+ ### Patch Changes
561
+
562
+ - Updated dependencies [47e65d6]
563
+ - ai@7.0.0-canary.118
564
+
565
+ ## 1.0.0-canary.32
566
+
567
+ ### Patch Changes
568
+
569
+ - 0c4c275: trigger initial canary release
570
+ - Updated dependencies [0c4c275]
571
+ - @ai-sdk/provider-utils@5.0.0-canary.31
572
+ - @ai-sdk/provider@4.0.0-canary.15
573
+ - ai@7.0.0-canary.117
574
+
575
+ ## 1.0.0-beta.31
576
+
577
+ ### Patch Changes
578
+
579
+ - ai@7.0.0-beta.116
580
+
581
+ ## 1.0.0-beta.30
582
+
583
+ ### Patch Changes
584
+
585
+ - Updated dependencies [08d2129]
586
+ - Updated dependencies [202f107]
587
+ - @ai-sdk/provider-utils@5.0.0-beta.30
588
+ - ai@7.0.0-beta.115
589
+
590
+ ## 1.0.0-beta.29
591
+
592
+ ### Patch Changes
593
+
594
+ - 258c093: chore: ensure consistent import handling and avoid import duplicates or cycles
595
+ - Updated dependencies [43a6750]
596
+ - Updated dependencies [81caa5d]
597
+ - Updated dependencies [1f7db50]
598
+ - Updated dependencies [9bd6512]
599
+ - Updated dependencies [258c093]
600
+ - Updated dependencies [b6783da]
601
+ - Updated dependencies [6147cdf]
602
+ - ai@7.0.0-beta.114
603
+ - @ai-sdk/provider-utils@5.0.0-beta.29
604
+ - @ai-sdk/provider@4.0.0-beta.14
605
+
606
+ ## 1.0.0-beta.28
607
+
608
+ ### Patch Changes
609
+
610
+ - 9f0e36c: trigger release for all packages after provenance setup
611
+ - Updated dependencies [9f0e36c]
612
+ - ai@7.0.0-beta.113
613
+ - @ai-sdk/provider@4.0.0-beta.13
614
+ - @ai-sdk/provider-utils@5.0.0-beta.28
615
+
616
+ ## 1.0.0-beta.27
617
+
618
+ ### Patch Changes
619
+
620
+ - 29d8cf4: feat(ai): rename the core-event types
621
+ - a0ca584: fix (workflow): preserve invalid tool calls as errors instead of emitting synthetic success results
622
+ - Updated dependencies [785fe16]
623
+ - Updated dependencies [5f3749c]
624
+ - Updated dependencies [0a51f7d]
625
+ - Updated dependencies [71d3022]
626
+ - Updated dependencies [67df0a0]
627
+ - Updated dependencies [4181cfe]
628
+ - Updated dependencies [51ce232]
629
+ - Updated dependencies [cf93359]
630
+ - Updated dependencies [befb78c]
631
+ - Updated dependencies [29d8cf4]
632
+ - Updated dependencies [0458559]
633
+ - Updated dependencies [58a2ad7]
634
+ - Updated dependencies [5852c0a]
635
+ - Updated dependencies [37d69b2]
636
+ - Updated dependencies [1043274]
637
+ - Updated dependencies [7f59f04]
638
+ - Updated dependencies [7677c1e]
639
+ - Updated dependencies [116c89f]
640
+ - Updated dependencies [f58f9bc]
641
+ - Updated dependencies [e1bfb9c]
642
+ - Updated dependencies [e87d71b]
643
+ - Updated dependencies [9d486aa]
644
+ - Updated dependencies [9b0bc8a]
645
+ - Updated dependencies [fc92055]
646
+ - Updated dependencies [4e095b0]
647
+ - @ai-sdk/provider-utils@5.0.0-beta.27
648
+ - ai@7.0.0-beta.112
649
+
650
+ ## 1.0.0-beta.26
651
+
652
+ ### Major Changes
653
+
654
+ - 1949571: feat(ai): make experimental_telemetry stable
655
+
656
+ ### Patch Changes
657
+
658
+ - f32c750: refactoring(ai): simplify mergeAbortSignals
659
+ - Updated dependencies [f319fde]
660
+ - Updated dependencies [1949571]
661
+ - Updated dependencies [511902c]
662
+ - Updated dependencies [6542d93]
663
+ - Updated dependencies [2e98477]
664
+ - Updated dependencies [876fd3e]
665
+ - Updated dependencies [f32c750]
666
+ - ai@7.0.0-beta.111
667
+ - @ai-sdk/provider-utils@5.0.0-beta.26
668
+
669
+ ## 1.0.0-beta.25
670
+
671
+ ### Patch Changes
672
+
673
+ - Updated dependencies [72cb801]
674
+ - ai@7.0.0-beta.110
675
+
676
+ ## 1.0.0-beta.24
677
+
678
+ ### Patch Changes
679
+
680
+ - eea8d98: refactoring: rename tool execution events
681
+ - Updated dependencies [ec98264]
682
+ - Updated dependencies [eea8d98]
683
+ - Updated dependencies [75ef93e]
684
+ - ai@7.0.0-beta.109
685
+ - @ai-sdk/provider-utils@5.0.0-beta.25
686
+
687
+ ## 1.0.0-beta.23
688
+
689
+ ### Patch Changes
690
+
691
+ - Updated dependencies [f807e45]
692
+ - @ai-sdk/provider-utils@5.0.0-beta.24
693
+ - ai@7.0.0-beta.108
694
+
695
+ ## 1.0.0-beta.22
696
+
697
+ ### Patch Changes
698
+
699
+ - Updated dependencies [350ea38]
700
+ - @ai-sdk/provider-utils@5.0.0-beta.23
701
+ - ai@7.0.0-beta.107
702
+
703
+ ## 1.0.0-beta.21
704
+
705
+ ### Patch Changes
706
+
707
+ - fbea042: refactor: replace duplicate `filterTools`/`filterToolSet` with shared `experimental_filterActiveTools` from `ai`
708
+
709
+ ## 1.0.0-beta.20
710
+
711
+ ### Patch Changes
712
+
713
+ - ai@7.0.0-beta.106
714
+
715
+ ## 1.0.0-beta.19
716
+
717
+ ### Patch Changes
718
+
719
+ - Updated dependencies [33d099c]
720
+ - ai@7.0.0-beta.105
721
+
722
+ ## 1.0.0-beta.18
723
+
724
+ ### Patch Changes
725
+
726
+ - eba685c: Remove `maxSteps` option from `WorkflowAgent`. Use `stopWhen` with stop conditions like `isStepCount()` instead.
727
+ - Updated dependencies [2a74d43]
728
+ - ai@7.0.0-beta.104
729
+
730
+ ## 1.0.0-beta.17
731
+
732
+ ### Patch Changes
733
+
734
+ - 382d53b: refactoring: rename context to runtimeContext
735
+ - c3d4019: chore(ai): rename 'TelemetrySettings' to 'TelemetryOptions'
736
+ - 083947b: feat(ai): separate toolsContext from context
737
+ - Updated dependencies [382d53b]
738
+ - Updated dependencies [7bf7d7f]
739
+ - Updated dependencies [c3d4019]
740
+ - Updated dependencies [083947b]
741
+ - ai@7.0.0-beta.103
742
+ - @ai-sdk/provider-utils@5.0.0-beta.22
743
+
744
+ ## 1.0.0-beta.16
745
+
746
+ ### Patch Changes
747
+
748
+ - ai@7.0.0-beta.102
749
+
750
+ ## 1.0.0-beta.15
751
+
752
+ ### Patch Changes
753
+
754
+ - Updated dependencies [4873966]
755
+ - ai@7.0.0-beta.101
756
+
757
+ ## 1.0.0-beta.14
758
+
759
+ ### Patch Changes
760
+
761
+ - Updated dependencies [add1126]
762
+ - @ai-sdk/provider-utils@5.0.0-beta.21
763
+ - ai@7.0.0-beta.100
764
+
765
+ ## 1.0.0-beta.13
766
+
767
+ ### Patch Changes
768
+
769
+ - Updated dependencies [2a9c144]
770
+ - ai@7.0.0-beta.99
771
+
772
+ ## 1.0.0-beta.12
773
+
774
+ ### Patch Changes
775
+
776
+ - ai@7.0.0-beta.98
777
+
778
+ ## 1.0.0-beta.11
779
+
780
+ ### Patch Changes
781
+
782
+ - Updated dependencies [208d045]
783
+ - ai@7.0.0-beta.97
784
+
3
785
  ## 1.0.0-beta.10
4
786
 
5
787
  ### Patch Changes