-
Notifications
You must be signed in to change notification settings - Fork 125
chore(ask_sb): Bump AI SDK libs #444
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
WalkthroughThe changes update the Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Possibly related PRs
Poem
Note 🔌 MCP (Model Context Protocol) integration is now available in Early Access!Pro users can now connect to remote MCP servers under the Integrations page to get reviews and chat conversations that understand additional development context. ✨ Finishing Touches🧪 Generate unit tests
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
This comment has been minimized.
This comment has been minimized.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (1)
CHANGELOG.md (1)
16-18
: Consider listing the exact package versions in the changelogReaders looking for upgrade guidance will appreciate explicit “from → to” details (e.g.
@ai-sdk/openai 2.0.3 → 2.0.5
). It also helps trace regressions if a future bump breaks something.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (1)
yarn.lock
is excluded by!**/yarn.lock
,!**/*.lock
📒 Files selected for processing (2)
CHANGELOG.md
(1 hunks)packages/web/package.json
(3 hunks)
🧰 Additional context used
📓 Path-based instructions (1)
**/*
📄 CodeRabbit Inference Engine (.cursor/rules/style.mdc)
Filenames should always be camelCase. Exception: if there are filenames in the same directory with a format other than camelCase, use that format to keep things consistent.
Files:
CHANGELOG.md
packages/web/package.json
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
- GitHub Check: build
🔇 Additional comments (3)
packages/web/package.json (3)
15-25
: Verify runtime compatibility after switching to caret ranges on all@ai-sdk/*
depsMoving from pinned patch versions to
^
ranges will allow npm to pull in any newer minor/patch release. The AI-SDK ecosystem tends to introduce small breaking changes between minors.
Make sure you:
- Commit the updated lock-file in this PR so CI remains reproducible.
- Re-run the full e2e test-suite against the new versions (especially the React bindings).
- Watch for peer-dependency warnings – several of these packages depend on the exact same
ai
core version.If you prefer deterministic builds in production, consider tilting back to
~
or fully-pinned versions.
57-57
: Confirm breaking-change surface between@openrouter/ai-sdk-provider
beta and^1.1.0
Jumping from
1.0.0-beta.5
to a stable1.1.x
may drop/rename experimental flags introduced in beta (e.g.routerMode
). Scan release notes and adjust any provider-specific config before shipping.
112-112
:ai
core bumped to^5.0.8
– ensure peer versions stay in lockstepSeveral
@ai-sdk/*
packages declare a peer onai@^5
. A stray major mismatch will explode at runtime with “invalid factory” errors. Double-checkpackage-lock.json
ends up with a single copy ofai@5.0.8+
.
Summary by CodeRabbit