Skip to content

chore(deps): bump the workspace-minor-patch group with 78 updates - #4120

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/workspace-minor-patch-9205e00110
Closed

chore(deps): bump the workspace-minor-patch group with 78 updates#4120
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/workspace-minor-patch-9205e00110

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 6, 2026

Copy link
Copy Markdown
Contributor

Bumps the workspace-minor-patch group with 78 updates:

Package From To
@biomejs/biome 2.3.6 2.4.16
prettier 3.6.2 3.8.3
prettier-plugin-tailwindcss 0.1.13 0.8.0
turbo 2.6.0 2.9.16
@icons-pack/react-simple-icons 13.8.0 13.13.0
@mux/mux-player-react 3.8.0 3.13.0
@next/mdx 16.1.6 16.2.7
@radix-ui/react-accordion 1.2.12 1.2.13
@radix-ui/react-avatar 1.1.11 1.1.12
@radix-ui/react-checkbox 1.3.3 1.3.4
@radix-ui/react-collapsible 1.1.12 1.1.13
@radix-ui/react-dialog 1.1.15 1.1.16
@radix-ui/react-dropdown-menu 2.1.16 2.1.17
@radix-ui/react-label 2.1.8 2.1.9
@radix-ui/react-navigation-menu 1.2.14 1.2.15
@radix-ui/react-popover 1.1.15 1.1.16
@radix-ui/react-radio-group 1.3.8 1.4.0
@radix-ui/react-scroll-area 1.2.10 1.2.11
@radix-ui/react-select 2.2.6 2.3.0
@radix-ui/react-separator 1.1.8 1.1.9
@radix-ui/react-slot 1.2.4 1.2.5
@radix-ui/react-switch 1.2.6 1.3.0
@radix-ui/react-tabs 1.1.13 1.1.14
@radix-ui/react-toggle 1.1.10 1.1.11
@radix-ui/react-toggle-group 1.1.11 1.1.12
@radix-ui/react-tooltip 1.2.8 1.2.9
@radix-ui/react-use-controllable-state 1.2.2 1.2.3
@tabler/icons-react 3.35.0 3.44.0
@tanstack/react-form 1.25.0 1.33.0
@tanstack/zod-adapter 1.136.18 1.167.0
@vercel/toolbar 0.1.41 0.2.6
flags 4.0.2 4.1.0
motion 12.23.24 12.40.0
next-themes 0.2.1 0.4.6
posthog-js 1.285.1 1.381.0
react 19.2.0 19.2.7
@types/react 19.2.2 19.2.17
react-dom 19.2.0 19.2.7
@types/react-dom 19.2.2 19.2.3
rehype-pretty-code 0.14.1 0.14.3
unist-util-visit 5.0.0 5.1.0
autoprefixer 10.4.21 10.5.0
pagefind 1.4.0 1.5.2
postcss 8.5.6 8.5.15
tsx 4.20.6 4.22.4
@514labs/moose-cli-darwin-arm64 0.3.205 0.6.533
@514labs/moose-cli-darwin-x64 0.3.205 0.6.171
@514labs/moose-cli-linux-arm64 0.3.205 0.6.533
@514labs/moose-cli-linux-x64 0.3.205 0.6.533
@types/vscode 1.110.0 1.120.0
typescript-eslint 8.55.0 8.60.1
@radix-ui/react-hover-card 1.1.15 1.1.16
mixpanel 0.18.1 0.22.0
eslint-config-turbo 2.6.0 2.9.16
tsup 8.5.0 8.5.1
@aws-sdk/client-s3 3.922.0 3.1063.0
@clickhouse/client 1.8.1 1.20.0
@clickhouse/client-web 1.5.0 1.20.0
@temporalio/activity 1.13.1 1.17.2
@temporalio/client 1.13.1 1.17.2
@temporalio/common 1.13.1 1.17.2
@temporalio/worker 1.13.1 1.17.2
@temporalio/workflow 1.13.1 1.17.2
fastq 1.17.1 1.20.1
@modelcontextprotocol/sdk 1.27.1 1.29.0
@bufbuild/buf 1.59.0 1.70.0
rimraf 6.1.0 6.1.3
@anthropic-ai/sdk 0.71.2 0.101.0
@grpc/grpc-js 1.14.3 1.14.4
@grpc/proto-loader 0.8.0 0.8.1
@opentelemetry/otlp-transformer 0.211.0 0.218.0
axios 1.7.9 1.17.0
eslint-config-next 16.1.6 16.2.7
js-yaml 4.1.1 4.2.0
mermaid 11.12.0 11.15.0
next 16.1.6 16.2.7
posthog-node 5.21.0 5.36.3
yaml 2.8.3 2.9.0

Updates @biomejs/biome from 2.3.6 to 2.4.16

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.4.16

2.4.16

Patch Changes

  • #10329 ef764d5 Thanks @​Conaclos! - Fixed an issue where diagnostics showed an incorrect location in Astro files.

  • #10363 50aa415 Thanks @​dyc3! - Fixed HTML formatting for a case where comments could cause the formatter to split up a closing tag, which would cause the resulting HTML to be syntactically invalid.

    Input:

    <span
      ><!-- 1
    --><span>a</span
      ><!-- 2
    --><span>b</span
      ><!-- 3
    --></span>

    Output:

      <span
    	  ><!-- 1
    - --> <span>a</span<!-- 2
    - --> ><span>b</span><!-- 3
    + --><span>a</span><!-- 2
    + --><span>b</span><!-- 3
      --></span
      >
  • #10465 0c718da Thanks @​dfedoryshchev! - Fixed diagnostics emitted by the noUntrustedLicenses rule.

  • #10358 05c2617 Thanks @​dyc3! - Fixed #10356: biome rage --linter now displays rules enabled through linter domains in the enabled rules list.

  • #10300 950247c Thanks @​dyc3! - Fixed #10265: Svelte function bindings such as bind:value={get, set} are now parsed more precisely, so noCommaOperator won't emit false positives for that syntax anymore.

  • #9786 e71f584 Thanks @​MeGaNeKoS! - Fixed #8480: useDestructuring now provides variableDeclarator and assignmentExpression options to control which contexts enforce destructuring, matching ESLint's prefer-destructuring configuration. Both default to {array: true, object: true}. The diagnostic for object destructuring in assignment expressions now instructs users to wrap the assignment in parentheses.

  • #10425 1948b72 Thanks @​sjh9714! - Fixed #10244: The useOptionalChain rule now detects negated guard inequality chains like !foo || foo.bar !== "x".

  • #10442 001f94f Thanks @​ematipico! - Fixed #10411: noMisusedPromises no longer causes a stack overflow when a nested function returns an object with shorthand properties that shadow destructured variables from an outer scope.

  • #10318 9b1577f Thanks @​dyc3! - Added support for formatter.trailingCommas in overrides. This option was previously available in the top-level formatter configuration but missing from formatter overrides.

  • #10319 2e37709 Thanks @​dyc3! - Fixed Vue and Svelte formatting for standalone interpolations in inline elements. Biome now preserves existing newlines in cases like:

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.4.16

