# HG changeset patch # User Martin von Zweigbergk # Date 2019-11-22 19:08:59 # Node ID c8e9a3636abe5bfbbfe1a0af2116f5f4c72550b0 # Parent faa8a59f4a063100b9e458b948dfbbf974dc0fa4 relnotes: add note about changes to match.{explicit,reverse}dir Differential Revision: https://phab.mercurial-scm.org/D7508 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`.