@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.

Deprecate Conduit method "diffusion.getrecentcommitsbypath"

Summary:
See D19558. This method has no callers and just wraps `diffusion.historyquery`, since D5960 (2013).

This was introduced in D315 (which didn't make it out of FB, I think) inside Facebook for unclear purposes in 2011.

Test Plan: Grepped for callers, found none.

Reviewers: amckinley

Reviewed By: amckinley

Subscribers: artms

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

+8
+8
src/applications/diffusion/conduit/DiffusionGetRecentCommitsByPathConduitAPIMethod.php
··· 9 9 return 'diffusion.getrecentcommitsbypath'; 10 10 } 11 11 12 + public function getMethodStatus() { 13 + return self::METHOD_STATUS_DEPRECATED; 14 + } 15 + 16 + public function getMethodStatusDescription() { 17 + return pht('Obsoleted by "diffusion.historyquery".'); 18 + } 19 + 12 20 public function getMethodDescription() { 13 21 return pht( 14 22 'Get commit identifiers for recent commits affecting a given path.');