Mercurial > hg
annotate relnotes/6.5 @ 50824:489268c8ee7e
cmdutil: migrate `opts` on commitstatus() to native kwargs
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Sat, 19 Aug 2023 23:06:40 -0400 |
parents | 787af4e0e8b7 |
children | 5a8b54201039 |
rev | line source |
---|---|
50816 | 1 = Mercurial 6.5.1 = |
2 | |
3 * A bunch of improvements to Python 3.12 compatibility | |
4 * repoview: fix the filter created by `extrafilter` | |
5 * Improve portability of the test suite | |
6 * fncache: fix a bug that corrupts the fncache after transaction rollback | |
7 * revlog: fix the naming scheme use by split temporary file | |
8 * perf: fix perf::tags | |
9 | |
50748
3ffc7209bbae
relnotes: add 6.5 final
Raphaël Gomès <rgomes@octobus.net>
parents:
50720
diff
changeset
|
10 = Mercurial 6.5 = |
50720 | 11 |
12 As usual, a lot of patches don't make it to this list since they're more internal. | |
13 | |
14 == New Features == | |
15 | |
50748
3ffc7209bbae
relnotes: add 6.5 final
Raphaël Gomès <rgomes@octobus.net>
parents:
50720
diff
changeset
|
16 * Improved Python 3.12 compatiblity |
50720 | 17 * configitems: enable changegroup3 by default (unless using infinitepush) |
18 * extras: expose 'retained_extras' for extensions to extend | |
19 * stabletailgraph: implement stable-tail sort | |
20 * stabletailgraph: naive version of leap computation | |
21 * bundle: introduce a "v3" spec | |
22 * clone-bundles: add a basic first version of automatic bundle generation | |
23 * clone-bundles: garbage collect older bundle when generating new ones | |
24 * clone-bundles: only regenerate the clone bundle when cached ration is low | |
25 * clone-bundles: also control automation based on absolute number of revisions | |
26 * clone-bundles: add a configuration to control auto-generation on changes | |
27 * clone-bundles: introduce a command to refresh bundle | |
28 * clone-bundles: add a command to clear all bundles | |
29 * clone-bundles: add an option to generate bundles in the background | |
30 * clonebundles: add support for inline (streaming) clonebundles | |
31 * clonebundles: adds a auto-generate.serve-inline option | |
32 * match: add `filepath:` pattern to match an exact filepath relative to the root | |
33 * hgweb: add "children" into the JSON template for a changeset | |
34 * hgweb: add support to explicitly access hidden changesets | |
35 * pull: add --remote-hidden option and pass it through peer creation | |
36 * hidden: add support for --remote-hidden to HTTP peer | |
37 * hidden: support passing --hidden with `serve --stdio` | |
38 * hidden: add support to explicitly access hidden changesets with SSH peers | |
39 * perf: introduce a `perf::stream-locked-section` command | |
40 * perf: add a function to find a stream version generator | |
41 * perf: add support for stream-v3 during benchmark | |
42 * perf: add a perf::stream-generate command | |
43 * perf: add a perf::stream-consume | |
44 * cli: make debugnodemap capable of inspecting an arbitrary nodemap | |
45 * rust: configure MSRV in Clippy | |
46 * rhg: make `rhg files` work if `ui.relative-files=true` is specified | |
47 * rhg: support `rhg files` with `ui.relative-paths=false` | |
48 * rhg: support `status --print0` | |
49 * tree-manifest: allow `debugupgraderepo` to run on tree manifest repo | |
50 * library: enable runpy invocation on mercurial package | |
51 * library: incorporate demandimport into runpy invocation | |
52 * exchange: allow passing no includes/excludes to `pull()` | |
53 | |
54 == New Experimental Features == | |
55 | |
56 * stream-clone: add an experimental v3 version of the protocol | |
57 * stream-clone: support streamv3 on the cli [hg bundle] | |
58 | |
59 == Bug Fixes == | |
60 | |
61 * mail: add a missing argument to properly override starttls | |
62 * bundle: include required phases when saving a bundle (issue6794) | |
63 * outgoing: fix common-heads computation from `missingroots` argument | |
64 * strip: do not include internal changeset in the strip backup | |
65 * bundle: abort if the user request bundling of internal changesets | |
66 * bundle: prevent implicit bundling of internal changeset | |
67 * encoding: avoid quadratic time complexity when json-encoding non-UTF8 strings | |
68 * sha1dc: Make sure SHA1DC_BIGENDIAN is set on Darwin/PowerPC | |
69 * zstd: hack include order to ensure that our zstd.h is found | |
70 * dirstate: better error messages when dirstate is corrupted | |
71 * stream-clone: avoid opening a revlog in case we do not need it | |
72 * treemanifest: make `updatecaches` update the nodemaps for all directories | |
73 * rust-hg-core: move from `ouroboros` to `self_cell` | |
74 * rust-dependencies: switch from `users` to `whoami` | |
50748
3ffc7209bbae
relnotes: add 6.5 final
Raphaël Gomès <rgomes@octobus.net>
parents:
50720
diff
changeset
|
75 * dirstate-v2: actually fix the dirstate-v2 upgrade race |
3ffc7209bbae
relnotes: add 6.5 final
Raphaël Gomès <rgomes@octobus.net>
parents:
50720
diff
changeset
|
76 * dirstate: avoid leaking disk space in `hg debugrebuilddirstate` |
3ffc7209bbae
relnotes: add 6.5 final
Raphaël Gomès <rgomes@octobus.net>
parents:
50720
diff
changeset
|
77 * clonebundles: add warning if auto-generate is enabled without formats |
3ffc7209bbae
relnotes: add 6.5 final
Raphaël Gomès <rgomes@octobus.net>
parents:
50720
diff
changeset
|
78 * win32mbcs: unbyteify some strings for py3 support |
3ffc7209bbae
relnotes: add 6.5 final
Raphaël Gomès <rgomes@octobus.net>
parents:
50720
diff
changeset
|
79 * rust-revlog: fix incorrect results with NULL_NODE prefixes |
3ffc7209bbae
relnotes: add 6.5 final
Raphaël Gomès <rgomes@octobus.net>
parents:
50720
diff
changeset
|
80 * rust-revlog: fix RevlogEntry.data() for NULL_REVISION |
50720 | 81 |
82 == Backwards Compatibility Changes == | |
83 | |
84 * infinitepush: aggressively deprecated infinite push | |
85 * narrow: indicated the default of 'Yes' when confirming auto-remove-includes | |
86 | |
87 == Internal API Changes == | |
88 | |
89 * Store walk was reworked to fix small race conditions in stream-clone and | |
90 greatly improve its API robustness and flexibility. | |
91 | |
92 == Miscellaneous == | |
93 | |
94 * Typechecking support was improved in a lot of places | |
95 * Removed more useless compat code for now unsupported Python versions | |
96 * Sped up zstd usage in Rust contexts | |
97 * revlog: add an exception hint when processing LFS flags without the extension | |
98 * ui: keep the progress bar around when writing if stdout is not a tty | |
99 * transaction: use a ".bck" extension for all backup file |