TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: How do you track bugs filed against an in-review feature?

2 pointsby kareemmalmost 5 years ago
I&#x27;ve built software project management software and still haven&#x27;t seen a great solution for this.<p>Here&#x27;s the scenario:<p>1. You wrote a new feature and opened a PR 2. Your UAT&#x2F;QA people test it 3. They find bugs &#x2F; issues to address<p>Where do they put those issues? Some options:<p>1. They add them as comments on the original feature ticket. This seems like a bad idea because comments don&#x27;t have a state (needs doing, done, won&#x27;t do) so it&#x27;s hard to track how much work is left to do.<p>2. They add them as tasks on the original feature ticket. Not terrible but hard to record repro steps (with images etc if necessary) as a task<p>3. They add them as NEW issues and link them to the original issue. Still not a great option: if linking doesn&#x27;t happen, the new issues are orphaned. Plus it&#x27;s a bunch of work to relate issues (in some issue trackers).<p>I default to #3 solution but wanted to see if there were other approaches I hadn&#x27;t considered.<p>My goals are:<p>1. Capture bugs with repro steps and urls&#x2F;pictures if necessary<p>2. Be able to triage them (will do &#x2F; won&#x27;t do), assign them, and have state (open, in progress, closed, etc) to see how many are left to ship the original feature<p>3. Do it with as little pain as possible.<p>How do you solve this problem?

1 comment

jkaalmost 5 years ago
Just my two cents, but I think you&#x27;re taking a good approach with #3.<p>Reasoning:<p>In addition to the task-state problem you mention, it&#x27;s nice to treat written feature requests as near-immutable. Updates to them after they&#x27;re written -- especially when initiated outside the development team -- can lead to the classic complaint around &quot;ever-shifting requirements&quot;. So that&#x27;s another reason to avoid #1.<p>Subtasks (approach #2) is a bit better, but again it involves changing an object&#x2F;document that may have previously been considered relatively stable.<p>Perhaps you had estimates and sprint scopes attached to the parent task -- if so, adding&#x2F;modifying subtasks could invalidate (or at least confuse) those.<p>Under these considerations, #3 therefore wins as a kind of &#x27;append-only log&#x27; of tasks.<p>If you can, and if your organizational culture supports it, you could ask QA to indicate whether they feel that the issues they raise reflect problems in the original requirements, or implementation problems.<p>That way you may be able to align product managers with precise requirements authorship, and developers with quality implementation by identifying and improving the areas where bugs are being raised.<p>Of course, QA intensity and output could vary as well, so it&#x27;s not foolproof. And as with any theoretical work process, it often falls apart due to practical considerations like staffing changes, project&#x2F;company direction shifts, and so forth. So you shouldn&#x27;t cling to it at the detriment of the team&#x27;s health and progress.<p>But the long and short of it is that #3 seems like a good approach to me :)