Bump tested SDKs to genai v1.57.0 / openai-go v3.36.0#8
Merged
Conversation
Both SDKs released six minor versions since launch (2026-03-25); none of the changes touch the chat-completions / GenerateContent wire shapes the proxy implements, but pinning to current keeps the README "Tested SDKs" claim accurate. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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
google.golang.org/genaiv1.51.0 → v1.57.0 andgithub.com/openai/openai-go/v3v3.30.0 → v3.36.0 (both six minor versions out since launch).README.mdto match.The SDKs are only imported from
integration/sdk_test.go; the proxy itself uses hand-rolled protocol types ininternal/protocol/{gemini,openai}and never imports either SDK.Why this is safe
json.NewDecoder(...).Decode(...)(noDisallowUnknownFields) atinternal/server/gemini.go:19, so any new request fields from newer SDKs are silently dropped.internal/server/openai.go:12, so the openai-go version is irrelevant to the proxy's wire shape.GenerateContentwasgenaiv1.52.0 (service_tier,model_status,part_metadata,rendered_parts) — all optional, response-side additions are non-breaking when absent.Test plan
make lintcleanmake test-unitgreengo test ./integrationgreen (non-docker SDK contract tests)make test-integrationagainst the live docker image🤖 Generated with Claude Code