arol-ai 0.1.9 → 0.1.10
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/package.json +1 -1
- package/src/data/deprecations.json +43 -0
package/package.json
CHANGED
|
@@ -474,5 +474,48 @@
|
|
|
474
474
|
"migration_url": "https://platform.openai.com/docs/changelog",
|
|
475
475
|
"summary": "The Realtime API beta was removed from the API on May 12, 2026. Migrate from the client.beta.realtime interface to the released (GA) Realtime API.",
|
|
476
476
|
"source": "https://platform.openai.com/docs/changelog"
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
"id": "vercel-ai-sdk-v6-removed",
|
|
480
|
+
"vendor": "Vercel AI SDK",
|
|
481
|
+
"title": "AI SDK functions/classes removed in ai v6",
|
|
482
|
+
"severity": "medium",
|
|
483
|
+
"match": "pattern",
|
|
484
|
+
"applies_to": ["*"],
|
|
485
|
+
"status": "deprecated",
|
|
486
|
+
"detect": {
|
|
487
|
+
"sdk": ["ai"],
|
|
488
|
+
"patterns": [
|
|
489
|
+
"convertToCoreMessages",
|
|
490
|
+
"Experimental_Agent",
|
|
491
|
+
"MockLanguageModelV2",
|
|
492
|
+
"MockEmbeddingModelV2",
|
|
493
|
+
"MockImageModelV2",
|
|
494
|
+
"MockProviderV2",
|
|
495
|
+
"MockSpeechModelV2",
|
|
496
|
+
"MockTranscriptionModelV2"
|
|
497
|
+
],
|
|
498
|
+
"models": []
|
|
499
|
+
},
|
|
500
|
+
"migration_url": "https://ai-sdk.dev/docs/migration-guides/migration-guide-6-0",
|
|
501
|
+
"summary": "Removed in ai v6. convertToCoreMessages → convertToModelMessages; Experimental_Agent → ToolLoopAgent; the V2 mock classes in ai/test → their V3 versions. Code using these breaks when you upgrade to ai@6.",
|
|
502
|
+
"source": "https://ai-sdk.dev/docs/migration-guides/migration-guide-6-0"
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
"id": "vercel-ai-sdk-v6-generateobject-deprecated",
|
|
506
|
+
"vendor": "Vercel AI SDK",
|
|
507
|
+
"title": "generateObject / streamObject deprecated in ai v6",
|
|
508
|
+
"severity": "low",
|
|
509
|
+
"match": "pattern",
|
|
510
|
+
"applies_to": ["*"],
|
|
511
|
+
"status": "deprecated",
|
|
512
|
+
"detect": {
|
|
513
|
+
"sdk": ["ai"],
|
|
514
|
+
"patterns": ["generateObject", "streamObject"],
|
|
515
|
+
"models": []
|
|
516
|
+
},
|
|
517
|
+
"migration_url": "https://ai-sdk.dev/docs/migration-guides/migration-guide-6-0",
|
|
518
|
+
"summary": "Deprecated in ai v6 (still works; removal planned for a later version). Use generateText / streamText with an output setting (Output.object) instead.",
|
|
519
|
+
"source": "https://ai-sdk.dev/docs/migration-guides/migration-guide-6-0"
|
|
477
520
|
}
|
|
478
521
|
]
|