managarten/apps/todo
Till-JS 4197b61622 fix(todo): add input validation, N+1 fix, and RRULE bounds checking
Security & Validation:
- Add @IsNotEmpty and @MinLength(1) validators to prevent empty inputs
  - CreateTaskDto.title
  - CreateLabelDto.name
  - CreateProjectDto.name
- Add German error messages for validation failures

Performance:
- Fix N+1 query in network.service.ts getGraph()
  - Batch load all task-label relationships in single query
  - Reduces queries from O(n) to O(1) for label fetching

Security:
- Add validateRRule() to prevent DoS via malicious recurrence rules
  - Reject rules > 500 chars
  - Reject rules with > 5000 occurrences in 10 years
  - Prevents hourly/minutely abuse while allowing daily tasks

Cleanup:
- Remove debug console.log from tasks.svelte.ts

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-10 14:25:24 +01:00
..
apps fix(todo): add input validation, N+1 fix, and RRULE bounds checking 2025-12-10 14:25:24 +01:00
docs feat(todo): add task metadata fields and mana page 2025-12-09 14:29:56 +01:00
packages/shared feat(todo): add multiple kanban boards with task editing features 2025-12-09 14:41:50 +01:00
CLAUDE.md fix(todo): use TEXT for user_id columns (Better Auth compatibility) 2025-12-09 16:24:22 +01:00
package.json feat(contacts): add import/export with Google Contacts integration 2025-12-03 15:54:31 +01:00