Skip to content

Commit d8e9245

Browse files
authored
upgrade Next.js to 15.2.0 (#6365)
1 parent 6125e88 commit d8e9245

File tree

8 files changed

+119
-115
lines changed

8 files changed

+119
-115
lines changed

apps/dashboard/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"scripts": {
66
"preinstall": "npx only-allow pnpm",
7-
"dev": "next dev --turbo",
7+
"dev": "next dev --turbopack",
88
"build": "NODE_OPTIONS=--max-old-space-size=6144 next build",
99
"start": "next start",
1010
"format": "biome format ./src --write",
@@ -67,7 +67,7 @@
6767
"ioredis": "^5.5.0",
6868
"ipaddr.js": "^2.2.0",
6969
"lucide-react": "0.476.0",
70-
"next": "15.1.7",
70+
"next": "15.2.0",
7171
"next-plausible": "^3.12.4",
7272
"next-themes": "^0.4.4",
7373
"nextjs-toploader": "^1.6.12",
@@ -104,8 +104,8 @@
104104
"devDependencies": {
105105
"@chakra-ui/cli": "^2.4.1",
106106
"@chromatic-com/storybook": "3.2.4",
107-
"@next/bundle-analyzer": "15.1.7",
108-
"@next/eslint-plugin-next": "15.1.7",
107+
"@next/bundle-analyzer": "15.2.0",
108+
"@next/eslint-plugin-next": "15.2.0",
109109
"@playwright/test": "1.50.1",
110110
"@storybook/addon-essentials": "8.6.0",
111111
"@storybook/addon-interactions": "8.6.0",

apps/dashboard/src/app/(dashboard)/(bridge)/routes/components/server/routelist-card.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ export async function RouteListCard({
7474
<CardHeader className="flex flex-row items-center justify-between p-4">
7575
<div className="flex flex-row items-center gap-2">
7676
{resolvedOriginTokenIconUri ? (
77+
// eslint-disable-next-line @next/next/no-img-element
7778
<img
7879
src={resolvedOriginTokenIconUri}
7980
alt={originTokenAddress}
@@ -83,6 +84,7 @@ export async function RouteListCard({
8384
<div className="size-8 rounded-full bg-white/10" />
8485
)}
8586
{resolvedDestinationTokenIconUri ? (
87+
// eslint-disable-next-line @next/next/no-img-element
8688
<img
8789
src={resolvedDestinationTokenIconUri}
8890
alt={destinationTokenAddress}

apps/dashboard/src/app/(dashboard)/(bridge)/routes/components/server/routelist-row.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ export async function RouteListRow({
7676
<div className="flex items-center gap-1">
7777
{resolvedOriginTokenIconUri ? (
7878
// For now we're using a normal img tag because the domain for these images is unknown
79+
// eslint-disable-next-line @next/next/no-img-element
7980
<img
8081
src={resolvedOriginTokenIconUri}
8182
alt={originTokenAddress}
@@ -110,6 +111,7 @@ export async function RouteListRow({
110111
<div className="flex flex-row items-center gap-4">
111112
<div className="flex items-center gap-1">
112113
{resolvedDestinationTokenIconUri ? (
114+
// eslint-disable-next-line @next/next/no-img-element
113115
<img
114116
src={resolvedDestinationTokenIconUri}
115117
alt={destinationTokenAddress}

apps/login/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"clsx": "^2.1.1",
2626
"jose": "6.0.7",
2727
"lucide-react": "0.476.0",
28-
"next": "15.1.7",
28+
"next": "15.2.0",
2929
"next-themes": "^0.4.4",
3030
"react": "19.0.0",
3131
"react-dom": "19.0.0",
@@ -41,7 +41,7 @@
4141
"@types/react": "19.0.10",
4242
"@types/react-dom": "19.0.4",
4343
"eslint": "^9",
44-
"eslint-config-next": "15.1.7",
44+
"eslint-config-next": "15.2.0",
4545
"postcss": "8.5.3",
4646
"tailwindcss": "3.4.17",
4747
"typescript": "5.7.3"

apps/playground-web/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"clsx": "^2.1.1",
3838
"jose": "6.0.7",
3939
"lucide-react": "0.476.0",
40-
"next": "15.1.7",
40+
"next": "15.2.0",
4141
"next-themes": "^0.4.4",
4242
"nextjs-toploader": "^1.6.12",
4343
"openapi-types": "^12.1.3",
@@ -59,7 +59,7 @@
5959
"@types/react": "19.0.10",
6060
"@types/react-dom": "19.0.4",
6161
"eslint": "8.57.0",
62-
"eslint-config-next": "15.1.7",
62+
"eslint-config-next": "15.2.0",
6363
"eslint-plugin-react-compiler": "19.0.0-beta-e1e972c-20250221",
6464
"postcss": "8.5.3",
6565
"tailwindcss": "3.4.17",

apps/portal/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"@dirtycajunrice/klee": "^1.0.6",
2222
"@mdx-js/loader": "^2.3.0",
2323
"@mdx-js/react": "^2.3.0",
24-
"@next/mdx": "15.1.7",
24+
"@next/mdx": "15.2.0",
2525
"@radix-ui/react-dialog": "1.1.6",
2626
"@radix-ui/react-dropdown-menu": "^2.1.6",
2727
"@radix-ui/react-select": "^2.1.6",
@@ -35,7 +35,7 @@
3535
"flexsearch": "^0.7.43",
3636
"github-slugger": "^2.0.0",
3737
"lucide-react": "0.476.0",
38-
"next": "15.1.7",
38+
"next": "15.2.0",
3939
"nextjs-toploader": "^1.6.12",
4040
"node-html-parser": "^6.1.13",
4141
"posthog-js": "1.67.1",
@@ -53,7 +53,7 @@
5353
"typedoc-better-json": "0.9.4"
5454
},
5555
"devDependencies": {
56-
"@next/eslint-plugin-next": "15.1.7",
56+
"@next/eslint-plugin-next": "15.2.0",
5757
"@types/flexsearch": "^0.7.6",
5858
"@types/mdx": "^2.0.13",
5959
"@types/node": "22.13.5",

apps/wallet-ui/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"clsx": "^2.1.1",
2121
"cmdk": "^1.0.4",
2222
"lucide-react": "0.476.0",
23-
"next": "15.1.7",
23+
"next": "15.2.0",
2424
"next-themes": "^0.4.4",
2525
"react": "19.0.0",
2626
"react-dom": "19.0.0",
@@ -34,7 +34,7 @@
3434
"zod": "3.24.2"
3535
},
3636
"devDependencies": {
37-
"@next/eslint-plugin-next": "15.1.7",
37+
"@next/eslint-plugin-next": "15.2.0",
3838
"@types/node": "22.13.5",
3939
"@types/react": "19.0.10",
4040
"@types/react-dom": "19.0.4",

0 commit comments

Comments
 (0)