Skip to content

Commit 3852a14

Browse files
theo-learnerclaude
andcommitted
fix(security): apply CVE patches from PR #43
- next 15.4.8 → 15.5.9 (CVE-2025-55182, CVE-2025-55184, CVE-2025-55183) - react/react-dom ^19.2.1 → ^19.2.3 (CVE-2025-67779) - @tanstack/react-query 5.45.1 → ^5.90.12 - @types/react ^18.3.1 → ^19.2.7 - @types/react-dom ^18.3.0 → ^19.2.3 - eslint-config-next 15.0.3 → 15.5.9 - fix input-group React 19 type compatibility - update copyright year to 2026 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 04369c5 commit 3852a14

4 files changed

Lines changed: 94 additions & 100 deletions

File tree

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@
1111
"dependencies": {
1212
"@chakra-ui/react": "^3.2.1",
1313
"@emotion/react": "^11.13.5",
14-
"@tanstack/react-query": "5.45.1",
14+
"@tanstack/react-query": "^5.90.12",
1515
"@tokamak-network/thanos-sdk": "0.0.14-dev.10b30cf",
1616
"ethers": "^5.7.2",
1717
"install": "^0.13.0",
1818
"jotai": "^2.10.3",
19-
"next": "15.4.8",
19+
"next": "15.5.9",
2020
"next-runtime-env": "^3.2.2",
2121
"next-themes": "^0.4.3",
22-
"react": "^19.2.1",
23-
"react-dom": "^19.2.1",
22+
"react": "^19.2.3",
23+
"react-dom": "^19.2.3",
2424
"react-icons": "^5.3.0",
2525
"react-toastify": "^10.0.6",
2626
"sharp": "^0.33.5",
@@ -29,15 +29,15 @@
2929
},
3030
"devDependencies": {
3131
"@types/node": "^20.12.10",
32-
"@types/react": "^18.3.1",
33-
"@types/react-dom": "^18.3.0",
32+
"@types/react": "^19.2.7",
33+
"@types/react-dom": "^19.2.3",
3434
"@typescript-eslint/eslint-plugin": "^8.16.0",
3535
"@typescript-eslint/parser": "^8.16.0",
3636
"@wagmi/cli": "latest",
3737
"bufferutil": "^4.0.8",
3838
"encoding": "^0.1.13",
3939
"eslint": "^8.41.0",
40-
"eslint-config-next": "15.0.3",
40+
"eslint-config-next": "15.5.9",
4141
"eslint-config-typescript": "^3.0.0",
4242
"lokijs": "^1.5.12",
4343
"pino-pretty": "^10.3.1",

src/components/layout/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const Footer = () => {
1111
width={"100%"}
1212
>
1313
<Text color={"#76819B"} fontSize={"12px"} lineHeight={"normal"}>
14-
Copyright © 2024. All rights reserved.
14+
Copyright © 2026. All rights reserved.
1515
</Text>
1616
</Flex>
1717
);

src/components/ui/input-group.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export const InputGroup = React.forwardRef<HTMLDivElement, InputGroupProps>(
3737
ps: `calc(var(--input-height) - ${startOffset})`,
3838
}),
3939
...(endElement && { pe: `calc(var(--input-height) - ${endOffset})` }),
40-
...children.props,
40+
...(children.props && typeof children.props === 'object' ? children.props : {}),
4141
})}
4242
{endElement && (
4343
<InputElement placement="end" {...endElementProps}>

yarn.lock

Lines changed: 85 additions & 91 deletions
Original file line numberDiff line numberDiff line change
@@ -1512,15 +1512,15 @@
15121512
resolved "https://registry.npmjs.org/@next/env/-/env-14.2.33.tgz"
15131513
integrity sha512-CgVHNZ1fRIlxkLhIX22flAZI/HmpDaZ8vwyJ/B0SDPTBuLZ1PJ+DWMjCHhqnExfmSQzA/PbZi8OAc7PAq2w9IA==
15141514

1515-
"@next/env@15.4.8":
1516-
version "15.4.8"
1517-
resolved "https://registry.npmjs.org/@next/env/-/env-15.4.8.tgz"
1518-
integrity sha512-LydLa2MDI1NMrOFSkO54mTc8iIHSttj6R6dthITky9ylXV2gCGi0bHQjVCtLGRshdRPjyh2kXbxJukDtBWQZtQ==
1515+
"@next/env@15.5.9":
1516+
version "15.5.9"
1517+
resolved "https://registry.yarnpkg.com/@next/env/-/env-15.5.9.tgz#53c2c34dc17cd87b61f70c6cc211e303123b2ab8"
1518+
integrity sha512-4GlTZ+EJM7WaW2HEZcyU317tIQDjkQIyENDLxYJfSWlfqguN+dHkZgyQTV/7ykvobU7yEH5gKvreNrH4B6QgIg==
15191519

1520-
"@next/eslint-plugin-next@15.0.3":
1521-
version "15.0.3"
1522-
resolved "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-15.0.3.tgz"
1523-
integrity sha512-3Ln/nHq2V+v8uIaxCR6YfYo7ceRgZNXfTd3yW1ukTaFbO+/I8jNakrjYWODvG9BuR2v5kgVtH/C8r0i11quOgw==
1520+
"@next/eslint-plugin-next@15.5.9":
1521+
version "15.5.9"
1522+
resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-15.5.9.tgz#629c34b6f4979df252afeaa6027dba52a0c619bd"
1523+
integrity sha512-kUzXx0iFiXw27cQAViE1yKWnz/nF8JzRmwgMRTMh8qMY90crNsdXJRh2e+R0vBpFR3kk1yvAR7wev7+fCCb79Q==
15241524
dependencies:
15251525
fast-glob "3.3.1"
15261526

@@ -1529,70 +1529,70 @@
15291529
resolved "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.2.33.tgz"
15301530
integrity sha512-HqYnb6pxlsshoSTubdXKu15g3iivcbsMXg4bYpjL2iS/V6aQot+iyF4BUc2qA/J/n55YtvE4PHMKWBKGCF/+wA==
15311531

1532-
"@next/swc-darwin-arm64@15.4.8":
1533-
version "15.4.8"
1534-
resolved "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-15.4.8.tgz"
1535-
integrity sha512-Pf6zXp7yyQEn7sqMxur6+kYcywx5up1J849psyET7/8pG2gQTVMjU3NzgIt8SeEP5to3If/SaWmaA6H6ysBr1A==
1532+
"@next/swc-darwin-arm64@15.5.7":
1533+
version "15.5.7"
1534+
resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-15.5.7.tgz#f0c9ccfec2cd87cbd4b241ce4c779a7017aed958"
1535+
integrity sha512-IZwtxCEpI91HVU/rAUOOobWSZv4P2DeTtNaCdHqLcTJU4wdNXgAySvKa/qJCgR5m6KI8UsKDXtO2B31jcaw1Yw==
15361536

15371537
"@next/swc-darwin-x64@14.2.33":
15381538
version "14.2.33"
15391539
resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-14.2.33.tgz#fcf0c45938da9b0cc2ec86357d6aefca90bd17f3"
15401540
integrity sha512-8HGBeAE5rX3jzKvF593XTTFg3gxeU4f+UWnswa6JPhzaR6+zblO5+fjltJWIZc4aUalqTclvN2QtTC37LxvZAA==
15411541

1542-
"@next/swc-darwin-x64@15.4.8":
1543-
version "15.4.8"
1544-
resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-15.4.8.tgz#3fc796bd522aee30eff608448919e0ea1c1da7d1"
1545-
integrity sha512-xla6AOfz68a6kq3gRQccWEvFC/VRGJmA/QuSLENSO7CZX5WIEkSz7r1FdXUjtGCQ1c2M+ndUAH7opdfLK1PQbw==
1542+
"@next/swc-darwin-x64@15.5.7":
1543+
version "15.5.7"
1544+
resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-15.5.7.tgz#18009e9fcffc5c0687cc9db24182ddeac56280d9"
1545+
integrity sha512-UP6CaDBcqaCBuiq/gfCEJw7sPEoX1aIjZHnBWN9v9qYHQdMKvCKcAVs4OX1vIjeE+tC5EIuwDTVIoXpUes29lg==
15461546

15471547
"@next/swc-linux-arm64-gnu@14.2.33":
15481548
version "14.2.33"
15491549
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.2.33.tgz#837f91a740eb4420c06f34c4677645315479d9be"
15501550
integrity sha512-JXMBka6lNNmqbkvcTtaX8Gu5by9547bukHQvPoLe9VRBx1gHwzf5tdt4AaezW85HAB3pikcvyqBToRTDA4DeLw==
15511551

1552-
"@next/swc-linux-arm64-gnu@15.4.8":
1553-
version "15.4.8"
1554-
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-15.4.8.tgz#5c7bf6a0de49c2b4c21bc8bdb3b5e431dd922c7d"
1555-
integrity sha512-y3fmp+1Px/SJD+5ntve5QLZnGLycsxsVPkTzAc3zUiXYSOlTPqT8ynfmt6tt4fSo1tAhDPmryXpYKEAcoAPDJw==
1552+
"@next/swc-linux-arm64-gnu@15.5.7":
1553+
version "15.5.7"
1554+
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-15.5.7.tgz#fe7c7e08264cf522d4e524299f6d3e63d68d579a"
1555+
integrity sha512-NCslw3GrNIw7OgmRBxHtdWFQYhexoUCq+0oS2ccjyYLtcn1SzGzeM54jpTFonIMUjNbHmpKpziXnpxhSWLcmBA==
15561556

15571557
"@next/swc-linux-arm64-musl@14.2.33":
15581558
version "14.2.33"
15591559
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.2.33.tgz#dc8903469e5c887b25e3c2217a048bd30c58d3d4"
15601560
integrity sha512-Bm+QulsAItD/x6Ih8wGIMfRJy4G73tu1HJsrccPW6AfqdZd0Sfm5Imhgkgq2+kly065rYMnCOxTBvmvFY1BKfg==
15611561

1562-
"@next/swc-linux-arm64-musl@15.4.8":
1563-
version "15.4.8"
1564-
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-15.4.8.tgz#94e47838715e68a696b33295f4389a60bd8af00a"
1565-
integrity sha512-DX/L8VHzrr1CfwaVjBQr3GWCqNNFgyWJbeQ10Lx/phzbQo3JNAxUok1DZ8JHRGcL6PgMRgj6HylnLNndxn4Z6A==
1562+
"@next/swc-linux-arm64-musl@15.5.7":
1563+
version "15.5.7"
1564+
resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-15.5.7.tgz#94228fe293475ec34a5a54284e1056876f43a3cf"
1565+
integrity sha512-nfymt+SE5cvtTrG9u1wdoxBr9bVB7mtKTcj0ltRn6gkP/2Nu1zM5ei8rwP9qKQP0Y//umK+TtkKgNtfboBxRrw==
15661566

15671567
"@next/swc-linux-x64-gnu@14.2.33":
15681568
version "14.2.33"
15691569
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.2.33.tgz#344438be592b6b28cc540194274561e41f9933e5"
15701570
integrity sha512-FnFn+ZBgsVMbGDsTqo8zsnRzydvsGV8vfiWwUo1LD8FTmPTdV+otGSWKc4LJec0oSexFnCYVO4hX8P8qQKaSlg==
15711571

1572-
"@next/swc-linux-x64-gnu@15.4.8":
1573-
version "15.4.8"
1574-
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-15.4.8.tgz#4f9656e8bf9f28dac1970d6ff95a245014646417"
1575-
integrity sha512-9fLAAXKAL3xEIFdKdzG5rUSvSiZTLLTCc6JKq1z04DR4zY7DbAPcRvNm3K1inVhTiQCs19ZRAgUerHiVKMZZIA==
1572+
"@next/swc-linux-x64-gnu@15.5.7":
1573+
version "15.5.7"
1574+
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-15.5.7.tgz#078c71201dfe7fcfb8fa6dc92aae6c94bc011cdc"
1575+
integrity sha512-hvXcZvCaaEbCZcVzcY7E1uXN9xWZfFvkNHwbe/n4OkRhFWrs1J1QV+4U1BN06tXLdaS4DazEGXwgqnu/VMcmqw==
15761576

15771577
"@next/swc-linux-x64-musl@14.2.33":
15781578
version "14.2.33"
15791579
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.2.33.tgz#3379fad5e0181000b2a4fac0b80f7ca4ffe795c8"
15801580
integrity sha512-345tsIWMzoXaQndUTDv1qypDRiebFxGYx9pYkhwY4hBRaOLt8UGfiWKr9FSSHs25dFIf8ZqIFaPdy5MljdoawA==
15811581

1582-
"@next/swc-linux-x64-musl@15.4.8":
1583-
version "15.4.8"
1584-
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-15.4.8.tgz#c5c64e18370f54f6474e58bb01b12594a4ecdde6"
1585-
integrity sha512-s45V7nfb5g7dbS7JK6XZDcapicVrMMvX2uYgOHP16QuKH/JA285oy6HcxlKqwUNaFY/UC6EvQ8QZUOo19cBKSA==
1582+
"@next/swc-linux-x64-musl@15.5.7":
1583+
version "15.5.7"
1584+
resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-15.5.7.tgz#72947f5357f9226292353e0bb775643da3c7a182"
1585+
integrity sha512-4IUO539b8FmF0odY6/SqANJdgwn1xs1GkPO5doZugwZ3ETF6JUdckk7RGmsfSf7ws8Qb2YB5It33mvNL/0acqA==
15861586

15871587
"@next/swc-win32-arm64-msvc@14.2.33":
15881588
version "14.2.33"
15891589
resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.2.33.tgz#bca8f4dde34656aef8e99f1e5696de255c2f00e5"
15901590
integrity sha512-nscpt0G6UCTkrT2ppnJnFsYbPDQwmum4GNXYTeoTIdsmMydSKFz9Iny2jpaRupTb+Wl298+Rh82WKzt9LCcqSQ==
15911591

1592-
"@next/swc-win32-arm64-msvc@15.4.8":
1593-
version "15.4.8"
1594-
resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-15.4.8.tgz#722d18ed569bee9e4a6651acdc756f9633cbee1f"
1595-
integrity sha512-KjgeQyOAq7t/HzAJcWPGA8X+4WY03uSCZ2Ekk98S9OgCFsb6lfBE3dbUzUuEQAN2THbwYgFfxX2yFTCMm8Kehw==
1592+
"@next/swc-win32-arm64-msvc@15.5.7":
1593+
version "15.5.7"
1594+
resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-15.5.7.tgz#397b912cd51c6a80e32b9c0507ecd82514353941"
1595+
integrity sha512-CpJVTkYI3ZajQkC5vajM7/ApKJUOlm6uP4BknM3XKvJ7VXAvCqSjSLmM0LKdYzn6nBJVSjdclx8nYJSa3xlTgQ==
15961596

15971597
"@next/swc-win32-ia32-msvc@14.2.33":
15981598
version "14.2.33"
@@ -1604,10 +1604,10 @@
16041604
resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.2.33.tgz#f1a40062530c17c35a86d8c430b3ae465eb7cea1"
16051605
integrity sha512-nOjfZMy8B94MdisuzZo9/57xuFVLHJaDj5e/xrduJp9CV2/HrfxTRH2fbyLe+K9QT41WBLUd4iXX3R7jBp0EUg==
16061606

1607-
"@next/swc-win32-x64-msvc@15.4.8":
1608-
version "15.4.8"
1609-
resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-15.4.8.tgz#a29a53cd262ec5093b9ac24a5fd5e4540ec64eb4"
1610-
integrity sha512-Exsmf/+42fWVnLMaZHzshukTBxZrSwuuLKFvqhGHJ+mC1AokqieLY/XzAl3jc/CqhXLqLY3RRjkKJ9YnLPcRWg==
1607+
"@next/swc-win32-x64-msvc@15.5.7":
1608+
version "15.5.7"
1609+
resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-15.5.7.tgz#e02b543d9dc6c1631d4ac239cb1177245dfedfe4"
1610+
integrity sha512-gMzgBX164I6DN+9/PGA+9dQiwmTkE4TloBNx8Kv9UiGARsr9Nba7IpcBRA1iTV9vwlYnrE3Uy6I7Aj6qLjQuqw==
16111611

16121612
"@noble/ciphers@1.2.1":
16131613
version "1.2.1"
@@ -2375,17 +2375,17 @@
23752375
dependencies:
23762376
tslib "^2.8.0"
23772377

2378-
"@tanstack/query-core@5.45.0":
2379-
version "5.45.0"
2380-
resolved "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.45.0.tgz"
2381-
integrity sha512-RVfIZQmFUTdjhSAAblvueimfngYyfN6HlwaJUPK71PKd7yi43Vs1S/rdimmZedPWX/WGppcq/U1HOj7O7FwYxw==
2378+
"@tanstack/query-core@5.95.2":
2379+
version "5.95.2"
2380+
resolved "https://registry.yarnpkg.com/@tanstack/query-core/-/query-core-5.95.2.tgz#9e3299d0c1c8785dd9e3d0cac1993e45f35113f2"
2381+
integrity sha512-o4T8vZHZET4Bib3jZ/tCW9/7080urD4c+0/AUaYVpIqOsr7y0reBc1oX3ttNaSW5mYyvZHctiQ/UOP2PfdmFEQ==
23822382

2383-
"@tanstack/react-query@5.45.1":
2384-
version "5.45.1"
2385-
resolved "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.45.1.tgz"
2386-
integrity sha512-mYYfJujKg2kxmkRRjA6nn4YKG3ITsKuH22f1kteJ5IuVQqgKUgbaSQfYwVP0gBS05mhwxO03HVpD0t7BMN7WOA==
2383+
"@tanstack/react-query@^5.90.12":
2384+
version "5.95.2"
2385+
resolved "https://registry.yarnpkg.com/@tanstack/react-query/-/react-query-5.95.2.tgz#7daf77342a4e374c22fad88bb98ea13fc19ae086"
2386+
integrity sha512-/wGkvLj/st5Ud1Q76KF1uFxScV7WeqN1slQx5280ycwAyYkIPGaRZAEgHxe3bjirSd5Zpwkj6zNcR4cqYni/ZA==
23872387
dependencies:
2388-
"@tanstack/query-core" "5.45.0"
2388+
"@tanstack/query-core" "5.95.2"
23892389

23902390
"@tokamak-network/core-utils@0.0.2-dev.10b30cf":
23912391
version "0.0.2-dev.10b30cf"
@@ -2466,22 +2466,16 @@
24662466
resolved "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz"
24672467
integrity sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==
24682468

2469-
"@types/prop-types@*":
2470-
version "15.7.15"
2471-
resolved "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.15.tgz"
2472-
integrity sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==
2469+
"@types/react-dom@^19.2.3":
2470+
version "19.2.3"
2471+
resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-19.2.3.tgz#c1e305d15a52a3e508d54dca770d202cb63abf2c"
2472+
integrity sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==
24732473

2474-
"@types/react-dom@^18.3.0":
2475-
version "18.3.7"
2476-
resolved "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.7.tgz"
2477-
integrity sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==
2478-
2479-
"@types/react@^18.3.1":
2480-
version "18.3.28"
2481-
resolved "https://registry.yarnpkg.com/@types/react/-/react-18.3.28.tgz#0a85b1a7243b4258d9f626f43797ba18eb5f8781"
2482-
integrity sha512-z9VXpC7MWrhfWipitjNdgCauoMLRdIILQsAEV+ZesIzBq/oUlxk0m3ApZuMFCXdnS4U7KrI+l3WRUEGQ8K1QKw==
2474+
"@types/react@^19.2.7":
2475+
version "19.2.14"
2476+
resolved "https://registry.yarnpkg.com/@types/react/-/react-19.2.14.tgz#39604929b5e3957e3a6fa0001dafb17c7af70bad"
2477+
integrity sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==
24832478
dependencies:
2484-
"@types/prop-types" "*"
24852479
csstype "^3.2.2"
24862480

24872481
"@types/trusted-types@^2.0.2":
@@ -4926,20 +4920,20 @@ escape-string-regexp@^4.0.0:
49264920
resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"
49274921
integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
49284922

4929-
eslint-config-next@15.0.3:
4930-
version "15.0.3"
4931-
resolved "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-15.0.3.tgz"
4932-
integrity sha512-IGP2DdQQrgjcr4mwFPve4DrCqo7CVVez1WoYY47XwKSrYO4hC0Dlb+iJA60i0YfICOzgNADIb8r28BpQ5Zs0wg==
4923+
eslint-config-next@15.5.9:
4924+
version "15.5.9"
4925+
resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-15.5.9.tgz#007f390a3567bce41b50b16c93af053aaa8e4454"
4926+
integrity sha512-852JYI3NkFNzW8CqsMhI0K2CDRxTObdZ2jQJj5CtpEaOkYHn13107tHpNuD/h0WRpU4FAbCdUaxQsrfBtNK9Kw==
49334927
dependencies:
4934-
"@next/eslint-plugin-next" "15.0.3"
4928+
"@next/eslint-plugin-next" "15.5.9"
49354929
"@rushstack/eslint-patch" "^1.10.3"
49364930
"@typescript-eslint/eslint-plugin" "^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0"
49374931
"@typescript-eslint/parser" "^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0"
49384932
eslint-import-resolver-node "^0.3.6"
49394933
eslint-import-resolver-typescript "^3.5.2"
49404934
eslint-plugin-import "^2.31.0"
49414935
eslint-plugin-jsx-a11y "^6.10.0"
4942-
eslint-plugin-react "^7.35.0"
4936+
eslint-plugin-react "^7.37.0"
49434937
eslint-plugin-react-hooks "^5.0.0"
49444938

49454939
eslint-config-typescript@^3.0.0:
@@ -5027,7 +5021,7 @@ eslint-plugin-react-hooks@^5.0.0:
50275021
resolved "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.2.0.tgz"
50285022
integrity sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==
50295023

5030-
eslint-plugin-react@^7.35.0:
5024+
eslint-plugin-react@^7.37.0:
50315025
version "7.37.5"
50325026
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz#2975511472bdda1b272b34d779335c9b0e877065"
50335027
integrity sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==
@@ -6334,25 +6328,25 @@ next-themes@^0.4.3:
63346328
resolved "https://registry.npmjs.org/next-themes/-/next-themes-0.4.6.tgz"
63356329
integrity sha512-pZvgD5L0IEvX5/9GWyHMf3m8BKiVQwsCMHfoFosXtXBMnaS0ZnIJ9ST4b4NqLVKDEm8QBxoNNGNaBv2JNF6XNA==
63366330

6337-
next@15.4.8:
6338-
version "15.4.8"
6339-
resolved "https://registry.npmjs.org/next/-/next-15.4.8.tgz"
6340-
integrity sha512-jwOXTz/bo0Pvlf20FSb6VXVeWRssA2vbvq9SdrOPEg9x8E1B27C2rQtvriAn600o9hH61kjrVRexEffv3JybuA==
6331+
next@15.5.9:
6332+
version "15.5.9"
6333+
resolved "https://registry.yarnpkg.com/next/-/next-15.5.9.tgz#1b80d05865cc27e710fb4dcfc6fd9e726ed12ad4"
6334+
integrity sha512-agNLK89seZEtC5zUHwtut0+tNrc0Xw4FT/Dg+B/VLEo9pAcS9rtTKpek3V6kVcVwsB2YlqMaHdfZL4eLEVYuCg==
63416335
dependencies:
6342-
"@next/env" "15.4.8"
6336+
"@next/env" "15.5.9"
63436337
"@swc/helpers" "0.5.15"
63446338
caniuse-lite "^1.0.30001579"
63456339
postcss "8.4.31"
63466340
styled-jsx "5.1.6"
63476341
optionalDependencies:
6348-
"@next/swc-darwin-arm64" "15.4.8"
6349-
"@next/swc-darwin-x64" "15.4.8"
6350-
"@next/swc-linux-arm64-gnu" "15.4.8"
6351-
"@next/swc-linux-arm64-musl" "15.4.8"
6352-
"@next/swc-linux-x64-gnu" "15.4.8"
6353-
"@next/swc-linux-x64-musl" "15.4.8"
6354-
"@next/swc-win32-arm64-msvc" "15.4.8"
6355-
"@next/swc-win32-x64-msvc" "15.4.8"
6342+
"@next/swc-darwin-arm64" "15.5.7"
6343+
"@next/swc-darwin-x64" "15.5.7"
6344+
"@next/swc-linux-arm64-gnu" "15.5.7"
6345+
"@next/swc-linux-arm64-musl" "15.5.7"
6346+
"@next/swc-linux-x64-gnu" "15.5.7"
6347+
"@next/swc-linux-x64-musl" "15.5.7"
6348+
"@next/swc-win32-arm64-msvc" "15.5.7"
6349+
"@next/swc-win32-x64-msvc" "15.5.7"
63566350
sharp "^0.34.3"
63576351

63586352
next@^14:
@@ -6941,10 +6935,10 @@ randombytes@^2.1.0:
69416935
dependencies:
69426936
safe-buffer "^5.1.0"
69436937

6944-
react-dom@^19.2.1:
6945-
version "19.2.1"
6946-
resolved "https://registry.npmjs.org/react-dom/-/react-dom-19.2.1.tgz"
6947-
integrity sha512-ibrK8llX2a4eOskq1mXKu/TGZj9qzomO+sNfO98M6d9zIPOEhlBkMkBUBLd1vgS0gQsLDBzA+8jJBVXDnfHmJg==
6938+
react-dom@^19.2.3:
6939+
version "19.2.4"
6940+
resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-19.2.4.tgz#6fac6bd96f7db477d966c7ec17c1a2b1ad8e6591"
6941+
integrity sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==
69486942
dependencies:
69496943
scheduler "^0.27.0"
69506944

@@ -6972,10 +6966,10 @@ react@^18:
69726966
dependencies:
69736967
loose-envify "^1.1.0"
69746968

6975-
react@^19.2.1:
6976-
version "19.2.1"
6977-
resolved "https://registry.npmjs.org/react/-/react-19.2.1.tgz"
6978-
integrity sha512-DGrYcCWK7tvYMnWh79yrPHt+vdx9tY+1gPZa7nJQtO/p8bLTDaHp4dzwEhQB7pZ4Xe3ok4XKuEPrVuc+wlpkmw==
6969+
react@^19.2.3:
6970+
version "19.2.4"
6971+
resolved "https://registry.yarnpkg.com/react/-/react-19.2.4.tgz#438e57baa19b77cb23aab516cf635cd0579ee09a"
6972+
integrity sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==
69796973

69806974
readable-stream@^2.3.3:
69816975
version "2.3.8"

0 commit comments

Comments
 (0)