Skip to content
Open
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
2 changes: 1 addition & 1 deletion examples/ms-teams-connect-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"dependencies": {
"@knocklabs/react": "0.11.3",
"jsonwebtoken": "^9.0.2",
"next": "15.3.6",
"next": "16.1.6",
Copy link

Choose a reason for hiding this comment

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

Lint scripts break after Next major upgrade

Medium Severity

Upgrading next to 16.1.6 leaves lint scripts using next lint, but that command was removed in Next 16. In these example apps, yarn lint now fails immediately, so lint checks and related CI jobs stop working after this dependency bump.

Additional Locations (2)

Fix in Cursor Fix in Web

Copy link

Choose a reason for hiding this comment

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

Major version mismatch between next and eslint-config-next

Medium Severity

Bumping next to 16.1.6 while eslint-config-next remains at 15.4.6 creates a cross-major-version mismatch. The eslint-config-next package is designed to match the major version of next and may produce incorrect lint results, false warnings, or fail to detect new patterns introduced in Next.js 16. This affects all three example apps that use eslint-config-next.

Additional Locations (2)

Fix in Cursor Fix in Web

"react": "^19.0.0",
"react-dom": "^19.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion examples/nextjs-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"@telegraph/tokens": "^0.1.2",
"@telegraph/typography": "^0.1.25",
"framer-motion": "^12.28.1",
"next": "15.3.6",
"next": "16.1.6",
"next-seo": "^6.8.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/slack-connect-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"dependencies": {
"@knocklabs/react": "0.11.3",
"jsonwebtoken": "^9.0.2",
"next": "15.3.6",
"next": "16.1.6",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion examples/slack-kit-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"@knocklabs/node": "^1.11.2",
"@knocklabs/react": "0.11.3",
"jsonwebtoken": "^9.0.2",
"next": "15.3.6",
"next": "16.1.6",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.14",
"jsdom": "^27.1.0",
"next": "15.3.6",
"next": "16.1.6",
Copy link

Choose a reason for hiding this comment

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

Next and eslint-config-next major mismatch

Medium Severity

next was bumped to 16.1.6 while eslint-config-next (and the lockfile’s @next/eslint-plugin-next) remains on 15.4.6, which can create peer-dependency/version skew and cause next lint (or installs with strict peer deps) to fail or behave inconsistently across environments.

Additional Locations (2)

Fix in Cursor Fix in Web

"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^6.0.1",
Expand Down
Loading
Loading