comparison mercurial/configitems.py @ 49452:74fb1842f8b9

phase: rename the requirement for internal-phase (BC) The previous requirements covers both `internal` and `archived` phase. However, the `archived` phase is not ready for usage (while the internal one is mostly ready for years). So we split the archived on in a dedicated requirements (see previous changeset for details) and rename the one for internal-phase. This will avoid older client trying to use the archived phase on `internal` only repositories. Since the requirements stayed experimental since its introduction. It seems fine to drop the previous version.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Tue, 16 Aug 2022 20:09:31 +0200
parents 0c70d888a484
children 53229e170496
comparison
equal deleted inserted replaced
49451:0c70d888a484 49452:74fb1842f8b9
1423 b'format', 1423 b'format',
1424 b'use-share-safe.automatic-upgrade-of-mismatching-repositories:quiet', 1424 b'use-share-safe.automatic-upgrade-of-mismatching-repositories:quiet',
1425 default=False, 1425 default=False,
1426 experimental=True, 1426 experimental=True,
1427 ) 1427 )
1428
1429 # Moving this on by default means we are confident about the scaling of phases.
1430 # This is not garanteed to be the case at the time this message is written.
1428 coreconfigitem( 1431 coreconfigitem(
1429 b'format', 1432 b'format',
1430 b'internal-phase', 1433 b'use-internal-phase',
1431 default=False, 1434 default=False,
1432 experimental=True, 1435 experimental=True,
1433 ) 1436 )
1434 # The interaction between the archived phase and obsolescence markers needs to 1437 # The interaction between the archived phase and obsolescence markers needs to
1435 # be sorted out before wider usage of this are to be considered. 1438 # be sorted out before wider usage of this are to be considered.