Patch Changes

  • #10329 ef764d5 Thanks @​Conaclos! - Fixed an issue where diagnostics showed an incorrect location in Astro files.

  • #10363 50aa415 Thanks @​dyc3! - Fixed HTML formatting for a case where comments could cause the formatter to split up a closing tag, which would cause the resulting HTML to be syntactically invalid.

    Input:

    <span
      ><!-- 1
    --><span>a</span
      ><!-- 2
    --><span>b</span
      ><!-- 3
    --></span>

    Output:

      <span
    	  ><!-- 1
    - --> <span>a</span<!-- 2
    - --> ><span>b</span><!-- 3
    + --><span>a</span><!-- 2
    + --><span>b</span><!-- 3
      --></span
      >
  • #10465 0c718da Thanks @​dfedoryshchev! - Fixed diagnostics emitted by the noUntrustedLicenses rule.

  • #10358 05c2617 Thanks @​dyc3! - Fixed #10356: biome rage --linter now displays rules enabled through linter domains in the enabled rules list.

  • #10300 950247c Thanks @​dyc3! - Fixed #10265: Svelte function bindings such as bind:value={get, set} are now parsed more precisely, so noCommaOperator won't emit false positives for that syntax anymore.

  • #9786 e71f584 Thanks @​MeGaNeKoS! - Fixed #8480: useDestructuring now provides variableDeclarator and assignmentExpression options to control which contexts enforce destructuring, matching ESLint's prefer-destructuring configuration. Both default to {array: true, object: true}. The diagnostic for object destructuring in assignment expressions now instructs users to wrap the assignment in parentheses.

  • #10425 1948b72 Thanks @​sjh9714! - Fixed #10244: The useOptionalChain rule now detects negated guard inequality chains like !foo || foo.bar !== "x".

  • #10442 001f94f Thanks @​ematipico! - Fixed #10411: noMisusedPromises no longer causes a stack overflow when a nested function returns an object with shorthand properties that shadow destructured variables from an outer scope.

  • #10318 9b1577f Thanks @​dyc3! - Added support for formatter.trailingCommas in overrides. This option was previously available in the top-level formatter configuration but missing from formatter overrides.

  • #10319 2e37709 Thanks @​dyc3! - Fixed Vue and Svelte formatting for standalone interpolations in inline elements. Biome now preserves existing newlines in cases like:

... (truncated)

Commits

Updates prettier from 3.6.2 to 3.8.3

Release notes

Sourced from prettier's releases.

3.8.3

🔗 Changelog

3.8.2

  • Support Angular v21.2

🔗 Changelog

3.8.1

🔗 Changelog

3.8.0

  • Support Angular v21.1

diff

🔗 Release note "Prettier 3.8: Support for Angular v21.1"

3.7.4

What's Changed

🔗 Changelog

3.7.3

What's Changed

🔗 Changelog

3.7.2

What's Changed

🔗 Changelog

3.7.1

... (truncated)

Changelog

Sourced from prettier's changelog.

3.8.3

diff

