@@ -8,29 +8,29 @@ description: Learn how to upgrade AI SDK 5.x to 6.0.
88## Recommended Migration Process
99
10101 . Backup your project. If you use a versioning control system, make sure all previous versions are committed.
11- 1 . Upgrade to AI SDK 6.0 Beta .
11+ 1 . Upgrade to AI SDK 6.0.
12121 . Follow the breaking changes guide below.
13131 . Verify your project is working as expected.
14141 . Commit your changes.
1515
16- ## AI SDK 6.0 Beta Package Versions
16+ ## AI SDK 6.0 Package Versions
1717
18- You need to update the following packages to the beta versions in your ` package.json ` file(s):
18+ You need to update the following packages to the latest versions in your ` package.json ` file(s):
1919
20- - ` ai ` package: ` 6.0.0-beta ` (or use the ` @beta ` dist-tag)
21- - ` @ai-sdk/provider ` package: ` 3.0.0-beta ` (or use the ` @beta ` dist-tag)
22- - ` @ai-sdk/provider-utils ` package: ` 4.0.0-beta ` (or use the ` @beta ` dist-tag)
23- - ` @ai-sdk/* ` packages: ` 3.0.0-beta ` (or use the ` @beta ` dist-tag for other ` @ai-sdk ` packages)
20+ - ` ai ` package: ` ^ 6.0.0`
21+ - ` @ai-sdk/provider ` package: ` ^ 3.0.0`
22+ - ` @ai-sdk/provider-utils ` package: ` ^ 4.0.0`
23+ - ` @ai-sdk/* ` packages: ` ^ 3.0.0`
2424
2525An example upgrade command would be:
2626
2727```
28- pnpm install ai@beta @ai-sdk/react@beta @ai-sdk/openai@beta
28+ pnpm install ai@latest @ai-sdk/react@latest @ai-sdk/openai@latest
2929```
3030
3131## Codemods
3232
33- The AI SDK ** will ** provide Codemod transformations to help upgrade your codebase when a
33+ The AI SDK provides Codemod transformations to help upgrade your codebase when a
3434feature is deprecated, removed, or otherwise changed.
3535
3636Codemods are transformations that run on your codebase automatically. They
0 commit comments