issues Search Results · language:Dune language:Python language:JavaScript language:JavaScript language:Python language:Java
Filter by
55.4M results
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
The pom.xml explicitly declares Jackson Databind 2.13.0, which conflicts with the version managed by Spring Boot 2.7.18
parent POM.
!-- FIXME: jackson version conflict with spring boot parent ...
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 ...
Problem
http.HTTPStatus currently exposes enough ad-hoc member shape for .value, .phrase, and == 200, but the constants are not
full IntEnum members.
Current observed behavior from #95 investigation: ...
priority:p2
project:mamba
type:bug
Description
WebConfig.java has CORS configured to allow ALL origins (*), ALL methods, and ALL headers. This was a temporary fix that
was never addressed.
// FIXME: This is too permissive
registry.addMapping( ...
Description
Found several pieces of dead code:
- TaskService.getOldDashboardStats() - deprecated, referenced by decommissioned admin panel
- TaskService.migrateLegacyIds() - was for JIRA migration ...
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
The codebase mixes naming conventions inconsistently:
| Convention | Examples |
| --- | --- |
| camelCase | reporterId, projectCode, createdDate |
| snake_case | assignee_id, due_date, created_at, ...
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 ...

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.