changeset 43777:c8e9a3636abe

relnotes: add note about changes to match.{explicit,reverse}dir Differential Revision: https://phab.mercurial-scm.org/D7508
author Martin von Zweigbergk <martinvonz@google.com>
date Fri, 22 Nov 2019 11:08:59 -0800
parents faa8a59f4a06
children 888bd39ed555
files relnotes/next
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/relnotes/next	Thu Nov 21 22:43:01 2019 +0900
+++ b/relnotes/next	Fri Nov 22 11:08:59 2019 -0800
@@ -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`.