issues Search Results · language:Dune language:Python language:JavaScript language:Python language:JavaScript language:Java
Filter by
55.4M results
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 ...
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 ...
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
The custom sanitize() method in StringUtils only removes script tags but doesn t handle:
- img onerror=... payloads
- Event handlers (onload, onmouseover, etc.)
- URL-encoded payloads ...
layoutPositionGroups — добавить разбивку по sleeve_id Сейчас это заглушка return [list]. Нужно разбить позиции на группы
по sleeve_id, потому что втулка — жёсткое физическое ограничение: все рулоны одной ...
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
The DateUtils.getQuarter() method returns quarter values 0-3 instead of the expected 1-4.
January returns 0 instead of 1, April returns 1 instead of 2, etc.
Root Cause
Calendar.MONTH is ...

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.