mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
- Created ISSUE_TEMPLATE directory with 6 specialized templates - Bug report template with environment and severity tracking - Feature request template aligned with data-driven architecture - Documentation improvement template - Package request template for MetaBuilder's package system - DBAL-specific issue template for TS/C++ implementations - Configuration file with links to docs and discussions - Comprehensive PR template with architecture checklists - All templates include MetaBuilder-specific considerations: * Multi-tenant safety checks * Permission level targeting (Levels 1-6) * DBAL usage requirements * Data-driven architecture alignment * Package system conventions Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
6.2 KiB
6.2 KiB
Description
Related Issue
Fixes #
Type of Change
- 🐛 Bug fix (non-breaking change that fixes an issue)
- ✨ New feature (non-breaking change that adds functionality)
- 💥 Breaking change (fix or feature that would cause existing functionality to not work as expected)
- 📚 Documentation update
- 🎨 UI/UX improvement
- ♻️ Code refactoring (no functional changes)
- ⚡ Performance improvement
- ✅ Test additions or updates
- 🔧 Configuration/tooling change
- 📦 Package system change
- 🔒 Security fix
Component/Area Affected
- Frontend (Next.js UI)
- Backend (API/Auth)
- Database (Prisma/Schema)
- DBAL (TypeScript/C++)
- Package System
- Lua Scripting
- Multi-Tenant System
- Permission System (Levels 1-6)
- Workflows
- Documentation
- Testing
- CI/CD
- Other:
Changes Made
Code Changes
Database Changes
- Schema changes (Prisma migrations)
- Seed data updates
- DBAL contract changes (YAML)
Configuration Changes
- Environment variables
- Build configuration
- Package dependencies
Testing
Test Coverage
- Unit tests added/updated
- Integration tests added/updated
- E2E tests added/updated
- No tests needed (documentation, config, etc.)
Test Commands Run
# Example:
# npm run lint
# npm run typecheck
# npm run test:unit -- --run
# npm run test:e2e
Manual Testing
- Tested locally
- Tested in development environment
- Tested with different user permission levels
- Tested multi-tenant scenarios
Screenshots/Recordings
Before
After
Architecture & Design Decisions
Data-Driven Approach
- Changes follow MetaBuilder's data-driven (JSON/Lua) architecture
- Declarative components used instead of hardcoded JSX where applicable
- DBAL used for database operations (not raw Prisma)
Multi-Tenancy
- All queries include
tenantIdfiltering - Tenant isolation verified
- N/A - No database queries
Permission System
- Permission checks implemented at correct levels
- AuthGate or canAccessLevel used where needed
- N/A - No permission-sensitive features
Package System
- Package metadata follows correct structure (metadata.json, components.json)
- Package uses snake_case naming and semver versioning
- Dependencies declared in package metadata
- N/A - No package changes
Security
- Input validation implemented
- No XSS vulnerabilities introduced
- No SQL injection vulnerabilities
- Passwords hashed with SHA-512 (if applicable)
- Lua sandbox restrictions maintained (if applicable)
- No secrets committed to code
Breaking Changes
Breaking Changes: Yes / No
Migration Steps
# Commands needed to migrate:
# npm run db:generate
# npm run db:migrate
Documentation
- README.md updated
- API documentation updated
- Architecture docs updated (docs/architecture/)
- Code comments added/updated
- Migration guide created (if breaking change)
- No documentation needed
Pre-Submission Checklist
Code Quality
- Code follows project conventions (one lambda per file, MUI not Radix/Tailwind)
- ESLint passes (
npm run lint) - TypeScript compiles (
npm run typecheck) - No console errors or warnings
- Code is DRY (Don't Repeat Yourself)
Testing & Verification
- All tests pass (
npm run test:unit -- --run) - Test coverage for new code meets standards
- E2E tests pass (if applicable)
- Manual testing completed
- Tested across different browsers (if UI change)
Database & Schema
- Prisma schema validated (
npx prisma validate) - Database migrations tested
- DBAL conformance tests pass (if DBAL changes)
- N/A - No database changes
Security
- Security vulnerabilities checked
- No sensitive data in commits
- Input validation implemented
- CSRF/XSS protections in place (if applicable)
MetaBuilder-Specific
- Changes align with data-driven architecture principles
- Multi-tenant safety verified (tenantId filtering)
- Permission checks implemented correctly
- DBAL used instead of raw Prisma (where applicable)
- Generic components used where possible (RenderComponent)
Review
- Self-reviewed code changes
- Added TODO comments for deferred work (if any)
- Commit messages are clear and descriptive
- PR title is descriptive
- No unrelated changes included
Additional Notes
Deployment Considerations
- No special deployment steps needed
- Requires environment variable changes
- Requires database migration
- Requires cache invalidation
- Requires server restart
- Other: