Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/upgrade_utils/actions.py @ 48295:bf11ff22a9af
dirstate-v2: freeze the on-disk format
It seems the format as reached a good balance. With a core of new capabilities
that motivated it initially and enough new feature and room for future
improvement to be a clear progress we can set a milestone for.
Having the format frozen will help the feature to get real life testing, outside
of the test suite.
The feature itself stay experimental but the config gains a new name to avoid
people enable non-frozen version by default.
If too many bugs are reported during the RC we might move the format back to
experimental and drop its support in future version (in favor of a new one)
Differential Revision: https://phab.mercurial-scm.org/D11709
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Wed, 20 Oct 2021 00:57:02 +0200 |
parents | 4259a72fe528 |
children | 7ee07e1a25c0 |
comparison
equal
deleted
inserted
replaced
48294:e2836d08c88c | 48295:bf11ff22a9af |
---|---|
176 | 176 |
177 default = False | 177 default = False |
178 | 178 |
179 description = _( | 179 description = _( |
180 b'version 1 of the dirstate file format requires ' | 180 b'version 1 of the dirstate file format requires ' |
181 b'reading and parsing it all at once.' | 181 b'reading and parsing it all at once.\n' |
182 b'Version 2 has a better structure,' | |
183 b'better information and lighter update mechanism' | |
182 ) | 184 ) |
183 | 185 |
184 upgrademessage = _(b'"hg status" will be faster') | 186 upgrademessage = _(b'"hg status" will be faster') |
185 | 187 |
186 touches_filelogs = False | 188 touches_filelogs = False |