Release 2.1.182 (2026-08-08)¶
Bug fixes¶
- atomically re-parent ad-hoc children via replaceParent (#2692) The ad-hoc drain re-parented a closed child from the live ad-hoc epic into its close-quarter archive with add-before-remove (add_child then remove_child). GitHub's native sub-issues enforce a single parent, so addSubIssue was rejected while the child was still linked to the live epic, deadlocking the drain against real GitHub. Proven live by #2677.
Add reparent_child() using addSubIssue with replaceParent: true, which moves a child to a new parent in one atomic call (no orphan window, no separate remove). Replace the add-before-remove pair in both apply_adhoc_drain and the rollup() ad-hoc event-path branch. add_child/remove_child are left intact for their other callers.
CI Evidence: All gates passed — full audit bundle available. Download →