Show More
@@ -1,37 +1,42 b'' | |||||
1 | == New Features == |
|
1 | == New Features == | |
2 |
|
2 | |||
3 | * New config `commands.commit.post-status` shows status after successful |
|
3 | * New config `commands.commit.post-status` shows status after successful | |
4 | commit. |
|
4 | commit. | |
5 |
|
5 | |||
6 |
|
6 | |||
7 | == New Experimental Features == |
|
7 | == New Experimental Features == | |
8 |
|
8 | |||
9 | * New config `experimental.log.topo` makes `hg log -G` use |
|
9 | * New config `experimental.log.topo` makes `hg log -G` use | |
10 | topological sorting. This is especially useful for aliases since it |
|
10 | topological sorting. This is especially useful for aliases since it | |
11 | lets the alias accept an `-r` option while still using topological |
|
11 | lets the alias accept an `-r` option while still using topological | |
12 | sorting with or without the `-r` (unlike if you use the `sort(..., |
|
12 | sorting with or without the `-r` (unlike if you use the `sort(..., | |
13 | topo)` revset). |
|
13 | topo)` revset). | |
14 |
|
14 | |||
15 |
|
15 | |||
16 | == Bug Fixes == |
|
16 | == Bug Fixes == | |
17 |
|
17 | |||
18 |
|
18 | |||
19 | == Backwards Compatibility Changes == |
|
19 | == Backwards Compatibility Changes == | |
20 |
|
20 | |||
21 | * Removed (experimental) support for log graph lines mixing |
|
21 | * Removed (experimental) support for log graph lines mixing | |
22 | parent/grandparent styles. Setting |
|
22 | parent/grandparent styles. Setting | |
23 | e.g. `experimental.graphstyle.parent = !` and |
|
23 | e.g. `experimental.graphstyle.parent = !` and | |
24 | `experimental.graphstyle.grandparent = 3.` would use `!` for the |
|
24 | `experimental.graphstyle.grandparent = 3.` would use `!` for the | |
25 | first three lines of the graph and then `.`. This is no longer |
|
25 | first three lines of the graph and then `.`. This is no longer | |
26 | supported. |
|
26 | supported. | |
27 |
|
27 | |||
|
28 | * If `ui.origbackuppath` had been (incorrectly) configured to point | |||
|
29 | to a file, we will now replace that file by a directory and put | |||
|
30 | backups in that directory. This is similar to how we would | |||
|
31 | previously replace files *in* the configured directory by | |||
|
32 | subdirectories. | |||
28 |
|
33 | |||
29 | == Internal API Changes == |
|
34 | == Internal API Changes == | |
30 |
|
35 | |||
31 | * Matchers are no longer iterable. Use `match.files()` instead. |
|
36 | * Matchers are no longer iterable. Use `match.files()` instead. | |
32 |
|
37 | |||
33 | * `match.visitdir()` and `match.visitchildrenset()` now expect the |
|
38 | * `match.visitdir()` and `match.visitchildrenset()` now expect the | |
34 | empty string instead of '.' to indicate the root directory. |
|
39 | empty string instead of '.' to indicate the root directory. | |
35 |
|
40 | |||
36 | * `util.dirs()` and `util.finddirs()` now include an entry for the |
|
41 | * `util.dirs()` and `util.finddirs()` now include an entry for the | |
37 | root directory (empty string). |
|
42 | root directory (empty string). |
General Comments 0
You need to be logged in to leave comments.
Login now