chore(deps): consolidate dependabot updates#62
Merged
Conversation
Consolidates open Dependabot PRs #53, #55, #59 into a single change. - @cursor/sdk: ^1.0.20 -> ^1.0.23 (#55, latest) - @opencode-ai/plugin: ^1.17.9 -> ^1.17.14 (#53, latest) - @opencode-ai/sdk: ^1.17.9 -> ^1.17.14 (#53, latest) - @ai-sdk/provider: ^3.0.10 -> ^3.0.13 (latest v3) Skips #59's @ai-sdk/provider v4 major bump: the opencode host ecosystem (@opencode-ai/plugin) still runs @ai-sdk/provider v3 at runtime, and this package declares it as a ^3.0.0 peerDependency. Stays on latest v3 to match. Typecheck clean, 300/300 tests pass.
This was referenced Jul 7, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Consolidates open Dependabot PRs #53, #55, #59.
Changes
@cursor/sdk@opencode-ai/plugin@opencode-ai/sdk@ai-sdk/providerDeferred:
@ai-sdk/providerv4 (part of #59)PR #59 proposed bumping
@ai-sdk/providerto^4.0.2(major). Verified this locally: typecheck and all 300 tests pass under v4 too, since it retains theLanguageModelV3*/ProviderV3types this codebase uses.However, the opencode host ecosystem (
@opencode-ai/plugin@1.17.14) still depends on@ai-sdk/provider@3.0.8at runtime, and this package declares@ai-sdk/provideras a^3.0.0peerDependency for the host to satisfy. Bumping the devDependency to v4 while the peerDep stays^3.0.0(and the real ecosystem runs v3) would decouple what's tested from what's shipped, for no functional gain right now. Staying on latest v3 (^3.0.13) keeps dev/test aligned with the runtime host.Revisit once the opencode host ecosystem itself moves to
@ai-sdk/providerv4.Verification
npm run typecheck: cleannpm test: 300/300 passed (26 files)Closes #53, #55. Supersedes #59 (partial — see note above).