Skip to content

chore(deps): bump the production-minor group across 1 directory with 11 updates - #196

Merged
github-actions[bot] merged 1 commit into
mainfrom
dependabot/npm_and_yarn/production-minor-e2630b36ba
Jul 27, 2026
Merged

chore(deps): bump the production-minor group across 1 directory with 11 updates#196
github-actions[bot] merged 1 commit into
mainfrom
dependabot/npm_and_yarn/production-minor-e2630b36ba

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the production-minor group with 11 updates in the / directory:

Package From To
@anthropic-ai/sdk 0.95.2 0.115.0
@clack/prompts 1.2.0 1.7.0
@typescript-eslint/parser 8.58.2 8.65.0
@typescript-eslint/typescript-estree 8.58.2 8.65.0
jsonrepair 3.14.0 3.15.0
openai 6.34.0 6.49.0
ora 9.3.0 9.4.1
string-width 8.2.0 8.2.2
yaml 2.8.3 2.9.0
zod 4.3.6 4.4.3
tsx 4.22.4 4.23.1

Updates @anthropic-ai/sdk from 0.95.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
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​anthropic-ai/sdk since your current version.


Updates @clack/prompts from 1.2.0 to 1.7.0

Release notes

Sourced from @​clack/prompts's releases.

@​clack/prompts@​1.7.0

Minor Changes

  • #574 8f1c380 Thanks @​dreyfus92! - Add showInstructions option to select, multiselect, and groupMultiselect. Keyboard hints remain shown by default; pass showInstructions: false to hide them.

Patch Changes

@​clack/prompts@​1.6.0

