feat(tasks,epics): blocked-task warning + epic dates/owner/priority/progress#259
Merged
Merged
Conversation
…rogress Relations: a task blocked_by an open task now shows a "Blocked by N open task(s)" alert in its Linked Tasks panel — making AlianHub's blocked-task alert real. Adds getOpenBlockers + the pure selectOpenBlockers helper and an `openBlockers` action on POST /api/v2/tasks/relations. Additive: the central status-write path is untouched; the panel reuses data it already loads. Epics: schema gains startDate, dueDate, ownerUserId, priority; status adds in_progress; create/update accept + validate the new fields (parseEpicDates, EPIC_PRIORITIES). EpicsPanel shows a priority badge, owner, dates, a % label and an inline status select on top of the existing progress bar. Tests: +16 (selectOpenBlockers/isClosedStatusType, parseEpicDates, priority & status) — full suite 225 pass. Test-cases added under .claude/test-cases/. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
This was referenced Jun 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Closes the two gaps surfaced in the Relations & Epics feature review. Tracked as AHE-3770 and AHE-3771 in the
v14.5.0 - Polish: Relations & Epicssprint.1 · Blocked-task warning (AHE-3770)
A task that is
blocked_byone or more still-open tasks now shows a "⚠ Blocked by N open task(s)" banner in its Linked Tasks panel — making AlianHub's blocked-task alert real.selectOpenBlockers+isClosedStatusType(relationRules.js),getOpenBlockers(relations.js), newopenBlockersaction onPOST /api/v2/tasks/relations.LinkedTasks.vue): banner reuses the existing list response (which already carries each blocker'sstatusType). A blocker counts only while open (statusType !== 'close') and not deleted, so the warning clears automatically when the blocker closes.2 · Epics upgrade (AHE-3771)
Turns the thin v1 into a usable progress layer.
epics):startDate,dueDate,ownerUserId,priority.EPIC_STATUSESaddsin_progress;EPIC_PRIORITIES;parseEpicDates(validates + enforces start ≤ due);validateEpicInputvalidates priority.EpicsPanel.vue): priority badge, owner, dates, a "% · done/total" label, and an inline status select — on top of the existing progress bar.Tests
selectOpenBlockers/isClosedStatusType,parseEpicDates, priority/status). Full suite: 225 pass..claude/test-cases/BlockedTaskWarning.md,.claude/test-cases/EpicEnhancements.md.Notes
🤖 Generated with Claude Code