File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -12,14 +12,17 @@ Migrating between versions
12
12
13
13
.. _migrating_6x_7x :
14
14
15
- Migrating 6.x .x — 7.x .x
15
+ Migrating 6.5 .x — 7.0 .x
16
16
--------------------------
17
17
- The way that wildcards when specifing file paths work in certain caseshas changed in 7.x:
18
18
19
19
- Previously, ``* `` would incorrectly match directory separators, making
20
20
precise matching difficult. This requires ``[paths] `` such as ``*tests/* ``
21
21
to be changed to ``*/tests/* ``.
22
22
23
+ - ``** `` now matches any number of nested directories. If you wish to retain the behavior of
24
+ ``**/tests/* `` in previous versions then ``*/**/tests/* `` can be used instead.
25
+
23
26
- When remapping file paths with ``[paths] ``, a path will be remapped only if
24
27
the resulting path exists. Ensure that remapped ``[paths] `` exist when upgrading
25
28
as this is now being enforced.
You can’t perform that action at this time.
0 commit comments