ci: Version Packages#873
Merged
Merged
Conversation
6db2618 to
fe11d38
Compare
fe11d38 to
50517e4
Compare
AlemTuzlak
approved these changes
Jul 1, 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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@tanstack/ai-gemini@0.19.0
Minor Changes
#875
f0c12ba- Drop retired Gemini media models and add Veo 3.1 Lite.The following models return
404 NOT_FOUNDfrom the Gemini Developer API and have been removed from the adapter's model lists and type maps:imagen-3.0-generate-002(superseded by the Imagen 4 family)veo-2.0-generate-001veo-3.0-generate-001veo-3.0-fast-generate-001Added
veo-3.1-lite-generate-preview(Veo 3.1 Lite) — the lowest-cost Veo 3.1 tier ($0.05/sec, 720p, video + audio), with the same4 | 6 | 8second durations as the rest of the Veo 3.1 family.If you were referencing one of the removed model ids, switch to a current model (e.g.
imagen-4.0-generate-001,veo-3.1-generate-preview, orveo-3.1-lite-generate-preview).#874
84d1225- Add proper support for Nano Banana 2 Lite (gemini-3.1-flash-lite-image) as a Gemini-native image model. The automated model sync had landed this model mis-classified as a text-only chat model (output: ['text'], inGEMINI_MODELS); it's now corrected and wired into the image surface — routed through thegenerateContentAPI withoutput: ['text', 'image'], template-literal sizes (aspectRatio_resolution, e.g."1:1_2K"), and image-conditioned prompts, matching the other native image models. Built for ultra-low-latency, low-cost image generation and editing.Also fixes the OpenRouter model sync (
scripts/sync-provider-models.ts) so native image models that output both text and image are skipped for manual curation instead of being inserted as chat models.Patch Changes
00505fe- Update model metadata from OpenRouter API@tanstack/ai-anthropic@0.15.13
Patch Changes
00505fe- Update model metadata from OpenRouter API@tanstack/ai-react@0.16.2
Patch Changes
00505fe- Restructure the@tanstack/ai-react/mcp-appsentry so its source is resolvable by the docs snippet type-checker: the JSX implementation moves tomcp-app-resource.tsxandmcp-apps.tsre-exports it. Public exports (MCPAppResource,MCPAppResourceProps) and the subpath are unchanged.