Skip to content

chore(deps): bump the production-deps group across 1 directory with 7 updates - #80

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/production-deps-f26e788bef
Open

chore(deps): bump the production-deps group across 1 directory with 7 updates#80
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/production-deps-f26e788bef

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 28, 2026

Copy link
Copy Markdown
Contributor

Bumps the production-deps group with 7 updates in the / directory:

Package From To
yocto-spinner 1.2.0 1.2.2
execa 9.6.1 10.0.0
@anthropic-ai/sdk 0.104.2 0.115.0
@anthropic-ai/vertex-sdk 0.17.1 0.19.0
@google/genai 2.8.0 2.13.0
chalk 5.6.2 6.0.0
openai 6.44.0 7.0.0

Updates yocto-spinner from 1.2.0 to 1.2.2

Release notes

Sourced from yocto-spinner's releases.

v1.2.2

  • Fix infinite loop when the stream is a TTY with columns of 0 (#19) cd70723

sindresorhus/yocto-spinner@v1.2.1...v1.2.2

v1.2.1

  • Fix erasing unrelated lines when text contains a hyperlink 1d33219

sindresorhus/yocto-spinner@v1.2.0...v1.2.1

Commits

Updates execa from 9.6.1 to 10.0.0

Release notes

Sourced from execa's releases.

v10.0.0

Breaking

  • Require Node.js 22. (#1243) 04b4454

  • The subprocess is now a normal promise, instead of a ChildProcess instance augmented with promise methods. All the methods and properties documented by Execa are unchanged. Node.js-specific ChildProcess APIs (such as .on(), .send(), .ref() and .unref()) must now be accessed through the new subprocess.nodeChildProcess property. (#1255) ade74bf

const subprocess = execa('node', ['file.js']);
- subprocess.on('spawn', onSpawn);
+ subprocess.nodeChildProcess.on('spawn', onSpawn);
- await execaCommand('npm run build');
+ await execa`npm run build`;

await execaCommand(commandString);


await execa${parseCommandString(commandString)};
  • Removed the old undocumented stdio: [..., 'ipc'] syntax. Use the ipc: true option instead. (#1245) dcf611c
- await execa('node', ['file.js'], {stdio: ['pipe', 'pipe', 'pipe', 'ipc']});
+ await execa('node', ['file.js'], {ipc: true});
  • When the input or inputFile option is combined with an inherited stdin (for example stdio: 'inherit'), the explicit input is now used, instead of being ignored. To combine multiple inputs, pass an array like stdin: ['inherit', {string: 'input'}]. (#1232) 3ed0544

Improvements

await execa('npm', ['run', 'build'], {killDescendants: true, timeout: 5000});
await execa`npm run build`
	.readableStream()
	.pipeTo(writableWebStream);

... (truncated)

Commits
  • e389369 10.0.0
  • 3d9d820 Improve taskkill usage (#1258)
  • 5944b2d Update dev dependencies (#1257)
  • 84fa0ec Add killDescendants option to also terminate descendant processes (#1256)
  • ade74bf Add nodeChildProcess to subprocess promises and make the subprocess a norma...
  • 29d9cfc Add .readableStream(), .writableStream() and .transformStream() methods...
  • 522654a Fix flaky test
  • 9a7a162 Use which-command instead of which (#1253)
  • c31c94c Expose the destination subprocess methods on .pipe() (#1252)
  • 4cafc3f Move away from cross-spawn (#1251)
  • Additional commits viewable in compare view

Updates @anthropic-ai/sdk from 0.104.2 to 0.115.0

Release notes

Sourced from @​anthropic-ai/sdk's releases.

sdk: v0.115.0

0.115.0 (2026-07-24)

Full Changelog: sdk-v0.114.0...sdk-v0.115.0

Features

  • api: add claude-opus-5 model (cdd3606)
  • api: add tool addition/removal blocks and tool_change events (cdd3606)
  • api: expand client-side fallback credit token types and add server-side fallbacks default option (cdd3606)

Bug Fixes

  • client: release abort listeners when requests settle (#1129) (b85e902)

sdk: v0.114.0

0.114.0 (2026-07-23)

Full Changelog: sdk-v0.113.0...sdk-v0.114.0

Features

  • api: add new stop reason 'model_context_window_exceeded' (1ec71c1)

sdk: v0.113.0

0.113.0 (2026-07-22)

Full Changelog: sdk-v0.112.5...sdk-v0.113.0

Features

  • api: add support for Managed Agents model effort, initial session events, and threads delta streaming (83fef1e)

sdk: v0.112.5

0.112.5 (2026-07-21)

Full Changelog: sdk-v0.112.4...sdk-v0.112.5

Chores

  • api: add support for new refusal category (479efe8)
  • internal: codegen related update (830fb74)

sdk: v0.112.4

0.112.4 (2026-07-20)

Full Changelog: sdk-v0.112.3...sdk-v0.112.4

Bug Fixes

... (truncated)

Changelog

Sourced from @​anthropic-ai/sdk's changelog.

0.115.0 (2026-07-24)

Full Changelog: sdk-v0.114.0...sdk-v0.115.0

Features

  • api: add claude-opus-5 model (cdd3606)
  • api: add tool addition/removal blocks and tool_change events (cdd3606)
  • api: expand client-side fallback credit token types and add server-side fallbacks default option (cdd3606)

Bug Fixes

  • client: release abort listeners when requests settle (#1129) (b85e902)

0.114.0 (2026-07-23)

Full Changelog: sdk-v0.113.0...sdk-v0.114.0

Features

  • api: add new stop reason 'model_context_window_exceeded' (1ec71c1)

0.113.0 (2026-07-22)

Full Changelog: sdk-v0.112.5...sdk-v0.113.0

Features

  • api: add support for Managed Agents model effort, initial session events, and threads delta streaming (83fef1e)

0.112.5 (2026-07-21)

Full Changelog: sdk-v0.112.4...sdk-v0.112.5

Chores

  • api: add support for new refusal category (479efe8)
  • internal: codegen related update (830fb74)

0.112.4 (2026-07-20)

Full Changelog: sdk-v0.112.3...sdk-v0.112.4

Bug Fixes

  • aws: preserve AWS options and auth mode across withOptions() (#214) (3f7665c)

Chores

... (truncated)

Commits
  • 3b45cd3 chore: release main
  • f298e9a feat(api): add claude-opus-5 model
  • ce8e54b fix(client): release abort listeners when requests settle (#1129)
  • 2d314b4 chore: release main
  • 3d051df feat(api): add new stop reason 'model_context_window_exceeded'
  • 4414d47 chore: release main
  • 1ec5566 feat(api): add support for Managed Agents model effort, initial session event...
  • c58a55b chore: release main
  • 2fb7da5 chore(api): add support for new refusal category
  • d6ffc3c chore(internal): codegen related update
  • Additional commits viewable in compare view

Updates @anthropic-ai/vertex-sdk from 0.17.1 to 0.19.0

Release notes

Sourced from @​anthropic-ai/vertex-sdk's releases.

vertex-sdk: v0.19.0

0.19.0 (2026-06-30)

Full Changelog: vertex-sdk-v0.18.0...vertex-sdk-v0.19.0

Features

  • vertex: bump google-auth-library to ^10.2.0 (SDK-91) (#30) (eb2d25c)

vertex-sdk: v0.18.0

0.18.0 (2026-06-18)

Full Changelog: vertex-sdk-v0.17.1...vertex-sdk-v0.18.0

Features

  • stream: lazily parse partial tool json input (#99) (e55ceee)

Chores

  • tests: stop using deprecated models (#98) (65ae1af)
Changelog

Sourced from @​anthropic-ai/vertex-sdk's changelog.

0.19.0 (2024-03-19)

Full Changelog: sdk-v0.18.0...sdk-v0.19.0

Features

  • vertex: add support for overriding google auth (#338) (28d98c4)
  • vertex: api is no longer in private beta (#344) (892127c)

Bug Fixes

  • internal: make toFile use input file's options (#343) (2dc2174)

Chores

  • internal: update generated pragma comment (#341) (fd60f63)

Documentation

0.18.0 (2024-03-13)

Full Changelog: sdk-v0.17.2...sdk-v0.18.0

Features

Documentation

0.17.2 (2024-03-12)

Full Changelog: sdk-v0.17.1...sdk-v0.17.2

Chores

  • internal: add explicit type annotation to decoder (#324) (7e172c7)
Commits

Updates @google/genai from 2.8.0 to 2.13.0

Release notes

Sourced from @​google/genai's releases.

v2.13.0

2.13.0 (2026-07-21)

Features

  • A new field custom_vocabulary is added to Live API(f32ec0a)
  • add model selector (b5d70da)
  • interaction-api: add queued status to interaction proto (1b7dd39)
  • make ASR fields public in v1main and Interactions (

… updates

Bumps the production-deps group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [yocto-spinner](https://github.com/sindresorhus/yocto-spinner) | `1.2.0` | `1.2.2` |
| [execa](https://github.com/sindresorhus/execa) | `9.6.1` | `10.0.0` |
| [@anthropic-ai/sdk](https://github.com/anthropics/anthropic-sdk-typescript) | `0.104.2` | `0.115.0` |
| [@anthropic-ai/vertex-sdk](https://github.com/anthropics/anthropic-sdk-typescript) | `0.17.1` | `0.19.0` |
| [@google/genai](https://github.com/googleapis/js-genai) | `2.8.0` | `2.13.0` |
| [chalk](https://github.com/chalk/chalk) | `5.6.2` | `6.0.0` |
| [openai](https://github.com/openai/openai-node) | `6.44.0` | `7.0.0` |



Updates `yocto-spinner` from 1.2.0 to 1.2.2
- [Release notes](https://github.com/sindresorhus/yocto-spinner/releases)
- [Commits](sindresorhus/yocto-spinner@v1.2.0...v1.2.2)

Updates `execa` from 9.6.1 to 10.0.0
- [Release notes](https://github.com/sindresorhus/execa/releases)
- [Commits](sindresorhus/execa@v9.6.1...v10.0.0)

Updates `@anthropic-ai/sdk` from 0.104.2 to 0.115.0
- [Release notes](https://github.com/anthropics/anthropic-sdk-typescript/releases)
- [Changelog](https://github.com/anthropics/anthropic-sdk-typescript/blob/main/CHANGELOG.md)
- [Commits](anthropics/anthropic-sdk-typescript@sdk-v0.104.2...sdk-v0.115.0)

Updates `@anthropic-ai/vertex-sdk` from 0.17.1 to 0.19.0
- [Release notes](https://github.com/anthropics/anthropic-sdk-typescript/releases)
- [Changelog](https://github.com/anthropics/anthropic-sdk-typescript/blob/main/CHANGELOG.md)
- [Commits](anthropics/anthropic-sdk-typescript@sdk-v0.17.1...sdk-v0.19.0)

Updates `@google/genai` from 2.8.0 to 2.13.0
- [Release notes](https://github.com/googleapis/js-genai/releases)
- [Changelog](https://github.com/googleapis/js-genai/blob/main/CHANGELOG.md)
- [Commits](googleapis/js-genai@v2.8.0...v2.13.0)

Updates `chalk` from 5.6.2 to 6.0.0
- [Release notes](https://github.com/chalk/chalk/releases)
- [Commits](chalk/chalk@v5.6.2...v6.0.0)

Updates `openai` from 6.44.0 to 7.0.0
- [Release notes](https://github.com/openai/openai-node/releases)
- [Changelog](https://github.com/openai/openai-node/blob/main/CHANGELOG.md)
- [Commits](openai/openai-node@v6.44.0...v7.0.0)

---
updated-dependencies:
- dependency-name: yocto-spinner
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-deps
- dependency-name: execa
  dependency-version: 10.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-deps
- dependency-name: "@anthropic-ai/sdk"
  dependency-version: 0.115.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: "@anthropic-ai/vertex-sdk"
  dependency-version: 0.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: "@google/genai"
  dependency-version: 2.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-deps
- dependency-name: chalk
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-deps
- dependency-name: openai
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 28, 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 javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants