relnotes/next
author Yuya Nishihara <yuya@tcha.org>
Fri, 23 Oct 2020 20:10:17 +0900
branchstable
changeset 45757 14ac6a74e7e7
parent 45751 60d0634c43c2
child 45761 0599c83cdf5c
child 45818 c4ab93849383
permissions -rw-r--r--
ui: fix echo back of ui.prompt() to not concatenate None as bytes Spotted while writing tests for the issue6425. The default value may be None.

== New Features ==

 * `hg mv -A` can now be used with `--at-rev`. It behaves just like
   `hg cp -A --at-rev`, i.e. it marks the destination as a copy of the
   source whether or not the source still exists (but the source must
   exist in the parent revision).

 * New revset predicate `diffcontains(pattern)` for filtering revisions
   in the same way as `hg grep --diff pattern`.


== New Experimental Features ==



== Bug Fixes ==



== Backwards Compatibility Changes ==



== Internal API Changes ==

 * `merge.update()` is now private (renamed to `_update()`). Hopefully
   the higher-level functions available in the same module cover your
   use cases.