Skip to content

chore(deps-dev): bump the development-dependencies group across 1 directory with 3 updates - #71

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/development-dependencies-51742a0e9b
Open

chore(deps-dev): bump the development-dependencies group across 1 directory with 3 updates#71
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/development-dependencies-51742a0e9b

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Mar 9, 2026

Copy link
Copy Markdown
Contributor

Bumps the development-dependencies group with 3 updates in the / directory: @types/node, genkit-cli and postcss.

Updates @types/node from 25.0.9 to 25.9.5

Commits

Updates genkit-cli from 1.27.0 to 1.41.0

Release notes

Sourced from genkit-cli's releases.

Genkit JS and CLI 1.41.0

JS SDK

  • New GPT-5.x models in the OpenAI-compatible plugin. Added gpt-5.2, gpt-5.4, gpt-5.4-mini, gpt-5.4-nano, and gpt-5.5 to compat-oai, so you can reach the latest OpenAI models without waiting on a plugin bump. (#5389)

  • Per-request Anthropic API keys. The Anthropic plugin now resolves the API key lazily at request time instead of only at init, so you can override the key per call. Handy for multi-tenant setups and key rotation. (#4298)

  • Clearer retry and fallback logs. The retry and fallback model middleware now emit structured warnings explaining what happened: which attempt, how long the backoff is, why a retry was skipped, and which model it's falling back to. AbortError and ToolInterruptError are now correctly treated as non-retryable. (#5449)

  • Fixed audio transcription file extensions. compat-oai speech-to-text now derives the right file extension from the content type (.mp3, .wav, .webm, and friends) instead of a generic name, which fixes transcription failures with providers that key off the extension. (#3367)

  • More reliable agent resume. validateResumeAgainstHistory now searches history newest-first, fixing an edge case when resuming interrupted conversations. (#5832)

  • Options for checkOperation and cancelOperation. You can now pass options (including per-request client config) when polling or cancelling long-running operations. Auth and secrets are also now scrubbed from context logging. (#5972)

  • Security hardening for background operations (heads up: minor breaking change). The google-genai plugin no longer persists clientOptions in operation metadata, which previously risked leaking API keys if you returned a full operation object to a client. If you use per-request overrides (like a custom API key) with long-running models, you now need to pass those same overrides to each checkOperation/cancelOperation call. (#5992)

  • ROUGE evaluator fix on Vertex AI. Corrected the type used by the ROUGE score evaluator and cleaned up duplicated evaluator types. (#3592)

CLI

  • Structured output now survives "Export to .prompt". When you export from the Dev UI model runner, the output schema is included in the front matter (written as Picoschema) instead of being dropped, so exported prompts keep their structured output config. (#5506)

  • Cleaner trace:get output. genkit trace:get <id> gets a readable tree view, and --format json gives you clean JSON that's easy to pipe into other tools. (#5848)

  • More reliable startup in ephemeral runtimes. The CLI now waits for actions to finish registering before proceeding, fixing flaky behavior where actions weren't yet available. (#5949)

Dev UI

This release makes the runners smarter about structured output, sharpens live streaming in the Agent Runner, and clears up a bunch of rough edges in traces, tools, and datasets.

Highlights

  • See and edit output config in the Model Runner. The Model Runner now has an editable Output panel. When you load a generation from a trace, you can inspect the inherited format and JSON schema, tweak them, or switch back to plain text for a freeform prompt. The schema shows up as readable JSON Schema instead of a raw Zod blob, and a reset restores the inherited config.
  • Structured JSON output, rendered properly. Model Runner output that comes back as JSON is now rendered as clean, formatted JSON instead of a wall of text.
  • Output conformance in the Prompt Runner. The Prompt Runner now supports output conformance, so prompts that define a structured schema behave consistently with the rest of the tooling.
  • Live streaming patches in the Agent Runner. Agent Runner now supports customPatch streaming, so incremental updates from your agent show up in the UI as they arrive.

Improvements & Fixes

  • No more garbled streamed text. Fixed a decoding bug where multi-byte characters (CJK, emoji, accented letters) split across network chunks would render as . Streamed output now decodes cleanly across chunk boundaries.
  • Structured output + tools now play nicely together. Schemas are sent under the field the generate action actually reads, so structured output no longer accidentally suppresses tool calls. The tool loop runs and applies the structured result on the final turn.
  • Real-time span metadata in traces. In-progress spans now keep their initial metadata (name, path, type) instead of dropping it, and show a clean -- placeholder for duration until the span completes.
  • Agent Runner session fixes. Switching from multi-turn (bidi) to single-turn mode no longer trips strict backends (e.g. Python/Pydantic) with extra_forbidden errors, session IDs update correctly when a bidi stream ends, and context is preserved when starting a new chat or loading a trace.
  • Manual tool responses are now sent as proper messages, and tool action cards render correctly when resuming or adding a model message with tool requests.
  • Interruptions callout added to the Tools page so it's clearer what's happening when a tool interrupts.
  • Dataset sample editor restored to its cleaner previous style, plus tidier JSON editor spacing.

New Contributors

... (truncated)

Commits
  • 0b47313 chore: CLI version bump
  • cd26b57 feat(genkit-tools): Update trace:get to support clean outputs (#5848)
  • cd69a77 fix(cli): wait for action registration in ephemeral runtimes (#5949)
  • b318f2b fix(tools): allow analytics for help command (#5822)
  • 1cbd076 feat(cli): add runtime dimension to metrics (#5781)
  • dbb4f34 chore: CLI version bump
  • c85153e chore: CLI version bump
  • 66bfbbc fix(genkit-tools): prevent path traversal and bind to localhost (#5751)
  • 54c60aa chore: CLI version bump
  • e4d9d5d chore: CLI version bump
  • Additional commits viewable in compare view

Updates postcss from 8.5.18 to 8.5.26

Release notes

Sourced from postcss's releases.

8.5.26

  • Fixed list.split() regression (by @​lazerg).
  • Track symlinks in path protection in source map loading (by @​drengir1).

8.5.25

  • Fixed 8.5.17 visitor regression.
  • Fixed list.split() for non-string values (by @​amir-rezaei).

8.5.24

  • Preserve the BOM after the processing (by @​hdimer).

8.5.23

  • Do not load source map without opts.from for security reasons.

8.5.22

8.5.21

8.5.20

8.5.19

  • Fixed cleaning before for new nodes inserted to Root (by @​MahinAnowar).
Changelog

Sourced from postcss's changelog.

8.5.26

  • Fixed list.split() regression (by @​lazerg).
  • Track symlinks in path protection in source map loading (by @​drengir1).

8.5.25

  • Fixed 8.5.17 visitor regression.
  • Fixed list.split() for non-string values (by @​amir-rezaei).

8.5.24

  • Preserve the BOM after the processing (by @​hdimer).

8.5.23

  • Do not load source map without opts.from for security reasons.

8.5.22

8.5.21

8.5.20

8.5.19

  • Fixed cleaning before for new nodes inserted to Root (by @​MahinAnowar).
Commits

@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Mar 9, 2026
@dependabot @github

dependabot Bot commented on behalf of github Mar 9, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: automated. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@vercel

vercel Bot commented Mar 9, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
pictionary Ready Ready Preview Aug 17, 2026 9:12am

@github-actions

github-actions Bot commented Mar 9, 2026

Copy link
Copy Markdown

ℹ️ This is a minor version update and requires manual review before merging.

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/development-dependencies-51742a0e9b branch from 7d718f0 to 2b2499b Compare March 17, 2026 20:46
@github-actions

Copy link
Copy Markdown

ℹ️ This is a minor version update and requires manual review before merging.

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/development-dependencies-51742a0e9b branch from 2b2499b to f0ebc18 Compare March 30, 2026 09:37
@github-actions

Copy link
Copy Markdown

ℹ️ This is a minor version update and requires manual review before merging.

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/development-dependencies-51742a0e9b branch from f0ebc18 to eb36f0c Compare April 13, 2026 09:44
@github-actions

Copy link
Copy Markdown

ℹ️ This is a minor version update and requires manual review before merging.

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/development-dependencies-51742a0e9b branch from eb36f0c to 53ea755 Compare April 20, 2026 10:14
@github-actions

Copy link
Copy Markdown

ℹ️ This is a minor version update and requires manual review before merging.

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/development-dependencies-51742a0e9b branch from 53ea755 to 0d91516 Compare May 11, 2026 12:45
@github-actions

Copy link
Copy Markdown

ℹ️ This is a minor version update and requires manual review before merging.

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/development-dependencies-51742a0e9b branch from 0d91516 to 91695a5 Compare May 18, 2026 16:38
@github-actions

Copy link
Copy Markdown

ℹ️ This is a minor version update and requires manual review before merging.

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/development-dependencies-51742a0e9b branch from 91695a5 to 8af9f85 Compare May 25, 2026 13:45
@github-actions

Copy link
Copy Markdown

ℹ️ This is a minor version update and requires manual review before merging.

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/development-dependencies-51742a0e9b branch from 8af9f85 to 4c9e261 Compare June 2, 2026 03:30
@github-actions

github-actions Bot commented Jun 2, 2026

Copy link
Copy Markdown

ℹ️ This is a minor version update and requires manual review before merging.

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/development-dependencies-51742a0e9b branch from 4c9e261 to 081a5d7 Compare June 15, 2026 09:14
@github-actions

Copy link
Copy Markdown

ℹ️ This is a minor version update and requires manual review before merging.

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/development-dependencies-51742a0e9b branch from 081a5d7 to c882558 Compare June 22, 2026 09:12
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/development-dependencies-51742a0e9b branch from c882558 to 9cca9c1 Compare July 6, 2026 09:10
@github-actions

github-actions Bot commented Jul 6, 2026

Copy link
Copy Markdown

ℹ️ This is a minor version update and requires manual review before merging.

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/development-dependencies-51742a0e9b branch from 9cca9c1 to db79e4c Compare July 20, 2026 09:12
@github-actions

Copy link
Copy Markdown

ℹ️ This is a minor version update and requires manual review before merging.

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/development-dependencies-51742a0e9b branch from db79e4c to 2dbf93f Compare July 27, 2026 09:12
@github-actions

Copy link
Copy Markdown

ℹ️ This is a minor version update and requires manual review before merging.

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/development-dependencies-51742a0e9b branch from 2dbf93f to 4bd60f1 Compare August 10, 2026 09:14
@github-actions

Copy link
Copy Markdown

ℹ️ This is a minor version update and requires manual review before merging.

…ectory with 3 updates

Bumps the development-dependencies group with 3 updates in the / directory: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [genkit-cli](https://github.com/genkit-ai/genkit/tree/HEAD/genkit-tools/cli) and [postcss](https://github.com/postcss/postcss).


Updates `@types/node` from 25.0.9 to 25.9.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `genkit-cli` from 1.27.0 to 1.41.0
- [Release notes](https://github.com/genkit-ai/genkit/releases)
- [Commits](https://github.com/genkit-ai/genkit/commits/genkit-cli@1.41.0/genkit-tools/cli)

Updates `postcss` from 8.5.18 to 8.5.26
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.5.18...8.5.26)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 25.3.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: genkit-cli
  dependency-version: 1.29.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: postcss
  dependency-version: 8.5.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/development-dependencies-51742a0e9b branch from 4bd60f1 to 1cbb0c2 Compare August 17, 2026 09:12
@github-actions

Copy link
Copy Markdown

ℹ️ This is a minor version update and requires manual review before merging.

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants