Skip to content
Closed
Show file tree
Hide file tree
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
84 changes: 42 additions & 42 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ccdi-ods-ui",
"version": "1.1.0",
"version": "1.1.1",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
Expand All @@ -12,7 +12,7 @@
"base-64": "^1.0.0",
"fuse.js": "^7.1.0",
"gray-matter": "^4.0.3",
"next": "^15.4.7",
"next": "15.4.10",
Copy link

Copilot AI Dec 17, 2025

Choose a reason for hiding this comment

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

The caret (^) prefix was removed from the Next.js version. This changes the semantic versioning behavior - the caret allows automatic minor and patch updates, while the exact version pins to 15.4.10 specifically. This means npm install will only install exactly 15.4.10, not any newer patch versions like 15.4.11. If this strict pinning is intentional, consider documenting why. Otherwise, the caret should be restored to maintain consistency with other dependencies like react and postcss.

Copilot uses AI. Check for mistakes.
"postcss": "^8.5.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
Expand Down
Loading