##// END OF EJS Templates
relnotes: add 6.0.1 and 6.0.2 notes...
Raphaël Gomès -
r49912:75676122 6.0.2 stable
parent child Browse files
Show More
@@ -1,72 +1,94 b''
1 = Mercurial 6.0.2 =
2
3 * Fix `hg incoming` and `hg outgoing` with remote subrepos on Windows
4 * Fix Rust build on MacOS
5 * Fix a (15 year old?) bug where some data loss could happen in a very tight race window (f38ae2d7390e + ccd9cb73125c)
6 * Remove support for running `hg unamend` on merge changesets at it was never actually implemented
7 * Fix stream-clone requirements filtering which caused some stream-clones to be unusable from an older version of Mercurial
8 * Rename dirstate-v2 configuration name from `exp-rc-dirstate-v2` to `use-dirstate-v2`. This was overlooked in `6.0`, the old name will be kept as an alias for compatibility.
9 * Fix a bug where the branchmap could point to uncommitted data
10
11 = Mercurial 6.0.1 =
12
13 * Improve documentation around Rust (see hg help rust) and rust-related actions
14 * Improve upgrade/downgrade edge cases for dirstate-v2
15 * Make the test suite nicer to big-endian platforms
16 * Make the test suite nicer to NetBSD
17 * Fix a performance regression on fsmonitor (issue6612)
18 * Add fixes for Python 3.10
19 * Fix a deadlock when using sparse and share-safe together
20
21 = Mercurial 6.0 =
22
1 == New Features ==
23 == New Features ==
2 * `debugrebuildfncache` now has an option to rebuild only the index files
24 * `debugrebuildfncache` now has an option to rebuild only the index files
3 * a new `bookmarks.mode` path option have been introduced to control the
25 * a new `bookmarks.mode` path option have been introduced to control the
4 bookmark update strategy during exchange with a peer. See `hg help paths` for
26 bookmark update strategy during exchange with a peer. See `hg help paths` for
5 details.
27 details.
6 * a new `bookmarks.mirror` option has been introduced. See `hg help bookmarks`
28 * a new `bookmarks.mirror` option has been introduced. See `hg help bookmarks`
7 for details.
29 for details.
8 * more commands support detailed exit codes when config `ui.detailed-exit-codes` is enabled
30 * more commands support detailed exit codes when config `ui.detailed-exit-codes` is enabled
9
31
10 == Default Format Change ==
32 == Default Format Change ==
11
33
12 == New Experimental Features ==
34 == New Experimental Features ==
13
35
14 * '''Major feature''': version 2 of the dirstate is available (the first version is as old as Mercurial itself). It allows for much faster working copy inspection (status, diff, commit, update, etc.) and richer information (symlink and exec info on Windows, etc.). The format has been frozen with room for some future evolution and the current implementations (Python, Python + C, Python + Rust or pure Rust) should be compatible with any future change or optimization that the format allows. You can get more information [[https://www.mercurial-scm.org/repo/hg/file/tip/mercurial/helptext/internals/dirstate-v2.txt | in the internal documentation]]
36 * '''Major feature''': version 2 of the dirstate is available (the first version is as old as Mercurial itself). It allows for much faster working copy inspection (status, diff, commit, update, etc.) and richer information (symlink and exec info on Windows, etc.). The format has been frozen with room for some future evolution and the current implementations (Python, Python + C, Python + Rust or pure Rust) should be compatible with any future change or optimization that the format allows. You can get more information [[https://www.mercurial-scm.org/repo/hg/file/tip/mercurial/helptext/internals/dirstate-v2.txt | in the internal documentation]]
15 * Added a new `web.full-garbage-collection-rate` to control performance. See
37 * Added a new `web.full-garbage-collection-rate` to control performance. See
16 de2e04fe4897a554b9ef433167f11ea4feb2e09c for more information
38 de2e04fe4897a554b9ef433167f11ea4feb2e09c for more information
17 * Added a new `histedit.later-commits-first` option to affect the ordering of commits in `chistedit` to match the order in `hg log -G`. It will affect the text-based version before graduating from experimental.
39 * Added a new `histedit.later-commits-first` option to affect the ordering of commits in `chistedit` to match the order in `hg log -G`. It will affect the text-based version before graduating from experimental.
18
40
19 == Bug Fixes ==
41 == Bug Fixes ==
20
42
21 * `hg fix --working-dir` now correctly works when in an uncommitted merge state
43 * `hg fix --working-dir` now correctly works when in an uncommitted merge state
22 * Unintentional duplicated calls to `hg fix`'s internals were removed, making it potentially much faster
44 * Unintentional duplicated calls to `hg fix`'s internals were removed, making it potentially much faster
23 * `rhg cat` can be called without a revision
45 * `rhg cat` can be called without a revision
24 * `rhg cat` can be called with the `.` revision
46 * `rhg cat` can be called with the `.` revision
25 * `rhg cat` is more robust than before with regards to edge cases. Some still remain like a tag or bookmark that is ambiguous with a nodeid prefix, only nodeids (prefixed or not) are supported as of now.
47 * `rhg cat` is more robust than before with regards to edge cases. Some still remain like a tag or bookmark that is ambiguous with a nodeid prefix, only nodeids (prefixed or not) are supported as of now.
26 * `rhg cat` is even faster
48 * `rhg cat` is even faster
27 * `rhg` (Rust fast-path for `hg`) now supports the full config list syntax
49 * `rhg` (Rust fast-path for `hg`) now supports the full config list syntax
28 * `rhg` now parses some corner-cases for revsets correctly
50 * `rhg` now parses some corner-cases for revsets correctly
29 * Fixed an `fsmonitor` on Python 3 during exception handling
51 * Fixed an `fsmonitor` on Python 3 during exception handling
30 * Lots of Windows fixes
52 * Lots of Windows fixes
31 * Lots of miscellaneous other fixes
53 * Lots of miscellaneous other fixes
32 * Removed a CPython-specific compatibility hack to improve support for alternative Python implementations
54 * Removed a CPython-specific compatibility hack to improve support for alternative Python implementations
33
55
34 == Backwards Compatibility Changes ==
56 == Backwards Compatibility Changes ==
35
57
36
58
37 == Internal API Changes ==
59 == Internal API Changes ==
38
60
39 The following functions have been removed:
61 The following functions have been removed:
40
62
41 * `dirstate.normal`
63 * `dirstate.normal`
42 * `dirstate.normallookup`
64 * `dirstate.normallookup`
43 * `dirstate.otherparent`
65 * `dirstate.otherparent`
44 * `dirstate.add`
66 * `dirstate.add`
45 * `dirstate.addfile`
67 * `dirstate.addfile`
46 * `dirstate.remove`
68 * `dirstate.remove`
47 * `dirstate.drop`
69 * `dirstate.drop`
48 * `dirstate.dropfile`
70 * `dirstate.dropfile`
49 * `dirstate.__getitem__`
71 * `dirstate.__getitem__`
50 * `dirstatemap.nonnormalentries`
72 * `dirstatemap.nonnormalentries`
51 * `dirstatemap.nonnormalset`
73 * `dirstatemap.nonnormalset`
52 * `dirstatemap.otherparentset`
74 * `dirstatemap.otherparentset`
53 * `dirstatemap.non_normal_or_other_parent_paths`
75 * `dirstatemap.non_normal_or_other_parent_paths`
54 * `dirstateitem.dm_nonnormal`
76 * `dirstateitem.dm_nonnormal`
55 * `dirstateitem.dm_otherparent`
77 * `dirstateitem.dm_otherparent`
56 * `dirstateitem.merged_removed`
78 * `dirstateitem.merged_removed`
57 * `dirstateitem.from_p2`
79 * `dirstateitem.from_p2`
58 * `dirstateitem.merged`
80 * `dirstateitem.merged`
59 * `dirstateitem.new_merged`
81 * `dirstateitem.new_merged`
60 * `dirstateitem.new_added`
82 * `dirstateitem.new_added`
61 * `dirstateitem.new_from_p2`
83 * `dirstateitem.new_from_p2`
62 * `dirstateitem.new_possibly_dirty`
84 * `dirstateitem.new_possibly_dirty`
63 * `dirstateitem.new_normal`
85 * `dirstateitem.new_normal`
64 * `dirstateitem.from_p2_removed`
86 * `dirstateitem.from_p2_removed`
65
87
66 Miscellaneous:
88 Miscellaneous:
67
89
68 * `wireprotov1peer`'s `batchable` is now a simple function and not a generator
90 * `wireprotov1peer`'s `batchable` is now a simple function and not a generator
69 anymore
91 anymore
70 * The Rust extensions (and by extension the experimental `rhg status`) only use a tree-based dirstate in-memory, even when using dirstate-v1. See bf8837e3d7cec40fe649c47163a3154dda03fa16 for more details
92 * The Rust extensions (and by extension the experimental `rhg status`) only use a tree-based dirstate in-memory, even when using dirstate-v1. See bf8837e3d7cec40fe649c47163a3154dda03fa16 for more details
71 * The Rust minimum supported version is now 1.48.0 in accordance with out policy of keeping up with Debian stable
93 * The Rust minimum supported version is now 1.48.0 in accordance with out policy of keeping up with Debian stable
72 * The test harness plays nicer with the NixOS sandbox No newline at end of file
94 * The test harness plays nicer with the NixOS sandbox
General Comments 0
You need to be logged in to leave comments. Login now