From patchwork Fri Nov 22 19:09:16 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D7508: relnotes: add note about changes to match.{explicit, reverse}dir From: phabricator X-Patchwork-Id: 43447 Message-Id: To: Phabricator Cc: mercurial-devel@mercurial-scm.org Date: Fri, 22 Nov 2019 19:09:16 +0000 martinvonz created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REPOSITORY rHG Mercurial BRANCH default REVISION DETAIL https://phab.mercurial-scm.org/D7508 AFFECTED FILES relnotes/next CHANGE DETAILS To: martinvonz, #hg-reviewers Cc: mercurial-devel diff --git a/relnotes/next b/relnotes/next --- a/relnotes/next +++ b/relnotes/next @@ -15,3 +15,9 @@ == Internal API Changes == + * Matcher instances no longer have a `explicitdir` property. Consider + rewriting your code to use `repo.wvfs.isdir()` and/or + `ctx.hasdir()` instead. Also, the `traversedir` property is now + also called when only `explicitdir` used to be called. That may + mean that you can simple remove the use of `explicitdir` if you + were already using `traversedir`.