chore(deps): bump the minor-and-patch group across 3 directories with 42 updates - #95
Conversation
📝 WalkthroughWalkthroughThis PR updates dependency and devDependency version ranges across three workspace package manifests: ChangesDependency Version Upgrades
🎯 3 (Moderate) | ⏱️ ~20 minutes 🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Comment |
There was a problem hiding this comment.
Actionable comments posted: 3
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@vis/package.json`:
- Line 20: Update the core Tailwind package to match the upgraded plugin: change
the tailwindcss dependency version in package.json to align with
`@tailwindcss/vite` (e.g., bump "tailwindcss" to ^4.3.0), then reinstall/update
the lockfile (npm/yarn/pnpm install) and run the build to confirm no breaking
changes; also verify peerDependencies for `@tailwindcss/vite` and adjust if
necessary.
In `@web/package.json`:
- Line 37: The dependency versions for the Tailwind ecosystem are inconsistent:
update the "tailwindcss" entry to match the "`@tailwindcss/vite`" plugin bump
(i.e., align versions so both use ^4.3.0) by editing package.json entries for
"`@tailwindcss/vite`" and "tailwindcss" to the same compatible version, then run
the package manager install and update lockfile to ensure the core package and
Vite plugin are in sync.
- Line 18: The package bump includes js-yaml 4.2.0 which changes parsing
behavior; audit all usages of the js-yaml API (imports from "js-yaml" and calls
to load, loadAll, safeLoad, safeLoadAll, and dump) to confirm we don't rely on
old underscore-number scalar handling or deprecated loader options, update call
sites to use the new loader options explicitly (e.g., pass schema/loader options
to jsYaml.load) or migrate to the recommended APIs, add unit tests for any YAML
parsing code paths to cover edge cases noted in the 4.2.0 changelog, and update
package.json/deps or add compatibility shims if any code cannot be made
compatible.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: ASSERTIVE
Plan: Pro Plus
Run ID: 7e142c22-98e5-44b4-b23b-8209267b9831
⛔ Files ignored due to path filters (3)
packages/install-counter-worker/package-lock.jsonis excluded by!**/package-lock.jsonvis/package-lock.jsonis excluded by!**/package-lock.jsonweb/package-lock.jsonis excluded by!**/package-lock.json
📒 Files selected for processing (3)
packages/install-counter-worker/package.jsonvis/package.jsonweb/package.json
| "@radix-ui/react-separator": "^1.1.9", | ||
| "@radix-ui/react-tabs": "^1.1.14", | ||
| "@radix-ui/react-tooltip": "^1.2.9", | ||
| "@tailwindcss/vite": "^4.3.0", |
There was a problem hiding this comment.
Tailwind version mismatch: plugin upgraded but core package not upgraded.
@tailwindcss/vite was bumped to ^4.3.0 (line 20) but tailwindcss remains at ^4.1.17 (line 31). The Vite plugin may expect features or APIs from Tailwind CSS 4.3.0 that the core package doesn't provide, potentially causing build failures or CSS processing issues.
🔧 Proposed fix
"tailwind-merge": "^3.6.0",
- "tailwindcss": "^4.1.17",
+ "tailwindcss": "^4.3.0",
"tw-animate-css": "^1.4.0"Also applies to: 31-31
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@vis/package.json` at line 20, Update the core Tailwind package to match the
upgraded plugin: change the tailwindcss dependency version in package.json to
align with `@tailwindcss/vite` (e.g., bump "tailwindcss" to ^4.3.0), then
reinstall/update the lockfile (npm/yarn/pnpm install) and run the build to
confirm no breaking changes; also verify peerDependencies for `@tailwindcss/vite`
and adjust if necessary.
| }, | ||
| "dependencies": { | ||
| "@codemirror/lang-yaml": "^6.1.2", | ||
| "@codemirror/lang-yaml": "^6.1.3", |
There was a problem hiding this comment.
🧩 Analysis chain
🌐 Web query:
Are there breaking changes in js-yaml 4.2.0, motion 12.40.0, @xyflow/react 12.11.0, react-resizable-panels 4.11.2, react-error-boundary 6.1.2, or swr 2.4.1?
💡 Result:
Based on the latest available information as of June 9, 2026, the status of these packages regarding breaking changes in the specified versions is as follows: - js-yaml (4.2.0): While this is a minor/patch version, the changelog indicates changes that may impact behavior, such as stopping the resolution of numbers with underscores as numeric scalars [1][2], adding new loader options (maxDepth and maxMergeSeqLength) [1][2], and no longer keeping dist files in the repository [1]. It also contains several bug fixes and performance improvements [1]. - motion (12.40.0): This release is feature-driven and contains fixes rather than stated breaking changes [3][4]. It introduces the path option to transition and an arc() function [3][4]. - @xyflow/react (12.11.0): This release includes a new feature (autoPanOnSelection) and patch fixes [5][6]. The maintainers explicitly stated that no public API or exported entities were changed in this version [7]. - react-resizable-panels (4.11.2): This version is a bug fix release that calculates rem-based sizes relative to the owner document rather than the body [8]. - react-error-boundary (6.1.2): This release consists of documentation and README updates [9]. - swr (2.4.1): This appears to be a metadata-only version update following the 2.4.0 release [10][11], which itself focused on fixes and test infrastructure [12][13]. Always review the official changelog for each package before upgrading to ensure your specific implementation is not affected by subtle behavioral adjustments. [1][3][5][14][8][9][11]
Citations:
- 1: https://github.com/nodeca/js-yaml/blob/HEAD/CHANGELOG.md
- 2: fix(deps): update dependency js-yaml to v4.2.0 (git-push-service) quipper/monorepo-deploy-actions#3080
- 3: https://github.com/motiondivision/motion/blob/HEAD/CHANGELOG.md
- 4: https://github.com/framer/motion/blob/main/CHANGELOG.md
- 5: https://github.com/xyflow/xyflow/releases/tag/%40xyflow/react%4012.11.0
- 6: https://reactflow.dev/whats-new/2026-06-01
- 7: Release packages xyflow/xyflow#5768
- 8: https://github.com/bvaughn/react-resizable-panels/blob/main/CHANGELOG.md
- 9: https://github.com/bvaughn/react-error-boundary/releases/tag/6.1.2
- 10: https://github.com/vercel/swr/tree/refs/tags/v2.4.1
- 11: vercel/swr@5fa2952
- 12: https://github.com/vercel/swr/releases/tag/v2.4.0
- 13: https://releases.sh/vercel/swr.md
- 14: https://github.com/xyflow/xyflow/blob/main/packages/react/CHANGELOG.md
🌐 Web query:
Are there breaking changes in @uiw/react-codemirror4.25.10 or@codemirror/lang-yaml 6.1.3?
💡 Result:
Based on the official release information, neither @uiw/react-codemirror 4.25.10 nor @codemirror/lang-yaml 6.1.3 contains breaking changes. Both updates are classified as maintenance or patch releases. @uiw/react-codemirror 4.25.10: This release consists primarily of documentation updates and internal chore tasks (e.g., updating READMEs and package sponsorship information) [1][2][3]. There are no functional code changes that introduce breaking changes to the public API [1]. @codemirror/lang-yaml 6.1.3: This is a patch release intended to fix a specific regression in indentation caused by a bug in a dependency (@lezer/lr 1.4.7) [4][5]. It does not introduce breaking API changes [4][5]. Top results: [1][2][4][5]
Citations:
- 1: uiwjs/react-codemirror@v4.25.9...v4.25.10
- 2: https://github.com/uiwjs/react-codemirror/releases/tag/v4.25.10
- 3: https://npmx.dev/package-changelog/@uiw/react-codemirror/v/4.25.10
- 4: https://npmx.dev/package-changelog/@codemirror/lang-yaml/v/6.1.3
- 5: codemirror/lang-yaml@6.1.2...6.1.3
Recheck js-yaml behavior change; other listed upgrades look non-breaking.
js-yaml4.2.0: changelog indicates behavior-affecting adjustments (e.g., underscore-number scalar handling + new loader options). Confirm our YAML parsing doesn’t rely on the old behavior.motion12.40.0,@xyflow/react12.11.0,react-resizable-panels4.11.2,react-error-boundary6.1.2,swr2.4.1,@uiw/react-codemirror4.25.10,@codemirror/lang-yaml6.1.3: release notes indicate no breaking/public API changes in these versions.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@web/package.json` at line 18, The package bump includes js-yaml 4.2.0 which
changes parsing behavior; audit all usages of the js-yaml API (imports from
"js-yaml" and calls to load, loadAll, safeLoad, safeLoadAll, and dump) to
confirm we don't rely on old underscore-number scalar handling or deprecated
loader options, update call sites to use the new loader options explicitly
(e.g., pass schema/loader options to jsYaml.load) or migrate to the recommended
APIs, add unit tests for any YAML parsing code paths to cover edge cases noted
in the 4.2.0 changelog, and update package.json/deps or add compatibility shims
if any code cannot be made compatible.
… 42 updates Bumps the minor-and-patch group with 2 updates in the /packages/install-counter-worker directory: [@cloudflare/workers-types](https://github.com/cloudflare/workerd) and [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler). Bumps the minor-and-patch group with 14 updates in the /vis directory: | Package | From | To | | --- | --- | --- | | [@radix-ui/react-collapsible](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/collapsible) | `1.1.12` | `1.1.13` | | [@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-tabs](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/tabs) | `1.1.13` | `1.1.14` | | [@radix-ui/react-tooltip](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/tooltip) | `1.2.8` | `1.2.9` | | [@tailwindcss/vite](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite) | `4.2.1` | `4.3.0` | | [radix-ui](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/radix-ui) | `1.4.3` | `1.5.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.4` | `19.2.7` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.14` | `19.2.17` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.4` | `19.2.7` | | [react-virtuoso](https://github.com/petyosi/react-virtuoso/tree/HEAD/packages/react-virtuoso) | `4.17.0` | `4.18.7` | | [streamdown](https://github.com/vercel/streamdown/tree/HEAD/packages/streamdown) | `2.3.0` | `2.5.0` | | [tailwind-merge](https://github.com/dcastil/tailwind-merge) | `3.5.0` | `3.6.0` | Bumps the minor-and-patch group with 28 updates in the /web directory: | Package | From | To | | --- | --- | --- | | [@radix-ui/react-collapsible](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/collapsible) | `1.1.12` | `1.1.13` | | [@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-tabs](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/tabs) | `1.1.13` | `1.1.14` | | [@radix-ui/react-tooltip](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/tooltip) | `1.2.8` | `1.2.9` | | [@tailwindcss/vite](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite) | `4.1.18` | `4.3.0` | | [radix-ui](https://github.com/radix-ui/primitives/tree/HEAD/packages/react/radix-ui) | `1.4.3` | `1.5.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.3` | `19.2.7` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.9` | `19.2.17` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.3` | `19.2.7` | | [react-virtuoso](https://github.com/petyosi/react-virtuoso/tree/HEAD/packages/react-virtuoso) | `4.17.0` | `4.18.7` | | [tailwind-merge](https://github.com/dcastil/tailwind-merge) | `3.4.0` | `3.6.0` | | [@codemirror/lang-yaml](https://github.com/codemirror/lang-yaml) | `6.1.2` | `6.1.3` | | [@uiw/react-codemirror](https://github.com/uiwjs/react-codemirror) | `4.25.4` | `4.25.10` | | [@xyflow/react](https://github.com/xyflow/xyflow/tree/HEAD/packages/react) | `12.10.0` | `12.11.0` | | [js-yaml](https://github.com/nodeca/js-yaml) | `4.1.1` | `4.2.0` | | [motion](https://github.com/motiondivision/motion) | `12.29.2` | `12.40.0` | | [nanoid](https://github.com/ai/nanoid) | `5.1.6` | `5.1.11` | | [react-error-boundary](https://github.com/bvaughn/react-error-boundary) | `6.1.0` | `6.1.2` | | [react-resizable-panels](https://github.com/bvaughn/react-resizable-panels) | `4.5.2` | `4.11.2` | | [react-scan](https://github.com/aidenybai/react-scan) | `0.4.3` | `0.5.7` | | [swr](https://github.com/vercel/swr) | `2.3.8` | `2.4.1` | | [use-stick-to-bottom](https://github.com/samdenty/use-stick-to-bottom) | `1.1.2` | `1.1.6` | | [zustand](https://github.com/pmndrs/zustand) | `5.0.10` | `5.0.14` | | [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.3.8` | `2.4.16` | | [ultracite](https://github.com/haydenbleasel/ultracite) | `7.1.1` | `7.8.2` | | [vite-plugin-node-polyfills](https://github.com/davidmyersdev/vite-plugin-node-polyfills) | `0.24.0` | `0.28.0` | Updates `@cloudflare/workers-types` from 4.20260524.1 to 4.20260609.1 - [Release notes](https://github.com/cloudflare/workerd/releases) - [Changelog](https://github.com/cloudflare/workerd/blob/main/RELEASE.md) - [Commits](https://github.com/cloudflare/workerd/commits) Updates `wrangler` from 4.94.0 to 4.99.0 - [Release notes](https://github.com/cloudflare/workers-sdk/releases) - [Commits](https://github.com/cloudflare/workers-sdk/commits/wrangler@4.99.0/packages/wrangler) 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-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-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-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 `@tailwindcss/vite` from 4.2.1 to 4.3.0 - [Release notes](https://github.com/tailwindlabs/tailwindcss/releases) - [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md) - [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.0/packages/@tailwindcss-vite) Updates `radix-ui` from 1.4.3 to 1.5.0 - [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/radix-ui/CHANGELOG.md) - [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/radix-ui) Updates `react` from 19.2.4 to 19.2.7 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.7/packages/react) Updates `@types/react` from 19.2.14 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.4 to 19.2.7 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.7/packages/react-dom) Updates `react-virtuoso` from 4.17.0 to 4.18.7 - [Release notes](https://github.com/petyosi/react-virtuoso/releases) - [Changelog](https://github.com/petyosi/react-virtuoso/blob/main/packages/react-virtuoso/CHANGELOG.md) - [Commits](https://github.com/petyosi/react-virtuoso/commits/react-virtuoso@4.18.7/packages/react-virtuoso) Updates `streamdown` from 2.3.0 to 2.5.0 - [Release notes](https://github.com/vercel/streamdown/releases) - [Changelog](https://github.com/vercel/streamdown/blob/main/packages/streamdown/CHANGELOG.md) - [Commits](https://github.com/vercel/streamdown/commits/streamdown@2.5.0/packages/streamdown) Updates `tailwind-merge` from 3.5.0 to 3.6.0 - [Release notes](https://github.com/dcastil/tailwind-merge/releases) - [Commits](dcastil/tailwind-merge@v3.5.0...v3.6.0) Updates `tailwindcss` from 4.2.1 to 4.3.0 - [Release notes](https://github.com/tailwindlabs/tailwindcss/releases) - [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md) - [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.0/packages/tailwindcss) Updates `@types/react` from 19.2.14 to 19.2.17 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) 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-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-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-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 `@tailwindcss/vite` from 4.2.1 to 4.3.0 - [Release notes](https://github.com/tailwindlabs/tailwindcss/releases) - [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md) - [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.0/packages/@tailwindcss-vite) Updates `radix-ui` from 1.4.3 to 1.5.0 - [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/radix-ui/CHANGELOG.md) - [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/radix-ui) Updates `react` from 19.2.4 to 19.2.7 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.7/packages/react) Updates `react-dom` from 19.2.4 to 19.2.7 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.7/packages/react-dom) Updates `react-virtuoso` from 4.17.0 to 4.18.7 - [Release notes](https://github.com/petyosi/react-virtuoso/releases) - [Changelog](https://github.com/petyosi/react-virtuoso/blob/main/packages/react-virtuoso/CHANGELOG.md) - [Commits](https://github.com/petyosi/react-virtuoso/commits/react-virtuoso@4.18.7/packages/react-virtuoso) Updates `streamdown` from 2.3.0 to 2.5.0 - [Release notes](https://github.com/vercel/streamdown/releases) - [Changelog](https://github.com/vercel/streamdown/blob/main/packages/streamdown/CHANGELOG.md) - [Commits](https://github.com/vercel/streamdown/commits/streamdown@2.5.0/packages/streamdown) Updates `tailwind-merge` from 3.5.0 to 3.6.0 - [Release notes](https://github.com/dcastil/tailwind-merge/releases) - [Commits](dcastil/tailwind-merge@v3.5.0...v3.6.0) Updates `tailwindcss` from 4.2.1 to 4.3.0 - [Release notes](https://github.com/tailwindlabs/tailwindcss/releases) - [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md) - [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.0/packages/tailwindcss) Updates `@types/react` from 19.2.14 to 19.2.17 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) 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-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-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-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 `@tailwindcss/vite` from 4.1.18 to 4.3.0 - [Release notes](https://github.com/tailwindlabs/tailwindcss/releases) - [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md) - [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.0/packages/@tailwindcss-vite) Updates `radix-ui` from 1.4.3 to 1.5.0 - [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/radix-ui/CHANGELOG.md) - [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/radix-ui) Updates `react` from 19.2.3 to 19.2.7 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.7/packages/react) Updates `@types/react` from 19.2.9 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.3 to 19.2.7 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.7/packages/react-dom) Updates `react-virtuoso` from 4.17.0 to 4.18.7 - [Release notes](https://github.com/petyosi/react-virtuoso/releases) - [Changelog](https://github.com/petyosi/react-virtuoso/blob/main/packages/react-virtuoso/CHANGELOG.md) - [Commits](https://github.com/petyosi/react-virtuoso/commits/react-virtuoso@4.18.7/packages/react-virtuoso) Updates `tailwind-merge` from 3.4.0 to 3.6.0 - [Release notes](https://github.com/dcastil/tailwind-merge/releases) - [Commits](dcastil/tailwind-merge@v3.5.0...v3.6.0) Updates `tailwindcss` from 4.1.18 to 4.3.0 - [Release notes](https://github.com/tailwindlabs/tailwindcss/releases) - [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md) - [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.0/packages/tailwindcss) Updates `@types/react` from 19.2.9 to 19.2.17 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@codemirror/lang-yaml` from 6.1.2 to 6.1.3 - [Changelog](https://github.com/codemirror/lang-yaml/blob/main/CHANGELOG.md) - [Commits](codemirror/lang-yaml@6.1.2...6.1.3) 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-context-menu` from 2.2.16 to 2.3.0 - [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/context-menu/CHANGELOG.md) - [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/context-menu) 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-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 `@radix-ui/react-progress` from 1.1.8 to 1.1.9 - [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/progress/CHANGELOG.md) - [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/progress) 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 `@tailwindcss/vite` from 4.1.18 to 4.3.0 - [Release notes](https://github.com/tailwindlabs/tailwindcss/releases) - [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md) - [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.0/packages/@tailwindcss-vite) Updates `@uiw/react-codemirror` from 4.25.4 to 4.25.10 - [Release notes](https://github.com/uiwjs/react-codemirror/releases) - [Commits](uiwjs/react-codemirror@v4.25.4...v4.25.10) Updates `@xyflow/react` from 12.10.0 to 12.11.0 - [Release notes](https://github.com/xyflow/xyflow/releases) - [Changelog](https://github.com/xyflow/xyflow/blob/main/packages/react/CHANGELOG.md) - [Commits](https://github.com/xyflow/xyflow/commits/@xyflow/react@12.11.0/packages/react) 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 `motion` from 12.29.2 to 12.40.0 - [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md) - [Commits](motiondivision/motion@v12.29.2...v12.40.0) Updates `nanoid` from 5.1.6 to 5.1.11 - [Release notes](https://github.com/ai/nanoid/releases) - [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md) - [Commits](ai/nanoid@5.1.6...5.1.11) Updates `radix-ui` from 1.4.3 to 1.5.0 - [Changelog](https://github.com/radix-ui/primitives/blob/main/packages/react/radix-ui/CHANGELOG.md) - [Commits](https://github.com/radix-ui/primitives/commits/HEAD/packages/react/radix-ui) Updates `react` from 19.2.3 to 19.2.7 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.7/packages/react) Updates `react-dom` from 19.2.3 to 19.2.7 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.7/packages/react-dom) Updates `react-error-boundary` from 6.1.0 to 6.1.2 - [Release notes](https://github.com/bvaughn/react-error-boundary/releases) - [Commits](bvaughn/react-error-boundary@6.1.0...6.1.2) Updates `react-resizable-panels` from 4.5.2 to 4.11.2 - [Release notes](https://github.com/bvaughn/react-resizable-panels/releases) - [Changelog](https://github.com/bvaughn/react-resizable-panels/blob/main/CHANGELOG.md) - [Commits](https://github.com/bvaughn/react-resizable-panels/commits) Updates `react-scan` from 0.4.3 to 0.5.7 - [Release notes](https://github.com/aidenybai/react-scan/releases) - [Commits](https://github.com/aidenybai/react-scan/commits) Updates `react-virtuoso` from 4.17.0 to 4.18.7 - [Release notes](https://github.com/petyosi/react-virtuoso/releases) - [Changelog](https://github.com/petyosi/react-virtuoso/blob/main/packages/react-virtuoso/CHANGELOG.md) - [Commits](https://github.com/petyosi/react-virtuoso/commits/react-virtuoso@4.18.7/packages/react-virtuoso) Updates `swr` from 2.3.8 to 2.4.1 - [Release notes](https://github.com/vercel/swr/releases) - [Commits](vercel/swr@v2.3.8...v2.4.1) Updates `tailwind-merge` from 3.4.0 to 3.6.0 - [Release notes](https://github.com/dcastil/tailwind-merge/releases) - [Commits](dcastil/tailwind-merge@v3.5.0...v3.6.0) Updates `tailwindcss` from 4.1.18 to 4.3.0 - [Release notes](https://github.com/tailwindlabs/tailwindcss/releases) - [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md) - [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.0/packages/tailwindcss) Updates `use-stick-to-bottom` from 1.1.2 to 1.1.6 - [Changelog](https://github.com/stackblitz-labs/use-stick-to-bottom/blob/main/CHANGELOG.md) - [Commits](https://github.com/samdenty/use-stick-to-bottom/commits) Updates `zustand` from 5.0.10 to 5.0.14 - [Release notes](https://github.com/pmndrs/zustand/releases) - [Commits](pmndrs/zustand@v5.0.10...v5.0.14) Updates `@biomejs/biome` from 2.3.8 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 `@types/react` from 19.2.9 to 19.2.17 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `ultracite` from 7.1.1 to 7.8.2 - [Release notes](https://github.com/haydenbleasel/ultracite/releases) - [Commits](https://github.com/haydenbleasel/ultracite/compare/ultracite@7.1.1...ultracite@7.8.2) Updates `vite-plugin-node-polyfills` from 0.24.0 to 0.28.0 - [Release notes](https://github.com/davidmyersdev/vite-plugin-node-polyfills/releases) - [Commits](davidmyersdev/vite-plugin-node-polyfills@v0.24.0...v0.28.0) --- updated-dependencies: - dependency-name: "@biomejs/biome" dependency-version: 2.4.16 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: "@cloudflare/workers-types" dependency-version: 4.20260609.1 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: "@codemirror/lang-yaml" dependency-version: 6.1.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@radix-ui/react-collapsible" dependency-version: 1.1.13 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@radix-ui/react-collapsible" dependency-version: 1.1.13 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@radix-ui/react-context-menu" dependency-version: 2.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: "@radix-ui/react-dialog" dependency-version: 1.1.16 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-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: minor-and-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: minor-and-patch - dependency-name: "@radix-ui/react-progress" dependency-version: 1.1.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-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: minor-and-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: minor-and-patch - dependency-name: "@radix-ui/react-select" dependency-version: 2.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: "@radix-ui/react-select" dependency-version: 2.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: "@radix-ui/react-separator" dependency-version: 1.1.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@radix-ui/react-separator" dependency-version: 1.1.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@radix-ui/react-slot" dependency-version: 1.2.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@radix-ui/react-switch" dependency-version: 1.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: "@radix-ui/react-tabs" dependency-version: 1.1.14 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@radix-ui/react-tabs" dependency-version: 1.1.14 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@radix-ui/react-toggle" dependency-version: 1.1.11 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-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: minor-and-patch - dependency-name: "@radix-ui/react-tooltip" dependency-version: 1.2.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@radix-ui/react-tooltip" dependency-version: 1.2.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-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: minor-and-patch - dependency-name: "@tailwindcss/vite" dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: "@tailwindcss/vite" dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: "@types/react" dependency-version: 19.2.17 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@types/react" dependency-version: 19.2.17 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@types/react" dependency-version: 19.2.17 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@types/react" dependency-version: 19.2.17 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@uiw/react-codemirror" dependency-version: 4.25.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: "@xyflow/react" dependency-version: 12.11.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: js-yaml dependency-version: 4.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: motion dependency-version: 12.40.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: nanoid dependency-version: 5.1.11 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: radix-ui dependency-version: 1.5.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: radix-ui dependency-version: 1.5.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: react dependency-version: 19.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: react dependency-version: 19.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: react-dom dependency-version: 19.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: react-dom dependency-version: 19.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: react-error-boundary dependency-version: 6.1.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: react-resizable-panels dependency-version: 4.11.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: react-scan dependency-version: 0.5.7 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: react-virtuoso dependency-version: 4.18.7 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: react-virtuoso dependency-version: 4.18.7 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: streamdown dependency-version: 2.5.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: swr dependency-version: 2.4.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: tailwind-merge dependency-version: 3.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: tailwind-merge dependency-version: 3.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: tailwindcss dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: tailwindcss dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: ultracite dependency-version: 7.8.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: use-stick-to-bottom dependency-version: 1.1.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: vite-plugin-node-polyfills dependency-version: 0.28.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: wrangler dependency-version: 4.99.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: minor-and-patch - dependency-name: zustand dependency-version: 5.0.14 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch ... Signed-off-by: dependabot[bot] <support@github.com>
d3647b3 to
b80ed25
Compare
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@packages/install-counter-worker/package.json`:
- Line 14: Update the package metadata to pin the minimum Node version
compatible with Wrangler 4.99.0: add an "engines" field to
packages/install-counter-worker's package.json with "node": ">=22.0.0" (or a
suitable minimum) and also update project docs (CONTRIBUTING or README) to call
out the Node >=22 requirement so contributors know to use Node 22+ when running
wrangler dev/deploy; ensure the change references the dependency name "wrangler"
so it's clear why the engine policy exists.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: ASSERTIVE
Plan: Pro Plus
Run ID: c0c3a084-e331-4c64-ac59-70dacc02d0ff
⛔ Files ignored due to path filters (3)
packages/install-counter-worker/package-lock.jsonis excluded by!**/package-lock.jsonvis/package-lock.jsonis excluded by!**/package-lock.jsonweb/package-lock.jsonis excluded by!**/package-lock.json
📒 Files selected for processing (3)
packages/install-counter-worker/package.jsonvis/package.jsonweb/package.json
| "typescript": "^5.9.3", | ||
| "vitest": "^3.2.6", | ||
| "wrangler": "^4.45.3" | ||
| "wrangler": "^4.99.0" |
There was a problem hiding this comment.
🧹 Nitpick | 🔵 Trivial
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Description: Find declared Node version requirements across the repository
echo "=== Checking Node version declarations ==="
# Check .tool-versions
if [ -f .tool-versions ]; then
echo "--- .tool-versions ---"
rg '^nodejs' .tool-versions
fi
# Check .node-version
if [ -f .node-version ]; then
echo "--- .node-version ---"
cat .node-version
fi
# Check GitHub Actions workflows
echo "--- GitHub Actions workflows ---"
rg -n 'node-version:' .github/workflows/
# Check package.json engines across workspace
echo "--- package.json engines fields ---"
fd -e json 'package\.json$' -x sh -c 'echo "File: {}"; cat {} | jq -r ".engines // empty"'
# Check pyproject.toml for any Node version mentions
if [ -f pyproject.toml ]; then
echo "--- pyproject.toml Node mentions ---"
rg -n -i 'node' pyproject.toml || echo "No Node mentions in pyproject.toml"
fiRepository: Pythoughts-labs/pythinker-code
Length of output: 863
Pin/document minimum Node version for Wrangler 4.99.0
packages/install-counter-worker/package.jsonbumpswranglerto^4.99.0(Node requirement>=22).- CI uses Node
24, but contributors without a local Node minimum/version pin can hit runtime failures when runningwrangler dev/deploy(and related dev scripts). - Add
engines: { "node": ">=22.0.0" }and/or document the minimum Node version in CONTRIBUTING/README.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@packages/install-counter-worker/package.json` at line 14, Update the package
metadata to pin the minimum Node version compatible with Wrangler 4.99.0: add an
"engines" field to packages/install-counter-worker's package.json with "node":
">=22.0.0" (or a suitable minimum) and also update project docs (CONTRIBUTING or
README) to call out the Node >=22 requirement so contributors know to use Node
22+ when running wrangler dev/deploy; ensure the change references the
dependency name "wrangler" so it's clear why the engine policy exists.
|
@dependabot recreate |
|
Superseded by #107. |
Bumps the minor-and-patch group with 2 updates in the /packages/install-counter-worker directory: @cloudflare/workers-types and wrangler.
Bumps the minor-and-patch group with 14 updates in the /vis directory:
1.1.121.1.131.2.101.2.112.2.62.3.01.1.81.1.91.1.131.1.141.2.81.2.94.2.14.3.01.4.31.5.019.2.419.2.719.2.1419.2.1719.2.419.2.74.17.04.18.72.3.02.5.03.5.03.6.0Bumps the minor-and-patch group with 28 updates in the /web directory:
1.1.121.1.131.2.101.2.112.2.62.3.01.1.81.1.91.1.131.1.141.2.81.2.94.1.184.3.01.4.31.5.019.2.319.2.719.2.919.2.1719.2.319.2.74.17.04.18.73.4.03.6.06.1.26.1.34.25.44.25.1012.10.012.11.04.1.14.2.012.29.212.40.05.1.65.1.116.1.06.1.24.5.24.11.20.4.30.5.72.3.82.4.11.1.21.1.65.0.105.0.142.3.82.4.167.1.17.8.20.24.00.28.0Updates
@cloudflare/workers-typesfrom 4.20260524.1 to 4.20260609.1Commits
Updates
wranglerfrom 4.94.0 to 4.99.0Release notes
Sourced from wrangler's releases.
... (truncated)
Commits
8a4bfe5Version Packages (#14179)f8d7700feat(wrangler): capture runtime logs and print debug timelines with `createTe...4bb572fBump the workerd-and-workers-types group with 2 updates (#14231)dcd116afeat(wrangler): improve createTestHarness() configuration setup (#14227)75e652aRevert "Make Ctrl+C triggered during the skills-install prompt dismiss it per...e13b8c0[C3] Bump@angular/createfrom 21.2.13 to 22.0.0 in /packages/create-cloudfla...a61ac29[wrangler] Add--version-tagsupport toversions deploy(#14211)24497d0Bump the workerd-and-workers-types group with 2 updates (#14217)0706fbffeat(wrangler): createTestHarness API (#14169)8923f97Preserve all deployment-affecting CLI flags in the interactive deploy config ...Updates
@radix-ui/react-collapsiblefrom 1.1.12 to 1.1.13Changelog
Sourced from @radix-ui/react-collapsible's changelog.
Commits
Maintainer changes
This version was pushed to npm by GitHub Actions, a new releaser for
@radix-ui/react-collapsiblesince your current version.Updates
@radix-ui/react-scroll-areafrom 1.2.10 to 1.2.11Changelog
Sourced from @radix-ui/react-scroll-area's changelog.
Commits
Maintainer changes
This version was pushed to npm by GitHub Actions, a new releaser for
@radix-ui/react-scroll-areasince your current version.Updates
@radix-ui/react-selectfrom 2.2.6 to 2.3.0Changelog
Sourced from @radix-ui/react-select's changelog.
Commits
Maintainer changes
This version was pushed to npm by GitHub Actions, a new releaser for
@radix-ui/react-selectsince your current version.Updates
@radix-ui/react-separatorfrom 1.1.8 to 1.1.9Changelog
Sourced from @radix-ui/react-separator's changelog.
Commits
Maintainer changes
This version was pushed to npm by GitHub Actions, a new releaser for
@radix-ui/react-separatorsince your current version.Updates
@radix-ui/react-tabsfrom 1.1.13 to 1.1.14Changelog
Sourced from @radix-ui/react-tabs's changelog.
Commits
Maintainer changes
This version was pushed to npm by GitHub Actions, a new releaser for
@radix-ui/react-tabssince your current version.Updates
@radix-ui/react-tooltipfrom 1.2.8 to 1.2.9Changelog
Sourced from @radix-ui/react-tooltip's changelog.
Commits
Maintainer changes
This version was pushed to npm by GitHub Actions, a new releaser for
@radix-ui/react-tooltipsince your current version.Updates
@tailwindcss/vitefrom 4.2.1 to 4.3.0Release notes
Sourced from @tailwindcss/vite's releases.
... (truncated)
Changelog
Sourced from @tailwindcss/vite's changelog.
... (truncated)
Commits
588bd734.3.0 (#20023)d194d4cdocs: fix various typos in comments and documentation (#19878)db27049fix(@tailwindcss/vite): include@variantin feature detection (#19966)5a79990Always resolve relative files, relative to the current .css file (#19965)f3fdda2fix(vite): avoid resolving JS plugins to browser CSS entries (#19949)69ad7cc4.2.4 (#19948)685c19eFix issue around resolving paths in@tailwindcss/vite(#19947)2e3fa494.2.3 (#19944)5cb1efdfix(vite): resolve tsconfig paths in CSS and JS resolvers (#19803)d596b0c4.2.2 (#19821)Maintainer changes
This version was pushed to npm by GitHub Actions, a new releaser for
@tailwindcss/vitesince your current version.Updates
radix-uifrom 1.4.3 to 1.5.0Changelog
Sourced from radix-ui's changelog.
... (truncated)
Commits
Maintainer changes
This version was pushed to npm by GitHub Actions, a new releaser for radix-ui since your current version.
Updates
reactfrom 19.2.4 to 19.2.7Release notes
Sourced from react's releases.
Commits
6117d7cVersion 19.2.7 (#36591)eaf3e95Version 19.2.623f4f9f19.2.5Maintainer changes
This version was pushed to npm by GitHub Actions, a new releaser for react since your current version.
Updates
@types/reactfrom 19.2.14 to 19.2.17Commits
Updates
react-domfrom 19.2.4 to 19.2.7Release notes
Sourced from react-dom's releases.
Commits
6117d7cVersion 19.2.7 (#36591)eaf3e95Version 19.2.623f4f9f19.2.5Maintainer changes
This version was pushed to npm by GitHub Actions, a new releaser for react-dom since your current version.
Updates
react-virtuosofrom 4.17.0 to 4.18.7Release notes
Sourced from react-virtuoso's releases.
Changelog
Sourced from react-virtuoso's changelog.
... (truncated)
Commits
b017378Version Packages (#1400)354fbf1Merge pull request #1399 from petyosi/petyosi/fix-horizontal-rtl1fca093Fix horizontal RTL list positioning (#1395)5fdb613Version Packagesfa9dd31Fix window-scroll SSR viewport layoutc787356Speed up Release workflow by caching Playwright browsers21422d7Version Packages (#1389)5871779Fix useSyncExternalStore detection for React 19+66fd0e5Version Packages (#1377)a5bfd6cApply PR reviewMaintainer changes
This version was pushed to npm by GitHub Actions, a new releaser for react-virtuoso since your current version.
Updates
streamdownfrom 2.3.0 to 2.5.0Release notes
Sourced from streamdown's releases.
... (truncated)
Changelog
Sourced from streamdown's changelog.