Minor Changes

  • #568 f87933f Thanks @​florian-lefebvre! - Updates default formatter of note() to note dim lines anymore

    If you want the old behavior, provide a format() function:

    import { note } from '@clack/prompts';
    +import { styleText } from 'node:util';
    note(
    'You can edit the file src/index.jsx',
    'Next steps.'
    
    { format: (text) => styleText('dim', text) }
    );
  • #567 cc6aab5 Thanks @​dreyfus92! - Add keyboard instruction footers to select, multiselect, and groupMultiselect in the active state, matching autocomplete. No option — always shown.

  • Patch Changes

    @​clack/prompts@​1.5.1

    Patch Changes

    @​clack/prompts@​1.5.0

    Minor Changes

    ... (truncated)

    Changelog

    Sourced from @​clack/prompts's changelog.

    1.7.0

    Minor Changes

    • #574 8f1c380 Thanks @​dreyfus92! - Add showInstructions option to select, multiselect, and groupMultiselect. Keyboard hints remain shown by default; pass showInstructions: false to hide them.

    Patch Changes

    1.6.0

    Minor Changes

    • #568 f87933f Thanks @​florian-lefebvre! - Updates default formatter of note() to note dim lines anymore

      If you want the old behavior, provide a format() function:

      import { note } from '@clack/prompts';
      +import { styleText } from 'node:util';
      note(
      'You can edit the file src/index.jsx',
      'Next steps.'
      
      { format: (text) => styleText('dim', text) }
      );
  • #567 cc6aab5 Thanks @​dreyfus92! - Add keyboard instruction footers to select, multiselect, and groupMultiselect in the active state, matching autocomplete. No option — always shown.

  • Patch Changes

    1.5.1

    Patch Changes

    ... (truncated)

    Commits

    Updates @typescript-eslint/parser from 8.58.2 to 8.65.0

    Release notes

    Sourced from @​typescript-eslint/parser's releases.

    v8.65.0

    8.65.0 (2026-07-20)

    🚀 Features

    • add warning when TS 7 is detected (#12529)
    • eslint-plugin: [no-restricted-imports] deprecate extension rule (#12527, #19562, #11889)
    • eslint-plugin: [no-shadow] specialized error on enum declaration and member shadowing (#12578)
    • parser: add onUnsupportedTypeScriptVersion option to error on unsupported TypeScript versions (#12465)
    • typescript-estree: throw for invalid import defer syntax (#12552)

    🩹 Fixes

    • eslint-plugin: [prefer-string-starts-ends-with] handle escaped $ ending regex literals (#12515)
    • eslint-plugin: [unbound-method] report unbound methods accessed via member expression on union types (#12448)
    • eslint-plugin: [no-unnecessary-parameter-property-assignment] don't flag computed assignments with a variable key (#12568)

    ❤️ Thank You

    See GitHub Releases for more information.

    You can read about our versioning strategy and releases on our website.

    v8.64.0

    8.64.0 (2026-07-13)

    🚀 Features

    • support parsing import defer (#12513)
    • eslint-plugin: [no-loop-func] support using / await using declarations and deprecate the rule (#12500)
    • typescript-estree: throw for invalid definite assignment in class properties (#12543)

    🩹 Fixes

    • eslint-plugin: [require-array-sort-compare] handle constrained arrays (#12512)

    ❤️ Thank You

    See GitHub Releases for more information.

    You can read about our versioning strategy and releases on our website.

    ... (truncated)

    Changelog

    Sourced from @​typescript-eslint/parser's changelog.

    8.65.0 (2026-07-20)

    🚀 Features

    • add warning when TS 7 is detected (#12529)
    • parser: add onUnsupportedTypeScriptVersion option to error on unsupported TypeScript versions (#12465)

    ❤️ Thank You

    See GitHub Releases for more information.

    You can read about our versioning strategy and releases on our website.

    8.64.0 (2026-07-13)

    This was a version bump only for parser to align it with other projects, there were no code changes.

    See GitHub Releases for more information.

    You can read about our versioning strategy and releases on our website.

    8.63.0 (2026-07-06)

    This was a version bump only for parser to align it with other projects, there were no code changes.

    See GitHub Releases for more information.

    You can read about our versioning strategy and releases on our website.

    8.62.1 (2026-06-29)

    This was a version bump only for parser to align it with other projects, there were no code changes.

    See GitHub Releases for more information.

    You can read about our versioning strategy and releases on our website.

    8.62.0 (2026-06-22)

    🚀 Features

    • remove redundant package.json "files" (#12444)

    ❤️ Thank You

    ... (truncated)

    Commits
    • 63ba81b chore(release): publish 8.65.0
    • eaf4576 feat: add warning when TS 7 is detected (#12529)
    • d8f1044 feat(parser): add onUnsupportedTypeScriptVersion option to error on unsupport...
    • 0d06406 chore: add attw validation to repo (#12437)
    • c2386e4 chore(deps): update dependency prettier to v3.9.5 (#12486)
    • 414d9ab chore(release): publish 8.64.0
    • 290cf6c chore(release): publish 8.63.0
    • 3ea32f4 chore(release): publish 8.62.1
    • 54e2857 chore(release): publish 8.62.0
    • 81e4c26 feat: remove redundant package.json "files" (#12444)
    • Additional commits viewable in compare view

    Updates @typescript-eslint/typescript-estree from 8.58.2 to 8.65.0

    Release notes

    Sourced from @​typescript-eslint/typescript-estree's releases.

    v8.65.0

    8.65.0 (2026-07-20)

    🚀 Features

    • add warning when TS 7 is detected (#12529)
    • eslint-plugin: [no-restricted-imports] deprecate extension rule (#12527, #19562, #11889)
    • eslint-plugin: [no-shadow] specialized error on enum declaration and member shadowing (#12578)
    • parser: add onUnsupportedTypeScriptVersion option to error on unsupported TypeScript versions (#12465)
    • typescript-estree: throw for invalid import defer syntax (#12552)

    🩹 Fixes

    • eslint-plugin: [prefer-string-starts-ends-with] handle escaped $ ending regex literals (#12515)
    • eslint-plugin: [unbound-method] report unbound methods accessed via member expression on union types (#12448)
    • eslint-plugin: [no-unnecessary-parameter-property-assignment] don't flag computed assignments with a variable key (#12568)

    ❤️ Thank You

    See GitHub Releases for more information.

    You can read about our versioning strategy and releases on our website.

    v8.64.0

    8.64.0 (2026-07-13)

    🚀 Features

    • support parsing import defer (#12513)
    • eslint-plugin: [no-loop-func] support using / await using declarations and deprecate the rule (#12500)
    • typescript-estree: throw for invalid definite assignment in class properties (#12543)

    🩹 Fixes

    • eslint-plugin: [require-array-sort-compare] handle constrained arrays (#12512)

    ❤️ Thank You

    See GitHub Releases for more information.

    You can read about our versioning strategy and releases on our website.

    ... (truncated)

    Changelog

    Sourced from @​typescript-eslint/typescript-estree's changelog.

    8.65.0 (2026-07-20)

    🚀 Features

    • parser: add onUnsupportedTypeScriptVersion option to error on unsupported TypeScript versions (#12465)
    • typescript-estree: throw for invalid import defer syntax (#12552)

    ❤️ Thank You

    See GitHub Releases for more information.

    You can read about our versioning strategy and releases on our website.

    8.64.0 (2026-07-13)

    🚀 Features

    • typescript-estree: throw for invalid definite assignment in class properties (#12543)
    • support parsing import defer (#12513)

    ❤️ Thank You

    See GitHub Releases for more information.

    You can read about our versioning strategy and releases on our website.

    8.63.0 (2026-07-06)

    This was a version bump only for typescript-estree to align it with other projects, there were no code changes.

    See GitHub Releases for more information.

    You can read about our versioning strategy and releases on our website.

    8.62.1 (2026-06-29)

    This was a version bump only for typescript-estree to align it with other projects, there were no code changes.

    See GitHub Releases for more information.

    You can read about our versioning strategy and releases on our website.

    8.62.0 (2026-06-22)

    ... (truncated)

    Commits
    • 63ba81b chore(release): publish 8.65.0
    • d8f1044 feat(parser): add onUnsupportedTypeScriptVersion option to error on unsupport...
    • 0d06406 chore: add attw validation to repo (#12437)
    • 4b410e9 feat(typescript-estree): throw for invalid import defer syntax (#12552)
    • c2386e4 chore(deps): update dependency prettier to v3.9.5 (#12486)
    • 414d9ab chore(release): publish 8.64.0
    • b418cf5 feat(typescript-estree): throw for invalid definite assignment in class prope...
    • 07af21b feat: support parsing import defer (#12513)
    • 290cf6c chore(release): publish 8.63.0
    • 3ea32f4 chore(release): publish 8.62.1
    • Additional commits viewable in compare view

    Updates jsonrepair from 3.14.0 to 3.15.0

    Changelog

    Sourced from jsonrepair's changelog.

    3.15.0 (2026-07-03)

    Features

    Bug Fixes

    • infinite recursion when a string is followed by a backslash (#175) (f213160)

    3.14.1 (2026-06-25)

    Bug Fixes

    • improve repairing of numbers (#172) (aedd5a9)
    • repair unquoted strings starting with a keyword (#173) (1bbc1da)
    • trailing-comma repair strips the parents containers comma (#174) (8d1754c)
    • unescaped quotes before special characters like ) or the end of the string (#169) (5cbc9ba)
    Commits
    • 4a80ed8 chore(release): 3.15.0
    • b3bbf58 chore: update package-lock.json
    • f213160 Fix: infinite recursion when a string is followed by a backslash (#175)
    • 1ca4041 feat: #157 repair JSON with HTML-encoded entities (#168)
    • 72ccb43 chore(release): 3.14.1
    • 8d1754c fix: trailing-comma repair strips the parents containers comma (#174)
    • 1bbc1da fix: repair unquoted strings starting with a keyword (#173)
    • aedd5a9 fix: improve repairing of numbers (#172)
    • 5cbc9ba fix: unescaped quotes before special characters like ) or the end of the st...
    • See full diff in compare view

    Updates openai from 6.34.0 to 6.49.0

    Release notes

    Sourced from openai's releases.

    v6.49.0

    6.49.0 (2026-07-23)

    Full Changelog: v6.48.0...v6.49.0

    Features

    • api: accept None for prompt_cache_key/safety_identifier (c54a7f3)
    • api: add support for spend_limit admin apis (e8238b0)
    • helpers: add standard schema support (#1997) (4ced1a8)
    • helpers: add zod realtime function helper (#1996) (ee59911)
    • stlc: configurable CI runner and private-production-repo support in workflow templates (967a66b)
    • zod: support schema definitions (#1993) (eb04567)

    Bug Fixes

    • address code scanning findings (#2007) (2706888)
    • address remaining Dependabot alerts (#2005) (6ab3428)
    • azure: normalize endpoint trailing slashes (#1995) (39a15b4)
    • ci: restore explicit TypeScript SDK runner selection (fe79401)
    • runTools: sanitize replayed messages (#1990) (a60cc25)
    • stream: handle audio completion markers (#1991) (bd86817)
    • zod: escape schema definition refs before strict validation (bff2b10)
    • zod: infer parsed tool callback arguments (#1992) (83cdb79)
    • zod: preserve schema types while escaping refs (cb7e195)

    Chores

    v6.48.0

    6.48.0 (2026-07-17)

    Full Changelog: v6.47.0...v6.48.0

    Features

    • api: /organization/projects/{project_id}/service_accounts/{service_account_id}/api_keys" endpoint (9133b54)
    • api: manual updates (34acd23)
    • api: manual updates (3188968)

    Bug Fixes

    ... (truncated)

    Changelog

    Sourced from openai's changelog.

    6.49.0 (2026-07-23)

    Full Changelog: v6.48.0...v6.49.0

    Features

    • api: accept None for prompt_cache_key/safety_identifier (c54a7f3)
    • api: add support for spend_limit admin apis (e8238b0)
    • helpers: add standard schema support (#1997) (4ced1a8)
    • helpers: add zod realtime function helper (#1996) (ee59911)
    • stlc: configurable CI runner and private-production-repo support in workflow templates (967a66b)
    • zod: support schema definitions (#1993) (eb04567)

    Bug Fixes

    • address code scanning findings (#2007) (2706888)
    • address remaining Dependabot alerts (#2005) (6ab3428)
    • azure: normalize endpoint trailing slashes (#1995) (39a15b4)
    • ci: restore explicit TypeScript SDK runner selection (fe79401)
    • runTools: sanitize replayed messages (#1990) (a60cc25)
    • stream: handle audio completion markers (#1991) (bd86817)
    • zod: escape schema definition refs before strict validation (bff2b10)
    • zod: infer parsed tool callback arguments (#1992) (83cdb79)
    • zod: preserve schema types while escaping refs (cb7e195)

    Chores

    6.48.0 (2026-07-17)

    Full Changelog: v6.47.0...v6.48.0

    Features

    • api: /organization/projects/{project_id}/service_accounts/{service_account_id}/api_keys" endpoint (9133b54)
    • api: manual updates (34acd23)
    • api: manual updates (3188968)

    Bug Fixes

    Chores

    ... (truncated)

    Commits

    Updates ora from 9.3.0 to 9.4.1

    Release notes

    Sourced from ora's releases.

    v9.4.1

    • Fix type definitions (#257) 431ebc4
    • Fix failText type to accept unknown instead of Error, matching the actual promise rejection value bc3a283

    sindresorhus/ora@v9.4.0...v9.4.1

    v9.4.0

    • Add successSymbol and failSymbol options to oraPromise 3d2e0a9

    sindresorhus/ora@v9.3.0...v9.4.0

    Commits

    Updates string-width from 8.2.0 to 8.2.2

    Release notes

    Sourced from string-width's releases.

    v8.2.2

    • Fix spacing mark width handling (#80) b62c9ea

    sindresorhus/string-width@v8.2.1...v8.2.2

    v8.2.1

    • Fix Hangul grapheme width handling 9781ea4

    sindresorhus/string-width@v8.2.0...v8.2.1

    Commits

    Updates yaml from 2.8.3 to 2.9.0

    Release notes

    Sourced from yaml's releases.

    v2.9.0

    The changes here are really only patches, but I'm releasing this as a minor version to note a small change to the documentation of parseDocument() and parseAllDocuments(): I've removed the claim that they'll "never throw".

    It remains the case that practically all non-malicious inputs will be handled without emitting an error, but there is a decent chance that code paths remain where e.g. a RangeError due to call stack exhaustion can be triggered by malicious inputs. Up to now, I've considered these as security vulnerabilities, and in fact it's the only category of error for which yaml CVEs have been issued so far.

    Starting from this release, I'll be considering such errors as bugs, but not vulnerabilities. I do welcome people and/or LLMs looking for them, but please report them as normal issues rather than suspected security vulnerabilities. This also applies to previously undiscovered bugs in earlier releases.

    • fix: Avoid calling Array.prototype.push.apply()Description has been truncated

    @dependabot @github

    dependabot Bot commented on behalf of github Jul 20, 2026

    Copy link
    Copy Markdown
    Contributor Author

    Labels

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

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

    …11 updates
    
    Bumps the production-minor group with 11 updates in the / directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@anthropic-ai/sdk](https://github.com/anthropics/anthropic-sdk-typescript) | `0.95.2` | `0.115.0` |
    | [@clack/prompts](https://github.com/bombshell-dev/clack/tree/HEAD/packages/prompts) | `1.2.0` | `1.7.0` |
    | [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.58.2` | `8.65.0` |
    | [@typescript-eslint/typescript-estree](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-estree) | `8.58.2` | `8.65.0` |
    | [jsonrepair](https://github.com/josdejong/jsonrepair) | `3.14.0` | `3.15.0` |
    | [openai](https://github.com/openai/openai-node) | `6.34.0` | `6.49.0` |
    | [ora](https://github.com/sindresorhus/ora) | `9.3.0` | `9.4.1` |
    | [string-width](https://github.com/sindresorhus/string-width) | `8.2.0` | `8.2.2` |
    | [yaml](https://github.com/eemeli/yaml) | `2.8.3` | `2.9.0` |
    | [zod](https://github.com/colinhacks/zod) | `4.3.6` | `4.4.3` |
    | [tsx](https://github.com/privatenumber/tsx) | `4.22.4` | `4.23.1` |
    
    
    
    Updates `@anthropic-ai/sdk` from 0.95.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.95.2...sdk-v0.115.0)
    
    Updates `@clack/prompts` from 1.2.0 to 1.7.0
    - [Release notes](https://github.com/bombshell-dev/clack/releases)
    - [Changelog](https://github.com/bombshell-dev/clack/blob/main/packages/prompts/CHANGELOG.md)
    - [Commits](https://github.com/bombshell-dev/clack/commits/@clack/prompts@1.7.0/packages/prompts)
    
    Updates `@typescript-eslint/parser` from 8.58.2 to 8.65.0
    - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
    - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
    - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.65.0/packages/parser)
    
    Updates `@typescript-eslint/typescript-estree` from 8.58.2 to 8.65.0
    - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
    - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-estree/CHANGELOG.md)
    - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.65.0/packages/typescript-estree)
    
    Updates `jsonrepair` from 3.14.0 to 3.15.0
    - [Changelog](https://github.com/josdejong/jsonrepair/blob/main/CHANGELOG.md)
    - [Commits](josdejong/jsonrepair@v3.14.0...v3.15.0)
    
    Updates `openai` from 6.34.0 to 6.49.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.34.0...v6.49.0)
    
    Updates `ora` from 9.3.0 to 9.4.1
    - [Release notes](https://github.com/sindresorhus/ora/releases)
    - [Commits](sindresorhus/ora@v9.3.0...v9.4.1)
    
    Updates `string-width` from 8.2.0 to 8.2.2
    - [Release notes](https://github.com/sindresorhus/string-width/releases)
    - [Commits](sindresorhus/string-width@v8.2.0...v8.2.2)
    
    Updates `yaml` from 2.8.3 to 2.9.0
    - [Release notes](https://github.com/eemeli/yaml/releases)
    - [Commits](eemeli/yaml@v2.8.3...v2.9.0)
    
    Updates `zod` from 4.3.6 to 4.4.3
    - [Release notes](https://github.com/colinhacks/zod/releases)
    - [Commits](colinhacks/zod@v4.3.6...v4.4.3)
    
    Updates `tsx` from 4.22.4 to 4.23.1
    - [Release notes](https://github.com/privatenumber/tsx/releases)
    - [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
    - [Commits](privatenumber/tsx@v4.22.4...v4.23.1)
    
    ---
    updated-dependencies:
    - dependency-name: "@anthropic-ai/sdk"
      dependency-version: 0.112.3
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-minor
    - dependency-name: "@clack/prompts"
      dependency-version: 1.7.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-minor
    - dependency-name: "@typescript-eslint/parser"
      dependency-version: 8.64.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-minor
    - dependency-name: "@typescript-eslint/typescript-estree"
      dependency-version: 8.64.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-minor
    - dependency-name: jsonrepair
      dependency-version: 3.15.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-minor
    - dependency-name: openai
      dependency-version: 6.48.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-minor
    - dependency-name: ora
      dependency-version: 9.4.1
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-minor
    - dependency-name: string-width
      dependency-version: 8.2.2
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: production-minor
    - dependency-name: tsx
      dependency-version: 4.23.1
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-minor
    - dependency-name: yaml
      dependency-version: 2.9.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-minor
    - dependency-name: zod
      dependency-version: 4.4.3
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    @dependabot
    dependabot Bot force-pushed the dependabot/npm_and_yarn/production-minor-e2630b36ba branch from 21ddc81 to 8f9dc89 Compare July 27, 2026 14:08
    @github-actions
    github-actions Bot merged commit 5c0f21e into main Jul 27, 2026
    6 checks passed
    @dependabot
    dependabot Bot deleted the dependabot/npm_and_yarn/production-minor-e2630b36ba branch July 27, 2026 14:09
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

    Labels

    None yet

    Projects

    None yet

    Development

    Successfully merging this pull request may close these issues.

    0 participants