Added new "Bugs" group to release notes system for documenting
bug fixes and troubleshooting guides.
Changes:
- Added "Bugs & Fixes" group to _index.json (order: 4)
- Added "webpack-module-resolution" category under bugs group
- Created comprehensive MDX documentation for webpack fix
- Updated TypeScript types to include 'bugs' as valid group
- Updated sort order in getAllReleases() function
- Updated getReleasesGrouped() to include bugs filter
- Updated sidebar to expand bugs group by default
Content:
- Detailed webpack module resolution bug documentation
- Root cause analysis with technical explanation
- Solution implementation with code examples
- Prevention best practices
- Quick reference troubleshooting table
- Related issues and future improvements
Structure:
Group: Bugs & Fixes (order: 4)
└── Webpack Module Resolution (order: 10)
- Error: Cannot read properties of undefined (reading 'call')
- Fix: Wrapper component pattern
- Status: Completed
- Version: 0.2.1
This creates a dedicated space for documenting production issues,
their solutions, and lessons learned for future reference.
101 lines
2.3 KiB
JSON
101 lines
2.3 KiB
JSON
{
|
|
"groups": [
|
|
{
|
|
"id": "foundation",
|
|
"title": "Foundation",
|
|
"description": "Basis setup en infrastructuur",
|
|
"order": 1
|
|
},
|
|
{
|
|
"id": "features",
|
|
"title": "Core Features",
|
|
"description": "EPD functionaliteit",
|
|
"order": 2
|
|
},
|
|
{
|
|
"id": "infrastructure",
|
|
"title": "Infrastructure",
|
|
"description": "Ondersteunende systemen",
|
|
"order": 3
|
|
},
|
|
{
|
|
"id": "bugs",
|
|
"title": "Bugs & Fixes",
|
|
"description": "Opgeloste bugs en troubleshooting",
|
|
"order": 4
|
|
}
|
|
],
|
|
"categories": [
|
|
{
|
|
"slug": "authentication",
|
|
"title": "Authentication",
|
|
"group": "foundation",
|
|
"description": "Login, signup en password reset",
|
|
"order": 1
|
|
},
|
|
{
|
|
"slug": "database",
|
|
"title": "Database & Schema",
|
|
"group": "foundation",
|
|
"description": "PostgreSQL schema en RLS policies",
|
|
"order": 2
|
|
},
|
|
{
|
|
"slug": "environment",
|
|
"title": "Environment Setup",
|
|
"group": "foundation",
|
|
"description": "Development en deployment configuratie",
|
|
"order": 3
|
|
},
|
|
{
|
|
"slug": "dashboard",
|
|
"title": "Dashboard & Navigation",
|
|
"group": "features",
|
|
"description": "EPD layout en navigatie",
|
|
"order": 4
|
|
},
|
|
{
|
|
"slug": "client-management",
|
|
"title": "Client Management",
|
|
"group": "features",
|
|
"description": "CRUD operations voor cliënten",
|
|
"order": 5
|
|
},
|
|
{
|
|
"slug": "ai-features",
|
|
"title": "AI Integrations",
|
|
"group": "features",
|
|
"description": "AI-gestuurde workflows",
|
|
"order": 6
|
|
},
|
|
{
|
|
"slug": "hosting",
|
|
"title": "Hosting & Deployment",
|
|
"group": "infrastructure",
|
|
"description": "Vercel deployment en CI/CD",
|
|
"order": 7
|
|
},
|
|
{
|
|
"slug": "design-system",
|
|
"title": "Design System",
|
|
"group": "infrastructure",
|
|
"description": "UI components en styling",
|
|
"order": 8
|
|
},
|
|
{
|
|
"slug": "performance",
|
|
"title": "Performance",
|
|
"group": "infrastructure",
|
|
"description": "Optimalisaties en monitoring",
|
|
"order": 9
|
|
},
|
|
{
|
|
"slug": "webpack-module-resolution",
|
|
"title": "Webpack Module Resolution",
|
|
"group": "bugs",
|
|
"description": "Fix voor Server/Client Component import issues",
|
|
"order": 10
|
|
}
|
|
]
|
|
}
|