@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix impropery history graph trace in Mercurial

Summary: Fixes T11267. This data was coming back weird (in reverse order relative to the graph itself). Previously it worked OK anyway, but the new logic is a little more sensitive to the input.

Test Plan: Viewed a Mercurial repository with linear history, saw linear history.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11267

Differential Revision: https://secure.phabricator.com/D16229

+1 -1
+1 -1
src/applications/diffusion/conduit/DiffusionHistoryQueryConduitAPIMethod.php
··· 173 173 } 174 174 175 175 $hash_list = array_reverse($hash_list); 176 - $this->parents = $parent_map; 176 + $this->parents = array_reverse($parent_map, true); 177 177 178 178 return DiffusionQuery::loadHistoryForCommitIdentifiers( 179 179 $hash_list,