py-mercurial: update to 6.7.

= Mercurial 6.7 =

As usual, a *lot* of patches don't make it to this list.

== New Features ==

 * JSON templates can now use structured diffstat data
 * Support rhg status --rev --rev
 * The index for REVLOGv1 now has a Rust implementation
 * Improved `hg censor`'s output
 * censor: add a command flag to skip the head checks
 * censor: accept multiple revision in a single call
 * usage: add a `usage.repository-role` config
 * branchmap: use mmap for faster revbranchcache loading
 * crecord: enable search hotkeys (issue6834)
 * hg-core: separate timestamp and extra methods
 * annotate: limit output to range of lines
 * unbundle: faster computation of changed heads
 * Large improvements of some of the phases code (23950e39281f)
 * rust-filepatterns: export glob_to_re function

== New Experimental Features ==

 * Introduce `hg admin::chainsaw-update` for automation and *advanced* users

== Bug Fixes ==

 * templatekw: fix inconsistency of diffstat with diff.merge
 * The endless stream of Python 3 cleanups continues
 * Improved setup.py robustness
 * Improved test suite robustness
 * add: don't attempt to add back removed files unless explicitly listed
 * statprof: handle `lineno == None` in more cases
 * rust: fix cargo doc for hg-cpython
 * rust-python-index: don't panic on a corrupted index when calling from Python
 * debugindexstats: handle the lack of Rust support better
 * matchers: use correct method for finding index in vector
 * narrow: strip trailing `/` from manifest dir before matching it
 * cext: fix potential memory leaks of list items appended with PyList_Append
 * doc: document that labels must have a dot in them to have an effect
 * debugformat: fix formatting for compression level
 * obsutil: sort metadata before comparing in geteffectflag()
 * crecord: drop calls to `curses.endwin()`
 * rust-index: don't use mutable borrow for head-diff computation
 * rust-index: don't use mutable borrow to computed filtered heads


== Backwards Compatibility Changes ==

Users of the Rust extensions and/or `rhg` should be aware that the new Rust
index can result in a performance degradation for push/pull on repositories
*not* using `persistent-nodemap` (see `hg help config.format.use-persistent-nodemap`).

If this is something that matters to you, please reach out to us as this is not
an insurmountable obstacle. This is a choice base on the assumption that
there are few people in this situation and our time should be spent on more
pressing matters.

== Internal API Changes ==

 * 62913:498017baa34b "cleanup: remove some code scheduled to be removed after 5.9"
 * 62914:88ef80210d67 "cleanup: drop `dirstate.is_changing_parent` deprecated since 6.5"
 * 62915:591845f89ada "cleanup: drop `path.pushloc` deprecated since 6.5"
 * 62916:d8f65fc72e7b "cleanup: drop deprecated config attribute on the revlog class"
 * 62917:5c9c41273367 "cleanup: turn `pathsuboption` deprecation warning into an error"
 * 62918:7b837fabc990 "cleanup: turn `wrappedfunction` deprecation warning into an error"
 * 62919:eda075d7b2ac "cleanup: turn `wrapfunction` deprecation warning into an error"
 * 62920:c845479fc64d "cleanup: drop the `bytes` compatibility for attribute related function"
 * 63464:dcaa2df1f688 "changelog: never inline changelog"
 * 63465:a93e52f0b6ff "changelog: disallow delayed write on inline changesets"
 * 63825:79cd29d598af "dirstate: make the `transaction` argument of `setbranch` mandatory"

== Miscellaneous ==

 * perf: support --template on perf::phases
 * perf: add a --as-push option to perf::unbundle
 * debug: add a debug::unbundle command that simulate the unbundle from a push
 * Lots of refactorings to prepare for performance improvements and remove tech debt
This commit is contained in:
wiz 2024-03-17 15:12:16 +00:00
parent 63f5962d63
commit 273ac1c1ef
3 changed files with 10 additions and 7 deletions

View File

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.46 2023/12/07 09:31:36 wiz Exp $
@comment $NetBSD: PLIST,v 1.47 2024/03/17 15:12:16 wiz Exp $
bin/hg
${PYSITELIB}/hgdemandimport/__init__.py
${PYSITELIB}/hgdemandimport/__init__.pyc
@ -459,6 +459,9 @@ ${PYSITELIB}/mercurial/__version__.pyo
${PYSITELIB}/mercurial/admin/__init__.py
${PYSITELIB}/mercurial/admin/__init__.pyc
${PYSITELIB}/mercurial/admin/__init__.pyo
${PYSITELIB}/mercurial/admin/chainsaw.py
${PYSITELIB}/mercurial/admin/chainsaw.pyc
${PYSITELIB}/mercurial/admin/chainsaw.pyo
${PYSITELIB}/mercurial/admin/verify.py
${PYSITELIB}/mercurial/admin/verify.pyc
${PYSITELIB}/mercurial/admin/verify.pyo

View File

@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.143 2024/02/19 12:33:17 wiz Exp $
$NetBSD: distinfo,v 1.144 2024/03/17 15:12:16 wiz Exp $
BLAKE2s (mercurial-6.6.3.tar.gz) = 42834320d3c7f800c0a1064732f0a434c6929133d67c7052fa22c0186d0e5fdb
SHA512 (mercurial-6.6.3.tar.gz) = a7e0a466aa402659c1169a8c98c30be831b83cb7058416ed9cbe142977feda09008ff43f8c08c0dfdc217c449c6a1e8460cdcd62680e5dc1d0a632b52536486f
Size (mercurial-6.6.3.tar.gz) = 8253219 bytes
BLAKE2s (mercurial-6.7.tar.gz) = eb22b6fab4d67ca6b8bb39dfb401ca41046510261c2ab437c39d0c37344d09f5
SHA512 (mercurial-6.7.tar.gz) = c25fccb334702f2d3d228c16e1842cc6d0f258ca7f278f8e9cd270220073b3d851bb9c8eedfa837255d99f3159fd8b0f9f5373e20b779ee625ea946869c80165
Size (mercurial-6.7.tar.gz) = 8300870 bytes
SHA1 (patch-setup.py) = 2f5e1f619af50cc0976ce6b229e4ce9cc3492c29

View File

@ -1,3 +1,3 @@
# $NetBSD: version.mk,v 1.58 2024/02/19 12:33:17 wiz Exp $
# $NetBSD: version.mk,v 1.59 2024/03/17 15:12:16 wiz Exp $
VERSION= 6.6.3
VERSION= 6.7