chore(sdkx): bump pinned sdk version to v0.2.6#53
Merged
Conversation
Brings sdkx up to the sdk module surface introduced by PR #52 (merged as sdk/v0.2.6, auto-tagged on main): * ModelSpec / ModelDeprecation / RegisterParallelToolExtraKey are needed by the catalog refresh and the parallel-tool Extra bridging in sdkx/llm/{openai,anthropic,bytedance,...}. * sdk/tool middleware + sdk/script resource caps are inert from sdkx's perspective but ship in the same patch. PR #52 was merged with [skip-tag:sdkx] so the auto-tag workflow correctly bumped sdk only and left sdkx untouched. This PR closes that loop manually so downstream consumers building sdkx outside the workspace (GOWORK=off) pick up the matching sdk APIs. Verified: GOWORK=off go vet ./... and GOWORK=off go test ./... both pass from sdkx/. Made-with: Cursor
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.
Summary
Bumps
sdkx's pinnedsdkdependency fromv0.2.4→v0.2.6so callers buildingsdkxoutside the go.work workspace (GOWORK=off) pick up the APIs already used bysdkx.The matching SDK changes shipped via #52 (merged as
sdk/v0.2.6):ModelSpec/ModelDeprecation/RegisterParallelToolExtraKey— required by the catalog refresh and the parallel-toolExtrabridging insdkx/llm/{openai,anthropic,bytedance,...}.sdk/toolmiddleware +sdk/scriptresource caps ship in the same patch (inert fromsdkx's perspective).Why this is a separate PR
PR #52 set
[skip-tag:sdkx]in its title so the auto-tag workflow correctly bumpedsdkonly. This PR closes that loop manually — once merged, the auto-tag workflow will tagsdkx/v0.2.4(next patch).Test plan
cd sdkx && GOWORK=off go vet ./...cd sdkx && GOWORK=off go test ./... -count=1(all green)Test sdkx (Go 1.25 / 1.26)jobs passMade with Cursor