Bump uuid from 9.0.0 to 14.0.0 in /apps/functional_chat#54
Bump uuid from 9.0.0 to 14.0.0 in /apps/functional_chat#54dependabot[bot] wants to merge 1 commit into
Conversation
Bumps [uuid](https://github.com/uuidjs/uuid) from 9.0.0 to 14.0.0. - [Release notes](https://github.com/uuidjs/uuid/releases) - [Changelog](https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md) - [Commits](uuidjs/uuid@v9.0.0...v14.0.0) --- updated-dependencies: - dependency-name: uuid dependency-version: 14.0.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 2 potential issues.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, have a team admin enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 81e82c6. Configure here.
| "tailwind-merge": "1.14.0", | ||
| "tailwindcss-animate": "1.0.7", | ||
| "uuid": "^9.0.0", | ||
| "uuid": "^14.0.0", |
There was a problem hiding this comment.
Node engine allows v18 but uuid v14 requires v20+
High Severity
The engines field specifies "node": ">=18.15.0", but uuid@14 requires Node.js 20+ because it expects crypto to be globally available (a Node 20+ feature). Running this project on Node 18 or 19 — which the engines constraint permits — will cause a runtime error when any uuid function is called, affecting all chat message creation and API endpoints that rely on uuidv4().
Additional Locations (1)
Reviewed by Cursor Bugbot for commit 81e82c6. Configure here.
| "tailwind-merge": "1.14.0", | ||
| "tailwindcss-animate": "1.0.7", | ||
| "uuid": "^9.0.0", | ||
| "uuid": "^14.0.0", |
There was a problem hiding this comment.
Stale @types/uuid v9 with uuid v14 installed
Low Severity
@types/uuid is pinned to 9.0.1 while uuid has been bumped to ^14.0.0. Since uuid v12+ is ESM-only and ships its own TypeScript types, this outdated @types/uuid package is unnecessary and could provide stale or conflicting type definitions for the v4 import used across the project.
Reviewed by Cursor Bugbot for commit 81e82c6. Configure here.


Bumps uuid from 9.0.0 to 14.0.0.
Release notes
Sourced from uuid's releases.
... (truncated)
Changelog
Sourced from uuid's changelog.
... (truncated)
Commits
7c1ea08chore(main): release 14.0.0 (#926)3d2c5b0Merge commit from forkf2c235ffix!: expectcryptoto be global everywhere (requires node@20+) (#935)529ef08chore: upgrade TypeScript and fixup types (#927)086fd79chore: update dependencies (#933)dc4ddb8feat!: drop node@18 support (#934)0f1f9c9chore: switch to Biome for parsing and linting (#932)e2879e6chore: use maintained version of npm-run-all (#930)ffa3138fix: Use GITHUB_TOKEN for release-please and enable npm provenance (#925)0423d49docs: remove obsolete v1 option notes (#915)Maintainer changes
This version was pushed to npm by GitHub Actions, a new releaser for uuid since your current version.
Install script changes
This version adds
preparescript that runs during installation. Review the package contents before updating.Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)You can disable automated security fix PRs for this repo from the Security Alerts page.
Note
High Risk
Upgrading
uuidto v14 introduces upstream breaking changes (notably Node 20+ / globalcryptoexpectations) while this app still declares Node >=18.15, which could cause runtime/build failures. Lockfile churn also changes resolution ranges for several tooling deps (eslint-config-next,next-auth,@types/react,typescript) to*, making installs less deterministic.Overview
Bumps
uuidfrom^9.0.0to^14.0.0forapps/functional_chatand updatespackage-lock.jsonaccordingly.As part of the lockfile refresh, several dependencies/devDependencies switch from
latestto*(e.g.eslint-config-next,next-auth,@types/react,typescript) and a number of optional/peer packages are removed from the lockfile, changing the installed dependency graph.Reviewed by Cursor Bugbot for commit 81e82c6. Bugbot is set up for automated code reviews on this repo. Configure here.