issues Search Results · language:Dune language:Python language:JavaScript language:Java linked:pr language:CSS
Filter by
5.9M results
Bug
createUser(payload) pushes a user object into the in-memory store and returns that same object reference. A caller can
mutate the returned object and accidentally corrupt the stored user record.
...
Not all defaults are viable for all engine choices, need to diverge defaults for these.
Target version: 1.10.0
Bug
registerUser() in apps/api/src/services/authService.js generates two separate usr_${Date.now()} IDs:
return {
id: `usr_${Date.now()}`,
email: payload.email,
role: payload.role,
token: ...
Bug
Both createProposal() in apps/api/src/services/proposalService.js and createReview() in
apps/api/src/services/reviewService.js build objects as:
// proposalService.js
const proposal = { id: `prp_${Date.now()}`, ...
Bug
createJob() in apps/api/src/services/jobService.js builds the job object as:
const job = { id: `job_${Date.now()}`, status: open , ...payload };
Because payload is spread after the server-generated ...
Bug
createUser() in apps/api/src/services/userService.js builds the user object as:
const user = { id: `usr_${Date.now()}`, ...payload };
Because payload is spread after the server-generated id, a caller ...
Bug
listNotifications() currently returns the internal in-memory notifications array directly. Any caller that receives the
list can mutate the array or notification objects and corrupt later service ...
Bug
listMessages() currently returns the internal in-memory messages array directly. Any caller that receives the list can
mutate the array or message objects and corrupt later service results.
Expected ...
Rec 36 of the 2026-05-21 audit (upstream NSA/ghidra#1871) wants the decompiler GUI to stop flushing its entire cache on
local edits like renaming a variable.
The abstract plan in docs/decompiler/CACHE_FLUSH_1871.md ...

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.