issues Search Results · language:Dune language:JavaScript language:Java language:JavaScript language:HTML language:Java
Filter by
39.9M results
Description
The codebase mixes naming conventions inconsistently:
| Convention | Examples |
| --- | --- |
| camelCase | reporterId, projectCode, createdDate |
| snake_case | assignee_id, due_date, created_at, ...
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
TaskService.java is a God Class with 670+ lines handling 8+ responsibilities:
- CRUD operations
- Task assignment
- Status workflow/transitions
- Notifications (inline, not using ...
Description
Our test suite has multiple problems:
- 7 tests are @Disabled because they were flaky or TODO
- Several tests have no assertions (inflate coverage numbers)
- No @BeforeEach cleanup ...
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 ...
Problem
The orders page (/orders) fails to load with two compounding errors:
1. GET /api/order/my does not exist — backend only has GET /order/{userId}, returning 404/403 for the request the
frontend ...
Description
Found hardcoded credentials in multiple files:
| File | Type | Detail |
| --- | --- | --- |
| application.properties | DB password | Commented-out production password (never rotated!) |
| ...
Description
DatabaseHelper.java contains raw JDBC code that:
1. Concatenates user input directly into SQL strings (SQL injection)
2. Never closes ResultSet, Statement, or Connection objects (resource ...
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
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 ...

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.