Skip to content

deps(dev): bump the dev group with 3 updates - #127

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/dev-fd57bd67f1
Open

deps(dev): bump the dev group with 3 updates#127
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/dev-fd57bd67f1

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the dev group with 3 updates: @anthropic-ai/sdk, @biomejs/biome and tsx.

Updates @anthropic-ai/sdk from 0.116.0 to 0.117.1

Release notes

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

sdk: v0.117.1

0.117.1 (2026-08-13)

Full Changelog: sdk-v0.117.0...sdk-v0.117.1

Chores

  • ci: allow manually re-publishing a package to npm from the release workflow (af60c1f)
  • internal: tag uploaded preview builds with the branch name (#295) (228f44e)

sdk: v0.117.0

0.117.0 (2026-08-13)

Full Changelog: sdk-v0.116.0...sdk-v0.117.0

Features

  • api: add output_behavior to dream creation (create a new memory store or update the input store in place) (6a5bd0f)

Bug Fixes

  • build: include dotfiles when flattening dist during git installs (917dbbb)
  • client: add models (a7bfbb1)
  • messages: honor per-request timeout in the non-streaming long-request check (#272) (0fdd8a8)
  • streaming: apply all message_delta fields when accumulating streamed messages (#289) (7b82659)
  • tool-runner: forward the response container id to the next request (#271) (5bdee4a)
  • tools: align path resolution, skill-archive members, and heartbeat bounds with the other SDKs (#264) (5fbc729)

Chores

  • ci: run breaking-change detection as a ci.yml job on every push (c34c1d5)
  • internal: switch from yarn to pnpm (f4eeea0)
  • tools: escape backslashes in skill archive exclusion patterns (#311) (67ede1c)

Documentation

  • api: clarify that user profile name is optional for resold profiles (1b6fed5)
Changelog

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

0.117.1 (2026-08-13)

Full Changelog: sdk-v0.117.0...sdk-v0.117.1

Chores

  • ci: allow manually re-publishing a package to npm from the release workflow (af60c1f)
  • internal: tag uploaded preview builds with the branch name (#295) (228f44e)

0.117.0 (2026-08-13)

Full Changelog: sdk-v0.116.0...sdk-v0.117.0

Features

  • api: add output_behavior to dream creation (create a new memory store or update the input store in place) (6a5bd0f)

Bug Fixes

  • build: include dotfiles when flattening dist during git installs (917dbbb)
  • client: add models (a7bfbb1)
  • messages: honor per-request timeout in the non-streaming long-request check (#272) (0fdd8a8)
  • streaming: apply all message_delta fields when accumulating streamed messages (#289) (7b82659)
  • tool-runner: forward the response container id to the next request (#271) (5bdee4a)
  • tools: align path resolution, skill-archive members, and heartbeat bounds with the other SDKs (#264) (5fbc729)

Chores

  • ci: run breaking-change detection as a ci.yml job on every push (c34c1d5)
  • internal: switch from yarn to pnpm (f4eeea0)
  • tools: escape backslashes in skill archive exclusion patterns (#311) (67ede1c)

Documentation

  • api: clarify that user profile name is optional for resold profiles (1b6fed5)
Commits
  • 64a1e8e chore: release main
  • 0281a29 chore(ci): allow manually re-publishing a package to npm from the release wor...
  • f3e060b chore(internal): tag uploaded preview builds with the branch name (#295)
  • 6fcfb2c chore: release main
  • 1a1af33 codegen metadata
  • d6b8f40 chore: release main
  • 5edda86 chore(tools): escape backslashes in skill archive exclusion patterns (#311)
  • 07cf28c chore(internal): switch from yarn to pnpm
  • a751543 docs(api): clarify that user profile name is optional for resold profiles
  • 0c74ed0 fix(build): include dotfiles when flattening dist during git installs
  • Additional commits viewable in compare view

Updates @biomejs/biome from 2.5.7 to 2.5.8

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.5.8

2.5.8

Patch Changes

  • #10710 0a0fbc1 Thanks @​dyc3! - Added a new nursery rule useReactCompiler, which reports diagnostics from React Compiler lint mode.

  • #11251 ea9dd8a Thanks @​dyc3! - Improved performance of noImportCycles.

  • #11247 52b44d6 Thanks @​dyc3! - Added the nursery rule noSvelteLegacyConst, which disallows legacy Svelte {@const} tags and recommends declaration tags with $derived().

    Invalid:

    {#each boxes as box}
      {@const area = box.width * box.height}
      <p>{area}</p>
    {/each}

    Valid:

    {#each boxes as box}
      {const area = $derived(box.width * box.height)}
      <p>{area}</p>
    {/each}
  • #11252 d5f5704 Thanks @​Turtle-Hwan! - Fixed #11250: useAwait no longer reports async functions that contain an await using declaration.

  • #11143 6be7be1 Thanks @​vznh! - Fixed #11017: noUselessUndefined no longer reports return undefined when the enclosing function has a return type annotation other than undefined or void.

  • #11234 caefe39 Thanks @​subotac! - Fixed #11228: CSS block comments between a declaration colon and value now preserve their source indentation.

     :root {
       --font-stack:
    -/* comment */
    +    /* comment */
         system-ui;
     }
  • #11285 bca1f73 Thanks @​denbezrukov! - Fixed #11280: CSS formatting keeps comments inside functional pseudo-classes and pseudo-elements instead of moving them before the function name.

    -:/* comment */ where(div) {}
    +:where(/* comment */ div) {}

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.5.8

Patch Changes

  • #10710 0a0fbc1 Thanks @​dyc3! - Added a new nursery rule useReactCompiler, which reports diagnostics from React Compiler lint mode.

  • #11251 ea9dd8a Thanks @​dyc3! - Improved performance of noImportCycles.

  • #11247 52b44d6 Thanks @​dyc3! - Added the nursery rule noSvelteLegacyConst, which disallows legacy Svelte {@const} tags and recommends declaration tags with $derived().

    Invalid:

    {#each boxes as box}
      {@const area = box.width * box.height}
      <p>{area}</p>
    {/each}

    Valid:

    {#each boxes as box}
      {const area = $derived(box.width * box.height)}
      <p>{area}</p>
    {/each}
  • #11252 d5f5704 Thanks @​Turtle-Hwan! - Fixed #11250: useAwait no longer reports async functions that contain an await using declaration.

  • #11143 6be7be1 Thanks @​vznh! - Fixed #11017: noUselessUndefined no longer reports return undefined when the enclosing function has a return type annotation other than undefined or void.

  • #11234 caefe39 Thanks @​subotac! - Fixed #11228: CSS block comments between a declaration colon and value now preserve their source indentation.

     :root {
       --font-stack:
    -/* comment */
    +    /* comment */
         system-ui;
     }
  • #11285 bca1f73 Thanks @​denbezrukov! - Fixed #11280: CSS formatting keeps comments inside functional pseudo-classes and pseudo-elements instead of moving them before the function name.

    -:/* comment */ where(div) {}
    +:where(/* comment */ div) {}

... (truncated)

Commits

Updates tsx from 4.23.11 to 4.23.12

Release notes

Sourced from tsx's releases.

v4.23.12

4.23.12 (2026-08-10)

Bug Fixes

  • shim import.meta when tokens are split by comments or newlines (#829) (ed9d330), closes #828

This release is also available on:

Commits
  • ed9d330 fix: shim import.meta when tokens are split by comments or newlines (#829)
  • 651f5be test: cover CommonJS TypeScript import.meta paths
  • See full diff in compare view

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the dev group with 3 updates: [@anthropic-ai/sdk](https://github.com/anthropics/anthropic-sdk-typescript), [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) and [tsx](https://github.com/privatenumber/tsx).


Updates `@anthropic-ai/sdk` from 0.116.0 to 0.117.1
- [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.116.0...sdk-v0.117.1)

Updates `@biomejs/biome` from 2.5.7 to 2.5.8
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.5.8/packages/@biomejs/biome)

Updates `tsx` from 4.23.11 to 4.23.12
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.23.11...v4.23.12)

---
updated-dependencies:
- dependency-name: "@anthropic-ai/sdk"
  dependency-version: 0.117.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: "@biomejs/biome"
  dependency-version: 2.5.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev
- dependency-name: tsx
  dependency-version: 4.23.12
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev
...

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 Aug 17, 2026
@dependabot
dependabot Bot requested a review from c-1k as a code owner August 17, 2026 20:25
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 17, 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