SCSS: Prevent trailing comma in if() function (#18471 by @​kovsu)

// Input
$value: if(sass(false): 1; else: -1);
// Prettier 3.8.2
$value: if(
sass(false): 1; else: -1,
);
// Prettier 3.8.3
$value: if(sass(false): 1; else: -1);

3.8.2

diff

Angular: Support Angular v21.2 (#18722, #19034 by @​fisker)

Exhaustive typechecking with @default never;

<!-- Input -->
@switch (foo) {
  @case (1) {}
  @default never;
}
<!-- Prettier 3.8.1 -->
SyntaxError: Incomplete block "default never". If you meant to write the @ character, you should use the "&#64;" HTML entity instead. (3:3)
<!-- Prettier 3.8.2 -->
@​switch (foo) {
@​case (1) {}
@​default never;
}

arrow function and instanceof expressions.

</tr></table> 

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for prettier since your current version.


Updates prettier-plugin-tailwindcss from 0.1.13 to 0.8.0

Release notes

Sourced from prettier-plugin-tailwindcss's releases.

v0.8.0

Changed

  • Require at least Prettier 3.7.x (#420)

Added

  • Export public sorting APIs to /sorter (#438)

Fixed

  • Remove top-level await (#420)
  • Improve load-time performance (#420)
  • Improve config resolution caching with directory-based cache (#432)
  • Load compatible plugins on demand and tighten plugin detection (#437)
  • Load v3/v4 modules only when needed (#439)
  • Remove recast/ast-types deps and optimize dynamic JS attribute handling (#440)
  • Remove unused deps (#441)
  • Use the plugin that has already been imported rather than dynamically importing it again (#442)
  • Skip visiting non-node children (#443)
  • Optimize whitespace-only class detection (#429)
  • Fix v3 config loading with Jiti re-exports (#448)
  • Collapse whitespace in template literals with adjacent quasis (#427)
  • Improve canCollapseWhitespaceIn handling for "tailwindPreserveWhitespace": true (#428)

v0.7.4

Same as v0.7.2, since v0.7.3 contained breaking changes.

v0.7.3

Changed

  • Remove top-level await (#420)
  • Improve load-time performance (#420)

Fixed

  • Collapse whitespace in template literals with adjacent quasis (#427)

v0.7.2

Fixed

  • Load compatible plugins sequentially to work around race conditions in Node.js (#412)
  • Fix compatibility with prettier-plugin-svelte when using Prettier v3.7+ (#418)

v0.7.1

Fixed

  • Match against correct name of dynamic attributes when using regexes (#410)

v0.7.0

... (truncated)

Changelog

Sourced from prettier-plugin-tailwindcss's changelog.

[0.8.0] - 2026-04-27

Changed

  • Require at least Prettier 3.7.x (#420)

Added

  • Export public sorting APIs to /sorter (#438)

Fixed

  • Remove top-level await (#420)
  • Improve load-time performance (#420)
  • Improve config resolution caching with directory-based cache (#432)
  • Load compatible plugins on demand and tighten plugin detection (#437)
  • Load v3/v4 modules only when needed (#439)
  • Remove recast/ast-types deps and optimize dynamic JS attribute handling (#440)
  • Remove unused deps (#441)
  • Use the plugin that has already been imported rather than dynamically importing it again (#442)
  • Skip visiting non-node children (#443)
  • Optimize whitespace-only class detection (#429)
  • Fix v3 config loading with Jiti re-exports (#448)
  • Collapse whitespace in template literals with adjacent quasis (#427)
  • Improve canCollapseWhitespaceIn handling for "tailwindPreserveWhitespace": true (#428)

[0.7.2] - 2025-12-01

Fixed

  • Load compatible plugins sequentially to work around race conditions in Node.js (#412)
  • Fix compatibility with prettier-plugin-svelte when using Prettier v3.7+ (#418)

[0.7.1] - 2025-10-17

Fixed

  • Match against correct name of dynamic attributes when using regexes (#410)

[0.7.0] - 2025-10-14

Added

  • Format quotes in @source, @plugin, and @config (#387)
  • Sort in function calls in Twig (#358)
  • Sort in callable template literals (#367)
  • Sort in function calls mixed with property accesses (#367)
  • Support regular expression patterns for attributes (#405)
  • Support regular expression patterns for function names (#405)

... (truncated)

Commits
  • f77532e 0.8.0
  • 4815377 Update the changelog for recent PRs (#449)
  • 0a7ddcb Fix insiders tags sometimes published to latest channel (#453)
  • 8066e85 release on published event
  • 3b0ed57 move --silent flag before the script
  • f7d2598 0.7.3
  • 9a51191 merge release.yml and release-insiders.yml
  • 3997fbd Use explicit import() expressions in plugin load arrays for bundler compatibi...
  • 125a8bc Fix v3 config loading with Jiti re-exports (#448)
  • 2ac6e70 Enable minify: "dce-only in tsdown (#447)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for prettier-plugin-tailwindcss since your current version.


Updates turbo from 2.6.0 to 2.9.16

Release notes

Sourced from turbo's releases.

Turborepo v2.9.16

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.9.15...v2.9.16

Turborepo v2.9.16-canary.2

What's Changed

Changelog

New Contributors

Full Changelog: vercel/turborepo@v2.9.15-canary.7...v2.9.16-canary.2

Turborepo v2.9.15

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for turbo since your current version.


Updates @icons-pack/react-simple-icons from 13.8.0 to 13.13.0

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​icons-pack/react-simple-icons since your current version.


Updates @mux/mux-player-react from 3.8.0 to 3.13.0

Release notes

Sourced from @​mux/mux-player-react's releases.

@​mux/mux-player-react: v3.13.0

3.13.0 (2026-04-28)

Features

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​mux/mux-player bumped from 3.12.0 to 3.13.0
      • @​mux/playback-core bumped from 0.34.1 to 0.35.0

@​mux/mux-player-react: v3.12.0

3.12.0 (2026-04-24)

Miscellaneous Chores

  • @​mux/mux-player-react: Synchronize player versions

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​mux/mux-player bumped from 3.11.8 to 3.12.0
      • @​mux/playback-core bumped from 0.34.0 to 0.34.1

@​mux/mux-player-react: v3.11.8

3.11.8 (2026-04-16)

Miscellaneous Chores

  • @​mux/mux-player-react: Synchronize player versions

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​mux/mux-player bumped from 3.11.7 to 3.11.8
      • @​mux/playback-core bumped from 0.33.3 to 0.34.0

@​mux/mux-player-react: v3.11.7

3.11.7 (2026-03-25)

... (truncated)

Changelog

Sourced from @​mux/mux-player-react's changelog.

3.13.0 (2026-04-28)

Features

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​mux/mux-player bumped from 3.12.0 to 3.13.0
      • @​mux/playback-core bumped from 0.34.1 to 0.35.0

3.12.0 (2026-04-24)

Miscellaneous Chores

  • @​mux/mux-player-react: Synchronize player versions

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​mux/mux-player bumped from 3.11.8 to 3.12.0
      • @​mux/playback-core bumped from 0.34.0 to 0.34.1

3.11.8 (2026-04-16)

Miscellaneous Chores

  • @​mux/mux-player-react: Synchronize player versions

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​mux/mux-player bumped from 3.11.7 to 3.11.8
      • @​mux/playback-core bumped from 0.33.3 to 0.34.0

3.11.7 (2026-03-25)

Miscellaneous Chores

... (truncated)

Commits

Updates @next/mdx from 16.1.6 to 16.2.7

Release notes

Sourced from @​next/mdx's releases.

v16.2.7

[!NOTE] This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • Backport documentation fixes for v16.2 (#93804)
  • [backport] Patch playwright-core to resolve _finishedPromise on requestFailed (#93920)
  • [backport] Fix dev mode hydration failure when page is served from HTTP cache (#93492)
  • [backport] Fix catch-all router.query corruption with basePath + rewrites (#93917)
  • [backport] Encode non-ASCII characters in cache tags at construction (#93918)
  • [backport] Fix server action forwarding loop with middleware rewrites (#93919)
  • [backport] Turbopack: switch from base40 to base38 hash encoding (#93932)
  • [ci] Disable hanging node 24 typescript tests on 16.2 backport branch (#94164)
  • [backport] Fix "type: module" in project dir when using standalone or adapters (#94050)
  • [backport] Propagate adapter preferred regions (#94200)
  • [16.2.x] Don't drop FormData entries (#94240)
  • [backport] feat(turbopack): add LocalPathOrProjectPath PostCSS config resolution (#94284)

Credits

Huge thanks to @​eps1lon, @​icyJoseph, @​unstubbable, @​mischnic, @​bgw, @​timneutkens, and @​lukesandberg for helping!

v16.2.6

[!NOTE] This release contains security fixes and backported bug fixes. It does not include all pending features/changes on canary.

Security Fixes

The following advisories have been addressed:

High:

Moderate:

Bumps the workspace-minor-patch group with 78 updates:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.3.6` | `2.4.16` |
| [prettier](https://github.com/prettier/prettier) | `3.6.2` | `3.8.3` |
| [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) | `0.1.13` | `0.8.0` |
| [turbo](https://github.com/vercel/turborepo) | `2.6.0` | `2.9.16` |
| [@icons-pack/react-simple-icons](https://github.com/icons-pack/react-simple-icons/tree/HEAD/react-simple-icons) | `13.8.0` | `13.13.0` |
| [@mux/mux-player-react](https://github.com/muxinc/elements/tree/HEAD/packages/mux-player-react) | `3.8.0` | `3.13.0` |
| [@next/mdx](https://github.com/vercel/next.js/tree/HEAD/packages/next-mdx) | `16.1.6` | `16.2.7` |
| [@radix-ui/react-accordion](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/accordion) | `1.2.12` | `1.2.13` |
| [@radix-ui/react-avatar](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/avatar) | `1.1.11` | `1.1.12` |
| [@radix-ui/react-checkbox](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/checkbox) | `1.3.3` | `1.3.4` |
| [@radix-ui/react-collapsible](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/collapsible) | `1.1.12` | `1.1.13` |
| [@radix-ui/react-dialog](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/dialog) | `1.1.15` | `1.1.16` |
| [@radix-ui/react-dropdown-menu](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/dropdown-menu) | `2.1.16` | `2.1.17` |
| [@radix-ui/react-label](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/label) | `2.1.8` | `2.1.9` |
| [@radix-ui/react-navigation-menu](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/navigation-menu) | `1.2.14` | `1.2.15` |
| [@radix-ui/react-popover](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/popover) | `1.1.15` | `1.1.16` |
| [@radix-ui/react-radio-group](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/radio-group) | `1.3.8` | `1.4.0` |
| [@radix-ui/react-scroll-area](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/scroll-area) | `1.2.10` | `1.2.11` |
| [@radix-ui/react-select](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/select) | `2.2.6` | `2.3.0` |
| [@radix-ui/react-separator](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/separator) | `1.1.8` | `1.1.9` |
| [@radix-ui/react-slot](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/slot) | `1.2.4` | `1.2.5` |
| [@radix-ui/react-switch](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/switch) | `1.2.6` | `1.3.0` |
| [@radix-ui/react-tabs](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/tabs) | `1.1.13` | `1.1.14` |
| [@radix-ui/react-toggle](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/toggle) | `1.1.10` | `1.1.11` |
| [@radix-ui/react-toggle-group](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/toggle-group) | `1.1.11` | `1.1.12` |
| [@radix-ui/react-tooltip](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/tooltip) | `1.2.8` | `1.2.9` |
| [@radix-ui/react-use-controllable-state](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/use-controllable-state) | `1.2.2` | `1.2.3` |
| [@tabler/icons-react](https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react) | `3.35.0` | `3.44.0` |
| [@tanstack/react-form](https://github.com/TanStack/form/tree/HEAD/packages/react-form) | `1.25.0` | `1.33.0` |
| [@tanstack/zod-adapter](https://github.com/TanStack/router/tree/HEAD/packages/zod-adapter) | `1.136.18` | `1.167.0` |
| [@vercel/toolbar](https://github.com/vercel/next-live-mode/tree/HEAD/packages/toolbar) | `0.1.41` | `0.2.6` |
| [flags](https://github.com/vercel/flags) | `4.0.2` | `4.1.0` |
| [motion](https://github.com/motiondivision/motion) | `12.23.24` | `12.40.0` |
| [next-themes](https://github.com/pacocoursey/next-themes) | `0.2.1` | `0.4.6` |
| [posthog-js](https://github.com/PostHog/posthog-js) | `1.285.1` | `1.381.0` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.7` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.2` | `19.2.17` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.0` | `19.2.7` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.2.2` | `19.2.3` |
| [rehype-pretty-code](https://github.com/rehype-pretty/rehype-pretty-code/tree/HEAD/packages/core) | `0.14.1` | `0.14.3` |
| [unist-util-visit](https://github.com/syntax-tree/unist-util-visit) | `5.0.0` | `5.1.0` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.21` | `10.5.0` |
| [pagefind](https://github.com/Pagefind/pagefind) | `1.4.0` | `1.5.2` |
| [postcss](https://github.com/postcss/postcss) | `8.5.6` | `8.5.15` |
| [tsx](https://github.com/privatenumber/tsx) | `4.20.6` | `4.22.4` |
| [@514labs/moose-cli-darwin-arm64](https://github.com/514-labs/moosestack) | `0.3.205` | `0.6.533` |
| @514labs/moose-cli-darwin-x64 | `0.3.205` | `0.6.171` |
| [@514labs/moose-cli-linux-arm64](https://github.com/514-labs/moosestack) | `0.3.205` | `0.6.533` |
| [@514labs/moose-cli-linux-x64](https://github.com/514-labs/moosestack) | `0.3.205` | `0.6.533` |
| [@types/vscode](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/vscode) | `1.110.0` | `1.120.0` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.55.0` | `8.60.1` |
| [@radix-ui/react-hover-card](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/hover-card) | `1.1.15` | `1.1.16` |
| [mixpanel](https://github.com/mixpanel/mixpanel-node/tree/HEAD/packages/mixpanel) | `0.18.1` | `0.22.0` |
| [eslint-config-turbo](https://github.com/vercel/turborepo/tree/HEAD/packages/eslint-config-turbo) | `2.6.0` | `2.9.16` |
| [tsup](https://github.com/egoist/tsup) | `8.5.0` | `8.5.1` |
| [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3) | `3.922.0` | `3.1063.0` |
| [@clickhouse/client](https://github.com/ClickHouse/clickhouse-js) | `1.8.1` | `1.20.0` |
| [@clickhouse/client-web](https://github.com/ClickHouse/clickhouse-js) | `1.5.0` | `1.20.0` |
| [@temporalio/activity](https://github.com/temporalio/sdk-typescript/tree/HEAD/packages/activity) | `1.13.1` | `1.17.2` |
| [@temporalio/client](https://github.com/temporalio/sdk-typescript/tree/HEAD/packages/client) | `1.13.1` | `1.17.2` |
| [@temporalio/common](https://github.com/temporalio/sdk-typescript/tree/HEAD/packages/common) | `1.13.1` | `1.17.2` |
| [@temporalio/worker](https://github.com/temporalio/sdk-typescript/tree/HEAD/packages/worker) | `1.13.1` | `1.17.2` |
| [@temporalio/workflow](https://github.com/temporalio/sdk-typescript/tree/HEAD/packages/workflow) | `1.13.1` | `1.17.2` |
| [fastq](https://github.com/mcollina/fastq) | `1.17.1` | `1.20.1` |
| [@modelcontextprotocol/sdk](https://github.com/modelcontextprotocol/typescript-sdk) | `1.27.1` | `1.29.0` |
| [@bufbuild/buf](https://github.com/bufbuild/buf) | `1.59.0` | `1.70.0` |
| [rimraf](https://github.com/isaacs/rimraf) | `6.1.0` | `6.1.3` |
| [@anthropic-ai/sdk](https://github.com/anthropics/anthropic-sdk-typescript) | `0.71.2` | `0.101.0` |
| [@grpc/grpc-js](https://github.com/grpc/grpc-node) | `1.14.3` | `1.14.4` |
| [@grpc/proto-loader](https://github.com/grpc/grpc-node) | `0.8.0` | `0.8.1` |
| [@opentelemetry/otlp-transformer](https://github.com/open-telemetry/opentelemetry-js) | `0.211.0` | `0.218.0` |
| [axios](https://github.com/axios/axios) | `1.7.9` | `1.17.0` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `16.1.6` | `16.2.7` |
| [js-yaml](https://github.com/nodeca/js-yaml) | `4.1.1` | `4.2.0` |
| [mermaid](https://github.com/mermaid-js/mermaid) | `11.12.0` | `11.15.0` |
| [next](https://github.com/vercel/next.js) | `16.1.6` | `16.2.7` |
| [posthog-node](https://github.com/PostHog/posthog-js/tree/HEAD/packages/node) | `5.21.0` | `5.36.3` |
| [yaml](https://github.com/eemeli/yaml) | `2.8.3` | `2.9.0` |


Updates `@biomejs/biome` from 2.3.6 to 2.4.16
- [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.4.16/packages/@biomejs/biome)

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

Updates `prettier-plugin-tailwindcss` from 0.1.13 to 0.8.0
- [Release notes](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/prettier-plugin-tailwindcss@v0.1.13...v0.8.0)

Updates `turbo` from 2.6.0 to 2.9.16
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md)
- [Commits](vercel/turborepo@v2.6.0...v2.9.16)

Updates `@icons-pack/react-simple-icons` from 13.8.0 to 13.13.0
- [Release notes](https://github.com/icons-pack/react-simple-icons/releases)
- [Commits](https://github.com/icons-pack/react-simple-icons/commits/v13.13.0/react-simple-icons)

Updates `@mux/mux-player-react` from 3.8.0 to 3.13.0
- [Release notes](https://github.com/muxinc/elements/releases)
- [Changelog](https://github.com/muxinc/elements/blob/main/packages/mux-player-react/CHANGELOG.md)
- [Commits](https://github.com/muxinc/elements/commits/@mux/mux-player-react@3.13.0/packages/mux-player-react)

Updates `@next/mdx` from 16.1.6 to 16.2.7
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v16.2.7/packages/next-mdx)

Updates `@radix-ui/react-accordion` from 1.2.12 to 1.2.13
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/accordion/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/accordion)

Updates `@radix-ui/react-avatar` from 1.1.11 to 1.1.12
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/avatar/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/avatar)

Updates `@radix-ui/react-checkbox` from 1.3.3 to 1.3.4
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/checkbox/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/checkbox)

Updates `@radix-ui/react-collapsible` from 1.1.12 to 1.1.13
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/collapsible/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/collapsible)

Updates `@radix-ui/react-dialog` from 1.1.15 to 1.1.16
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/dialog/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/dialog)

Updates `@radix-ui/react-dropdown-menu` from 2.1.16 to 2.1.17
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/dropdown-menu/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/dropdown-menu)

Updates `@radix-ui/react-label` from 2.1.8 to 2.1.9
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/label/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/label)

Updates `@radix-ui/react-navigation-menu` from 1.2.14 to 1.2.15
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/navigation-menu/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/navigation-menu)

Updates `@radix-ui/react-popover` from 1.1.15 to 1.1.16
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/popover/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/popover)

Updates `@radix-ui/react-radio-group` from 1.3.8 to 1.4.0
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/radio-group/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/radio-group)

Updates `@radix-ui/react-scroll-area` from 1.2.10 to 1.2.11
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/scroll-area/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/scroll-area)

Updates `@radix-ui/react-select` from 2.2.6 to 2.3.0
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/select/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/select)

Updates `@radix-ui/react-separator` from 1.1.8 to 1.1.9
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/separator/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/separator)

Updates `@radix-ui/react-slot` from 1.2.4 to 1.2.5
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/slot/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/slot)

Updates `@radix-ui/react-switch` from 1.2.6 to 1.3.0
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/switch/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/switch)

Updates `@radix-ui/react-tabs` from 1.1.13 to 1.1.14
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/tabs/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/tabs)

Updates `@radix-ui/react-toggle` from 1.1.10 to 1.1.11
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/toggle/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/toggle)

Updates `@radix-ui/react-toggle-group` from 1.1.11 to 1.1.12
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/toggle-group/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/toggle-group)

Updates `@radix-ui/react-tooltip` from 1.2.8 to 1.2.9
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/tooltip/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/tooltip)

Updates `@radix-ui/react-use-controllable-state` from 1.2.2 to 1.2.3
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/use-controllable-state/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/use-controllable-state)

Updates `@tabler/icons-react` from 3.35.0 to 3.44.0
- [Release notes](https://github.com/tabler/tabler-icons/releases)
- [Commits](https://github.com/tabler/tabler-icons/commits/v3.44.0/packages/icons-react)

Updates `@tanstack/react-form` from 1.25.0 to 1.33.0
- [Release notes](https://github.com/TanStack/form/releases)
- [Changelog](https://github.com/TanStack/form/blob/main/packages/react-form/CHANGELOG.md)
- [Commits](https://github.com/TanStack/form/commits/@tanstack/react-form@1.33.0/packages/react-form)

Updates `@tanstack/zod-adapter` from 1.136.18 to 1.167.0
- [Release notes](https://github.com/TanStack/router/releases)
- [Changelog](https://github.com/TanStack/router/blob/main/packages/zod-adapter/CHANGELOG.md)
- [Commits](https://github.com/TanStack/router/commits/@tanstack/zod-adapter@1.167.0/packages/zod-adapter)

Updates `@vercel/toolbar` from 0.1.41 to 0.2.6
- [Commits](https://github.com/vercel/next-live-mode/commits/HEAD/packages/toolbar)

Updates `flags` from 4.0.2 to 4.1.0
- [Release notes](https://github.com/vercel/flags/releases)
- [Commits](https://github.com/vercel/flags/compare/flags@4.0.2...flags@4.1.0)

Updates `motion` from 12.23.24 to 12.40.0
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v12.23.24...v12.40.0)

Updates `next-themes` from 0.2.1 to 0.4.6
- [Release notes](https://github.com/pacocoursey/next-themes/releases)
- [Commits](https://github.com/pacocoursey/next-themes/commits/v0.4.6)

Updates `posthog-js` from 1.285.1 to 1.381.0
- [Release notes](https://github.com/PostHog/posthog-js/releases)
- [Changelog](https://github.com/PostHog/posthog-js/blob/main/CHANGELOG.md)
- [Commits](https://github.com/PostHog/posthog-js/compare/posthog-js@1.285.1...posthog-js@1.381.0)

Updates `react` from 19.2.0 to 19.2.7
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.7/packages/react)

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

Updates `react-dom` from 19.2.0 to 19.2.7
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.7/packages/react-dom)

Updates `@types/react-dom` from 19.2.2 to 19.2.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `rehype-pretty-code` from 0.14.1 to 0.14.3
- [Release notes](https://github.com/rehype-pretty/rehype-pretty-code/releases)
- [Changelog](https://github.com/rehype-pretty/rehype-pretty-code/blob/master/packages/core/CHANGELOG.md)
- [Commits](https://github.com/rehype-pretty/rehype-pretty-code/commits/rehype-pretty-code@0.14.3/packages/core)

Updates `unist-util-visit` from 5.0.0 to 5.1.0
- [Release notes](https://github.com/syntax-tree/unist-util-visit/releases)
- [Commits](syntax-tree/unist-util-visit@5.0.0...5.1.0)

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

Updates `@types/react-dom` from 19.2.2 to 19.2.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

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

Updates `pagefind` from 1.4.0 to 1.5.2
- [Release notes](https://github.com/Pagefind/pagefind/releases)
- [Changelog](https://github.com/Pagefind/pagefind/blob/main/CHANGELOG.md)
- [Commits](Pagefind/pagefind@v1.4.0...v1.5.2)

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

Updates `tsx` from 4.20.6 to 4.22.4
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.20.6...v4.22.4)

Updates `@514labs/moose-cli-darwin-arm64` from 0.3.205 to 0.6.533
- [Release notes](https://github.com/514-labs/moosestack/releases)
- [Commits](v0.3.205...v0.6.533)

Updates `@514labs/moose-cli-darwin-x64` from 0.3.205 to 0.6.171

Updates `@514labs/moose-cli-linux-arm64` from 0.3.205 to 0.6.533
- [Release notes](https://github.com/514-labs/moosestack/releases)
- [Commits](v0.3.205...v0.6.533)

Updates `@514labs/moose-cli-linux-x64` from 0.3.205 to 0.6.533
- [Release notes](https://github.com/514-labs/moosestack/releases)
- [Commits](v0.3.205...v0.6.533)

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

Updates `typescript-eslint` from 8.55.0 to 8.60.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.60.1/packages/typescript-eslint)

Updates `@radix-ui/react-hover-card` from 1.1.15 to 1.1.16
- [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/hover-card/CHANGELOG.md)
- [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/hover-card)

Updates `mixpanel` from 0.18.1 to 0.22.0
- [Release notes](https://github.com/mixpanel/mixpanel-node/releases)
- [Changelog](https://github.com/mixpanel/mixpanel-node/blob/master/packages/mixpanel/history.md)
- [Commits](https://github.com/mixpanel/mixpanel-node/commits/HEAD/packages/mixpanel)

Updates `eslint-config-turbo` from 2.6.0 to 2.9.16
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md)
- [Commits](https://github.com/vercel/turborepo/commits/v2.9.16/packages/eslint-config-turbo)

Updates `tsup` from 8.5.0 to 8.5.1
- [Release notes](https://github.com/egoist/tsup/releases)
- [Commits](egoist/tsup@v8.5.0...v8.5.1)

Updates `@aws-sdk/client-s3` from 3.922.0 to 3.1063.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-s3/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1063.0/clients/client-s3)

Updates `@clickhouse/client` from 1.8.1 to 1.20.0
- [Release notes](https://github.com/ClickHouse/clickhouse-js/releases)
- [Changelog](https://github.com/ClickHouse/clickhouse-js/blob/main/CHANGELOG.md)
- [Commits](ClickHouse/clickhouse-js@1.8.1...1.20.0)

Updates `@clickhouse/client-web` from 1.5.0 to 1.20.0
- [Release notes](https://github.com/ClickHouse/clickhouse-js/releases)
- [Changelog](https://github.com/ClickHouse/clickhouse-js/blob/main/CHANGELOG.md)
- [Commits](ClickHouse/clickhouse-js@1.5.0...1.20.0)

Updates `@temporalio/activity` from 1.13.1 to 1.17.2
- [Release notes](https://github.com/temporalio/sdk-typescript/releases)
- [Changelog](https://github.com/temporalio/sdk-typescript/blob/main/CHANGELOG.md)
- [Commits](https://github.com/temporalio/sdk-typescript/commits/1.17.2/packages/activity)

Updates `@temporalio/client` from 1.13.1 to 1.17.2
- [Release notes](https://github.com/temporalio/sdk-typescript/releases)
- [Changelog](https://github.com/temporalio/sdk-typescript/blob/main/CHANGELOG.md)
- [Commits](https://github.com/temporalio/sdk-typescript/commits/1.17.2/packages/client)

Updates `@temporalio/common` from 1.13.1 to 1.17.2
- [Release notes](https://github.com/temporalio/sdk-typescript/releases)
- [Changelog](https://github.com/temporalio/sdk-typescript/blob/main/CHANGELOG.md)
- [Commits](https://github.com/temporalio/sdk-typescript/commits/1.17.2/packages/common)

Updates `@temporalio/worker` from 1.13.1 to 1.17.2
- [Release notes](https://github.com/temporalio/sdk-typescript/releases)
- [Changelog](https://github.com/temporalio/sdk-typescript/blob/main/CHANGELOG.md)
- [Commits](https://github.com/temporalio/sdk-typescript/commits/1.17.2/packages/worker)

Updates `@temporalio/workflow` from 1.13.1 to 1.17.2
- [Release notes](https://github.com/temporalio/sdk-typescript/releases)
- [Changelog](https://github.com/temporalio/sdk-typescript/blob/main/CHANGELOG.md)
- [Commits](https://github.com/temporalio/sdk-typescript/commits/1.17.2/packages/workflow)

Updates `fastq` from 1.17.1 to 1.20.1
- [Release notes](https://github.com/mcollina/fastq/releases)
- [Commits](mcollina/fastq@v1.17.1...v1.20.1)

Updates `@modelcontextprotocol/sdk` from 1.27.1 to 1.29.0
- [Release notes](https://github.com/modelcontextprotocol/typescript-sdk/releases)
- [Commits](modelcontextprotocol/typescript-sdk@v1.27.1...v1.29.0)

Updates `@bufbuild/buf` from 1.59.0 to 1.70.0
- [Release notes](https://github.com/bufbuild/buf/releases)
- [Changelog](https://github.com/bufbuild/buf/blob/main/CHANGELOG.md)
- [Commits](bufbuild/buf@v1.59.0...v1.70.0)

Updates `rimraf` from 6.1.0 to 6.1.3
- [Changelog](https://github.com/isaacs/rimraf/blob/main/CHANGELOG.md)
- [Commits](isaacs/rimraf@v6.1.0...v6.1.3)

Updates `@anthropic-ai/sdk` from 0.71.2 to 0.101.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.71.2...sdk-v0.101.0)

Updates `@grpc/grpc-js` from 1.14.3 to 1.14.4
- [Release notes](https://github.com/grpc/grpc-node/releases)
- [Commits](https://github.com/grpc/grpc-node/compare/@grpc/grpc-js@1.14.3...@grpc/grpc-js@1.14.4)

Updates `@grpc/proto-loader` from 0.8.0 to 0.8.1
- [Release notes](https://github.com/grpc/grpc-node/releases)
- [Commits](https://github.com/grpc/grpc-node/compare/@grpc/proto-loader@0.8.0...@grpc/proto-loader@0.8.1)

Updates `@opentelemetry/otlp-transformer` from 0.211.0 to 0.218.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@experimental/v0.211.0...experimental/v0.218.0)

Updates `axios` from 1.7.9 to 1.17.0
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.7.9...v1.17.0)

Updates `eslint-config-next` from 16.1.6 to 16.2.7
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v16.2.7/packages/eslint-config-next)

Updates `js-yaml` from 4.1.1 to 4.2.0
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodeca/js-yaml/commits)

Updates `mermaid` from 11.12.0 to 11.15.0
- [Release notes](https://github.com/mermaid-js/mermaid/releases)
- [Commits](https://github.com/mermaid-js/mermaid/compare/mermaid@11.12.0...mermaid@11.15.0)

Updates `next` from 16.1.6 to 16.2.7
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v16.1.6...v16.2.7)

Updates `posthog-node` from 5.21.0 to 5.36.3
- [Release notes](https://github.com/PostHog/posthog-js/releases)
- [Changelog](https://github.com/PostHog/posthog-js/blob/main/packages/node/CHANGELOG.md)
- [Commits](https://github.com/PostHog/posthog-js/commits/posthog-node@5.36.3/packages/node)

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)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.4.16
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: prettier
  dependency-version: 3.8.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: prettier-plugin-tailwindcss
  dependency-version: 0.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: turbo
  dependency-version: 2.9.16
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: "@icons-pack/react-simple-icons"
  dependency-version: 13.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: "@mux/mux-player-react"
  dependency-version: 3.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: "@next/mdx"
  dependency-version: 16.2.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: "@radix-ui/react-accordion"
  dependency-version: 1.2.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: "@radix-ui/react-avatar"
  dependency-version: 1.1.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: "@radix-ui/react-checkbox"
  dependency-version: 1.3.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: "@radix-ui/react-collapsible"
  dependency-version: 1.1.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: "@radix-ui/react-dialog"
  dependency-version: 1.1.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: "@radix-ui/react-dropdown-menu"
  dependency-version: 2.1.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: "@radix-ui/react-label"
  dependency-version: 2.1.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: "@radix-ui/react-navigation-menu"
  dependency-version: 1.2.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: "@radix-ui/react-popover"
  dependency-version: 1.1.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: "@radix-ui/react-radio-group"
  dependency-version: 1.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: "@radix-ui/react-scroll-area"
  dependency-version: 1.2.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: "@radix-ui/react-select"
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: "@radix-ui/react-separator"
  dependency-version: 1.1.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: "@radix-ui/react-slot"
  dependency-version: 1.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: "@radix-ui/react-switch"
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: "@radix-ui/react-tabs"
  dependency-version: 1.1.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: "@radix-ui/react-toggle"
  dependency-version: 1.1.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: "@radix-ui/react-toggle-group"
  dependency-version: 1.1.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: "@radix-ui/react-tooltip"
  dependency-version: 1.2.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: "@radix-ui/react-use-controllable-state"
  dependency-version: 1.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: "@tabler/icons-react"
  dependency-version: 3.44.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: "@tanstack/react-form"
  dependency-version: 1.33.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: "@tanstack/zod-adapter"
  dependency-version: 1.167.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: "@vercel/toolbar"
  dependency-version: 0.2.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: flags
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: motion
  dependency-version: 12.40.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: next-themes
  dependency-version: 0.4.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: posthog-js
  dependency-version: 1.381.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: react
  dependency-version: 19.2.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: "@types/react"
  dependency-version: 19.2.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: react-dom
  dependency-version: 19.2.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: "@types/react-dom"
  dependency-version: 19.2.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: rehype-pretty-code
  dependency-version: 0.14.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: unist-util-visit
  dependency-version: 5.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: "@types/react"
  dependency-version: 19.2.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: "@types/react-dom"
  dependency-version: 19.2.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: autoprefixer
  dependency-version: 10.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: pagefind
  dependency-version: 1.5.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: postcss
  dependency-version: 8.5.15
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: tsx
  dependency-version: 4.22.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: "@514labs/moose-cli-darwin-arm64"
  dependency-version: 0.6.533
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: "@514labs/moose-cli-darwin-x64"
  dependency-version: 0.6.171
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: "@514labs/moose-cli-linux-arm64"
  dependency-version: 0.6.533
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: "@514labs/moose-cli-linux-x64"
  dependency-version: 0.6.533
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: "@types/vscode"
  dependency-version: 1.120.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: typescript-eslint
  dependency-version: 8.60.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: "@radix-ui/react-hover-card"
  dependency-version: 1.1.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: mixpanel
  dependency-version: 0.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: eslint-config-turbo
  dependency-version: 2.9.16
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: tsup
  dependency-version: 8.5.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: "@aws-sdk/client-s3"
  dependency-version: 3.1063.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: "@clickhouse/client"
  dependency-version: 1.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: "@clickhouse/client-web"
  dependency-version: 1.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: "@temporalio/activity"
  dependency-version: 1.17.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: "@temporalio/client"
  dependency-version: 1.17.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: "@temporalio/common"
  dependency-version: 1.17.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: "@temporalio/worker"
  dependency-version: 1.17.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: "@temporalio/workflow"
  dependency-version: 1.17.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: fastq
  dependency-version: 1.20.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: "@modelcontextprotocol/sdk"
  dependency-version: 1.29.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: "@bufbuild/buf"
  dependency-version: 1.70.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: rimraf
  dependency-version: 6.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: "@anthropic-ai/sdk"
  dependency-version: 0.101.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: "@grpc/grpc-js"
  dependency-version: 1.14.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: "@grpc/proto-loader"
  dependency-version: 0.8.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: workspace-minor-patch
- dependency-name: "@opentelemetry/otlp-transformer"
  dependency-version: 0.218.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: axios
  dependency-version: 1.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: eslint-config-next
  dependency-version: 16.2.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: js-yaml
  dependency-version: 4.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: mermaid
  dependency-version: 11.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: next
  dependency-version: 16.2.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: posthog-node
  dependency-version: 5.36.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
- dependency-name: yaml
  dependency-version: 2.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: workspace-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Jun 6, 2026

Copy link
Copy Markdown
Contributor Author

Labels

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

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

@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Jun 6, 2026
@vercel

vercel Bot commented Jun 6, 2026

Copy link
Copy Markdown

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

Project Deployment Actions Updated (UTC)
docs-v2 Error Error Jun 6, 2026 3:36am

Request Review

@cursor cursor Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes and found 1 potential issue.

Fix All in Cursor

❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.

Reviewed by Cursor Bugbot for commit 871b7d9. Configure here.

"@514labs/moose-cli-darwin-arm64": "0.6.533",
"@514labs/moose-cli-darwin-x64": "0.6.171",
"@514labs/moose-cli-linux-arm64": "0.6.533",
"@514labs/moose-cli-linux-x64": "0.6.533"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Moose CLI x64 version skew

Medium Severity

@514labs/moose-cli-darwin-x64 is pinned to 0.6.171 while the other platform optional dependencies are pinned to 0.6.533. Intel macOS installs resolve a different native binary than arm64 and Linux, so CLI behavior and capabilities can diverge across machines and from what release-cli.sh expects (one version for all platforms).

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 871b7d9. Configure here.

@dependabot @github

dependabot Bot commented on behalf of github Jun 10, 2026

Copy link
Copy Markdown
Contributor Author

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/workspace-minor-patch-9205e00110 branch June 10, 2026 19:39
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.

1 participant