issues Search Results · language:Dune language:JavaScript language:Java language:JavaScript language:Java language:Python
Filter by
55.4M results
Description
We have a custom StringUtils class that duplicates functionality already available in Apache Commons Lang 3 (which is
already in our dependencies!).
Our version has known bugs:
- sanitize() ...
Description
TaskService.java is a God Class with 670+ lines handling 8+ responsibilities:
- CRUD operations
- Task assignment
- Status workflow/transitions
- Notifications (inline, not using ...
Description
Database schema changes are managed by Hibernate ddl-auto=update, which is dangerous in production. No migration
history, no rollback capability.
Requirements
- Add Flyway or Liquibase ...
Description
No input validation exists on any API endpoint. Tasks can be created with null titles, negative priorities, and invalid
status codes.
Requirements
- Add Bean Validation annotations (@NotNull, ...
Description
Error handling is inconsistent across the API. Some errors return 500 with stack traces, others return null, and some
throw uncaught exceptions.
Requirements
- Add @ControllerAdvice for ...
Description
There is no API documentation. Developers rely on reading source code to understand endpoints.
Requirements
- Add SpringDoc OpenAPI (swagger-ui)
- Document all REST endpoints
- Include ...
Description
Spring Boot 2.7.x reached End of Life. We need to upgrade to Spring Boot 3.x.
Migration Requirements
- Migrate from javax.* to jakarta.* namespace
- Update Java version requirement to ...
Description
GET /api/tasks returns ALL tasks. We now have 50,000+ tasks and this endpoint causes OutOfMemoryError in production.
Requirements
- Add pagination support (page, size parameters) on all ...
Description
Currently there is no authentication middleware. Any request can access any endpoint. The login endpoint returns a fake
JWT token.
Requirements
- Proper JWT authentication with Spring ...

Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip! Restrict your search to the title by using the in:title qualifier.