From patchwork Fri Nov 22 23:01:21 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: 43450 Message-Id: To: Phabricator Cc: mercurial-devel@mercurial-scm.org Date: Fri, 22 Nov 2019 23:01:21 +0000 martinvonz updated this revision to Diff 18322. REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D7508?vs=18319&id=18322 BRANCH default CHANGES SINCE LAST ACTION https://phab.mercurial-scm.org/D7508/new/ REVISION DETAIL https://phab.mercurial-scm.org/D7508 AFFECTED FILES relnotes/next CHANGE DETAILS To: martinvonz, #hg-reviewers Cc: dlax, 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 simply remove the use of `explicitdir` if you + were already using `traversedir`.