Mercurial > hg
comparison relnotes/next @ 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 | fa246ada356b |
children | 458504a8cca1 |
comparison
equal
deleted
inserted
replaced
43776:faa8a59f4a06 | 43777:c8e9a3636abe |
---|---|
13 == Backwards Compatibility Changes == | 13 == Backwards Compatibility Changes == |
14 | 14 |
15 | 15 |
16 == Internal API Changes == | 16 == Internal API Changes == |
17 | 17 |
18 * Matcher instances no longer have a `explicitdir` property. Consider | |
19 rewriting your code to use `repo.wvfs.isdir()` and/or | |
20 `ctx.hasdir()` instead. Also, the `traversedir` property is now | |
21 also called when only `explicitdir` used to be called. That may | |
22 mean that you can simply remove the use of `explicitdir` if you | |
23 were already using `traversedir`. |