comparison relnotes/next @ 48302:1eaf37369eba

relnotes: clear next release notes Differential Revision: https://phab.mercurial-scm.org/D11737
author Raphaël Gomès <rgomes@octobus.net>
date Thu, 04 Nov 2021 12:35:05 +0100
parents 4d2ab365699e
children 4d59e0f909e0
comparison
equal deleted inserted replaced
48301:9327ece2bc6f 48302:1eaf37369eba
1 == New Features == 1 == New Features ==
2 * `debugrebuildfncache` now has an option to rebuild only the index files
3
4 * a new `bookmarks.mode` path option have been introduced to control the
5 bookmark update strategy during exchange with a peer. See hg help paths for
6 details.
7 2
8 3
9 == Default Format Change == 4 == Default Format Change ==
10 5
11 These changes affects newly created repositories (or new clone) done with 6 These changes affects newly created repositories (or new clone) done with
12 Mercurial 6.0. 7 Mercurial XXX.
13 8
14 9
15 == New Experimental Features == 10 == New Experimental Features ==
16 11
17 * Added a new `web.full-garbage-collection-rate` to control performance. See
18 de2e04fe4897a554b9ef433167f11ea4feb2e09c for more information
19
20 == Bug Fixes == 12 == Bug Fixes ==
21 13
22 * `hg fix --working-dir` now correctly works when in an uncommitted merge state
23 * `rhg` (Rust fast-path for `hg`) now supports the full config list syntax
24 * `rhg` now parses some corner-cases for revsets correctly
25 * `hg email -o` now works again when not mentioning a revision
26 * Lots of Windows fixes
27 * Lots of miscellaneous other fixes
28 14
29 == Backwards Compatibility Changes == 15 == Backwards Compatibility Changes ==
30 16
31 17
32 == Internal API Changes == 18 == Internal API Changes ==
33 19
34 The following functions have been removed: 20 The following functions have been removed:
35 21
36 * `dirstate.normal`
37 * `dirstate.normallookup`
38 * `dirstate.otherparent`
39 * `dirstate.add`
40 * `dirstate.remove`
41 * `dirstate.drop`
42 * `dirstate.__getitem__`
43
44 Miscellaneous: 22 Miscellaneous:
45
46 * `wireprotov1peer`'s `batchable` is now a simple function and not a generator
47 anymore