next
51 lines
| 1.2 KiB
| text/plain
|
TextLexer
/ relnotes / next
Martin von Zweigbergk
|
r42457 | == New Features == | ||
Martin von Zweigbergk
|
r47837 | |||
* `hg config` now has a `--source` option to show where each | ||||
configuration value comes from. | ||||
Joerg Sonnenberger
|
r46880 | |||
r47762 | == Default Format Change == | |||
These changes affects newly created repositories (or new clone) done with | ||||
Mercurial 5.8. | ||||
r47763 | ||||
Martin von Zweigbergk
|
r44847 | == New Experimental Features == | ||
Martin von Zweigbergk
|
r44817 | |||
Manuel Jacob
|
r45764 | |||
== Bug Fixes == | ||||
Manuel Jacob
|
r45762 | |||
Martin von Zweigbergk
|
r42457 | == Backwards Compatibility Changes == | ||
Martin von Zweigbergk
|
r44880 | |||
Martin von Zweigbergk
|
r42457 | == Internal API Changes == | ||
r48558 | The Dirstate API have been updated as the previous function leaked some | |||
internal details and did not distinct between two important cases: "We are | ||||
changing parent and need to adjust the dirstate" and "some command is changing | ||||
which file is tracked". To clarify the situation: | ||||
Joerg Sonnenberger
|
r47373 | |||
r48558 | * the following functions have been deprecated, | |||
- dirstate.add, | ||||
- dirstate.normal, | ||||
- dirstate.normallookup, | ||||
- dirstate.merge, | ||||
- dirstate.otherparent, | ||||
- dirstate.remove, | ||||
- dirstate.drop, | ||||
* these new functions are added for the "adjusting parents" use-case: | ||||
- dirstate.update_file, | ||||
- dirstate.update_file_p1, | ||||
* these new function are added for the "adjusting wc file" use-case": | ||||
- dirstate.set_tracked, | ||||
- dirstate.set_untracked, | ||||
- dirstate.set_clean, | ||||
- dirstate.set_possibly_dirty, | ||||
See inline documentation of the new functions for details. | ||||