feat: mise à jour sécurité CVE-2025-55182 (Next.js 15.5.7, React 19.1.2)

This commit is contained in:
jessy-david-dev
2026-02-08 17:24:48 +01:00
commit b9a9d687b6
64 changed files with 15638 additions and 0 deletions
+83
View File
@@ -0,0 +1,83 @@
```
aystone
├─ app
│ ├─ a-propos
│ │ └─ page.tsx
│ ├─ ads
│ │ └─ page.tsx
│ ├─ api
│ │ ├─ auth
│ │ │ └─ [...nextauth]
│ │ │ └─ route.ts
│ │ └─ planning
│ │ └─ route.ts
│ ├─ dashboard
│ │ ├─ Sidebar.tsx
│ │ ├─ StatCard.tsx
│ │ ├─ actions.ts
│ │ ├─ ajouter
│ │ │ ├─ AddProjectForm.tsx
│ │ │ └─ page.tsx
│ │ ├─ layout.tsx
│ │ ├─ page.tsx
│ │ ├─ profil
│ │ │ └─ page.tsx
│ │ └─ projets
│ │ ├─ [id]
│ │ │ ├─ EditProjectForm.tsx
│ │ │ └─ page.tsx
│ │ └─ page.tsx
│ ├─ globals.css
│ ├─ layout.tsx
│ ├─ login
│ │ └─ page.tsx
│ ├─ maps
│ │ └─ page.tsx
│ ├─ page.tsx
│ └─ providers.tsx
├─ auth.ts
├─ components
│ ├─ AdsGalleryClient.tsx
│ ├─ AdsSideBanners.tsx
│ ├─ AvailabilityPlanner.tsx
│ ├─ Banner.tsx
│ ├─ Footer.tsx
│ ├─ MapsClient.tsx
│ ├─ McSplash.tsx
│ ├─ MotionHeading.tsx
│ ├─ Navbar.tsx
│ ├─ ProjectsTable.tsx
│ └─ RedstoneParticles.tsx
├─ eslint.config.mjs
├─ lib
│ ├─ getAds.ts
│ └─ prisma.ts
├─ middleware.ts
├─ next.config.ts
├─ package-lock.json
├─ package.json
├─ postcss.config.mjs
├─ prisma
│ ├─ migrations
│ │ ├─ 20250727013821_init
│ │ │ └─ migration.sql
│ │ ├─ 20250727025700_add_mcname
│ │ │ └─ migration.sql
│ │ ├─ 20250727031005_project
│ │ │ └─ migration.sql
│ │ ├─ 20250727203115_add_availability_model
│ │ │ └─ migration.sql
│ │ └─ migration_lock.toml
│ └─ schema.prisma
├─ public
│ ├─ ads
│ │ ├─ riseofkinkdom.jpeg
│ │ └─ voat.png
│ ├─ aystone-saison2.png
│ └─ aystone.png
├─ tsconfig.json
└─ types
└─ next-auth.d.ts
```