Skip to content

Commit 739261d

Browse files
author
Rajat
committed
fix CVE-2025-66478
1 parent 8be926c commit 739261d

File tree

6 files changed

+259
-225
lines changed

6 files changed

+259
-225
lines changed

apps/docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"fumadocs-mdx": "11.6.1",
1414
"fumadocs-ui": "15.2.9",
1515
"lucide-react": "^0.487.0",
16-
"next": "15.3.1",
16+
"next": "15.5.7",
1717
"react": "^19.1.0",
1818
"react-dom": "^19.1.0"
1919
},

apps/web/app/account/billing/layout.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,8 @@ import Script from "next/script";
1212
import { auth } from "@/auth";
1313

1414
export default async function SchoolDetailsLayout({
15-
params,
1615
children,
1716
}: {
18-
params: Promise<{ name: string }>;
1917
children: ReactNode;
2018
}) {
2119
const session = await auth();

apps/web/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
"dependencies": {
1212
"@medialit/models": "workspace:^",
1313
"@medialit/utils": "workspace:^",
14-
"medialit": "workspace:^",
1514
"@radix-ui/colors": "^3.0.0",
1615
"@radix-ui/react-avatar": "^1.0.4",
1716
"@radix-ui/react-dialog": "^1.0.5",
@@ -28,8 +27,9 @@
2827
"class-variance-authority": "^0.7.0",
2928
"clsx": "^2.1.0",
3029
"lucide-react": "^0.487.0",
30+
"medialit": "workspace:^",
3131
"mongoose": "^8.0.1",
32-
"next": "^15.3.1",
32+
"next": "^15.5.7",
3333
"next-auth": "5.0.0-beta.25",
3434
"next-themes": "^0.2.1",
3535
"nodemailer": "^6.7.2",

eslint.config.mjs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,11 @@ export default defineConfig([
1616
"**/components/ui/**",
1717
"**/.next/**",
1818
".migrations/**",
19-
"apps/docs/.source"
19+
"apps/docs/.source",
20+
"**/next-env.d.ts",
2021
]),
2122
{ files: ["**/*.{js,mjs,cjs,ts,jsx,tsx}"], plugins: { js }, extends: ["js/recommended"] },
22-
{ files: ["**/*.{js,mjs,cjs,ts,jsx,tsx}"], languageOptions: { globals: {...globals.browser, ...globals.node} } },
23+
{ files: ["**/*.{js,mjs,cjs,ts,jsx,tsx}"], languageOptions: { globals: { ...globals.browser, ...globals.node } } },
2324
tseslint.configs.recommended,
2425
// pluginReact.configs.flat.recommended,
2526
...compat.config({

examples/next-app-router/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"dependencies": {
1212
"lucide-react": "^0.487.0",
1313
"medialit": "workspace:^",
14-
"next": "15.3.1",
14+
"next": "15.5.7",
1515
"react": "^19.0.0",
1616
"react-dom": "^19.0.0",
1717
"tus-js-client": "^4.3.1"

0 commit comments

Comments
 (0)