comparison relnotes/next @ 45823:793976f9029c

relnotes: drop 5.6 release entries from next Differential Revision: https://phab.mercurial-scm.org/D9282
author Joerg Sonnenberger <joerg@bec.de>
date Sun, 08 Nov 2020 20:12:32 +0100
parents 84eb4c833c41
children d7a508a75d72
comparison
equal deleted inserted replaced
45822:61d63a774490 45823:793976f9029c
1 == New Features == 1 == New Features ==
2 2
3
4 * The memory footprint per changeset and per file during pull/unbundle
5 operations has been significantly reduced.
6 3
7 4
8 == New Experimental Features == 5 == New Experimental Features ==
9 6
10 7
18 15
19 16
20 == Internal API Changes == 17 == Internal API Changes ==
21 18
22 19
23 * `phases.registernew` now takes a set of revisions instead of a list
24 of nodes. `phases.advanceboundary` takes an optional set of revisions
25 in addition to the list of nodes. The corresponeding members of the
26 `phasecache` class follow this change.
27
28 * The `addgroup` member of `revlog` classes no longer keeps a list of
29 all found nodes. It now returns True iff a node was found in the group.
30 An optional callback for duplicated nodes can be used by callers to keep
31 track of all nodes themselve.
32
33 * The `_chaininfocache` of `revlog` classes has been changed from a dict
34 to a LRU cache.