Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
},
"devDependencies": {
"jest": "^30.2.0",
"uuid": "^11.1.0"
"uuid": "^14.0.0"

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Jumping from uuid ^11.1.0 to ^14.0.0 skips two major versions. Major version increments in semver indicate breaking changes. Verify the uuid API used in tests is still compatible with v14, or consider upgrading incrementally (e.g., to ^12.0.0 first) after reviewing changelogs.

Suggested change
"uuid": "^14.0.0"
"uuid": "^12.0.0"

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

[Re-raised] Jumping from uuid ^11.1.0 to ^14.0.0 skips two major versions. Major version increments in semver indicate breaking changes. Verify the uuid API used in tests is still compatible with v14, or consider upgrading incrementally (e.g., to ^12.0.0 first) after reviewing changelogs.

Suggested change
"uuid": "^14.0.0"
"uuid": "^12.0.0"

},
"overrides": {
"plain-crypto-js": "./_EXCLUDE_UNSAFE_DEPENDENCIES_/plain-crypto-js"
Expand Down
Loading