Skip to content

build(deps): bump github.com/firebase/genkit/go from 1.11.0 to 1.12.0 in /cli - #107

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/cli/github.com/firebase/genkit/go-1.12.0
Open

build(deps): bump github.com/firebase/genkit/go from 1.11.0 to 1.12.0 in /cli#107
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/cli/github.com/firebase/genkit/go-1.12.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 25, 2026

Copy link
Copy Markdown
Contributor

Bumps github.com/firebase/genkit/go from 1.11.0 to 1.12.0.

Release notes

Sourced from github.com/firebase/genkit/go's releases.

Genkit JS 1.12.0

What's Changed

New Contributors

Full Changelog: https://github.com/firebase/genkit/compare/genkit@1.11.1...genkit@1.12.0

Genkit Go v1.12.0

xAI, DeepSeek, DashScope, Kimi, Z.ai, and OpenRouter join the OpenAI-compatible family, all of it rebuilt on typed per-provider configs that the framework validates before a request is billed. Failures now carry a status from the line that raised them through the retry middleware to the HTTP response, and provider SDK errors arrive already classified. Logs attach to the span that produced them. Prompt content functions are typed against the prompt's own input. Options that used to reject a repeat now merge.

go get github.com/firebase/genkit/go@v1.12.0

Six providers join the OpenAI-compatible core

Genkit Go ships plugins for xAI, DeepSeek, DashScope (Qwen), Kimi, Z.ai (GLM), and OpenRouter. They sit beside openai and the OpenAI-compatible anthropic plugin on a rebuilt compat_oai core.

Each of the six declares a ChatConfig covering exactly the fields its provider documents: Kimi's K-series takes no temperature, Z.ai caps it at 1, DeepSeek carries a user_id that partitions its context cache. The plugin advertises the JSON schema inferred from that struct and the framework enforces it at the action boundary, so an out-of-range value fails before the request is billed, and the Dev UI renders the same schema as a form.

g := genkit.Init(ctx, genkit.WithPlugins(&deepseek.DeepSeek{})) // DEEPSEEK_API_KEY
model := deepseek.ModelRef("deepseek-v4-pro", &deepseek.ChatConfig{
ReasoningEffort: deepseek.ReasoningEffortMax,
})

g := genkit.Init(ctx, genkit.WithPlugins(&kimi.Kimi{})) // KIMI_API_KEY
model := kimi.ModelRef("kimi-k3", &kimi.ChatConfig{
Thinking: &kimi.ThinkingConfig{Type: kimi.ThinkingTypeEnabled},
})

g := genkit.Init(ctx, genkit.WithPlugins(&xai.XAI{})) // XAI_API_KEY

model := xai.ModelRef("grok-4.6", &xai.ChatConfig{
	ReasoningEffort: xai.ReasoningEffortXHigh,
})
</tr></table> 

... (truncated)

Commits
  • 889d0f4 fix(go/ai): stream only complete objects from the jsonl formatter (#6070)
  • df2bec9 feat(js): enable OTel logs feature (remove GENKIT_OTEL_ENABLE_LOGS flag) (#6069)
  • fccf4cd feat(go/plugins/compat_oai/openrouter): add an OpenRouter plugin (#6079)
  • 0a8bd21 chore: revise pull request template for better guidance
  • 17c3cb0 docs(go/samples): consolidate the samples into a basic-* set that documents i...
  • ccfe109 feat(go): stream logs to the Dev UI, overhaul logging, classify provider erro...
  • 5abc834 feat(py): FirestoreSessionStore for google-cloud plugin (#5757)
  • 893a322 refactor(py): SessionStore protocol, status stream, and invariant checks (#6028)
  • 2c786e6 fix(js/ai): Add span metadata for render spans (#6025)
  • 9a1100c feat(go/plugins/compat_oai/xai): add an xAI plugin (#6036)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [github.com/firebase/genkit/go](https://github.com/firebase/genkit) from 1.11.0 to 1.12.0.
- [Release notes](https://github.com/firebase/genkit/releases)
- [Commits](genkit-ai/genkit@go/v1.11.0...go/v1.12.0)

---
updated-dependencies:
- dependency-name: github.com/firebase/genkit/go
  dependency-version: 1.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Aug 25, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants