Skip to content
Snippets Groups Projects
Commit 3c8e4c6e authored by Augie Fackler's avatar Augie Fackler
Browse files

merge: stable heads

I forgot to pull before rolling rc1, so we just have a couple of
patches that missed the rc1 train. Mea culpa.
parents 41f8f38d 5be3e2ed
No related branches found
No related tags found
No related merge requests found
......@@ -220,6 +220,7 @@
def _mbox(mbox, sender, recipients, msg):
'''write mails to mbox'''
# TODO: use python mbox library for proper locking
with open(mbox, b'ab+') as fp:
# Should be time.asctime(), but Windows prints 2-characters day
# of month instead of one. Make them print the same thing.
......
......@@ -11,6 +11,24 @@
for compression. The default is single threaded operation. Currently
only supported for zstd.
== Default Format Change ==
These changes affects newly created repositories (or new clone) done with
Mercurial 5.8.
* The `ZSTD` compression will now be used by default for new repositories
when available. This compression format was introduced in Mercurial 5.0,
released in May 2019. See `hg help config.format.revlog-compression` for
details.
* Mercurial installation built with the Rust parts will now use the
"persistent nodemap" feature by default. This feature was introduced in
Mercurial 5.4 (May 2020). However Mercurial instalation built without the
fast Rust implementation will refuse to interract with them by default.
This restriction can be lifted through configuration.
See `hg help config.format.use-persistent-nodemap` for details
== New Experimental Features ==
* There's a new `diff.merge` config option to show the changes
......@@ -22,6 +40,7 @@
== Bug Fixes ==
* gracefully recover from inconsistent persistent-nodemap data from disk.
== Backwards Compatibility Changes ==
......@@ -31,7 +50,7 @@
repositories violate this condition. The revlog code will now
silentely swap the parents if this condition is tested. This can
change the output of `hg log` when explicitly asking for first or
second parent.
second parent. The changesets "nodeid" are not affected.
== Internal API Changes ==
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment