comparison mercurial/upgrade_utils/actions.py @ 47229:21b3e6116bd1

side-data: drop the associated config and requirements This is no longer and extensions of revlog v1, but a part of revlog v2. We no longer needs independent config and requirement management for that. Differential Revision: https://phab.mercurial-scm.org/D10620
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Mon, 03 May 2021 12:30:24 +0200
parents f38bf44e077f
children 33096e77598c
comparison
equal deleted inserted replaced
47228:e51392acd70c 47229:21b3e6116bd1
933 the dropped requirement must appear in the returned set for the upgrade 933 the dropped requirement must appear in the returned set for the upgrade
934 to be allowed. 934 to be allowed.
935 """ 935 """
936 supported = { 936 supported = {
937 requirements.SPARSEREVLOG_REQUIREMENT, 937 requirements.SPARSEREVLOG_REQUIREMENT,
938 requirements.SIDEDATA_REQUIREMENT,
939 requirements.COPIESSDC_REQUIREMENT, 938 requirements.COPIESSDC_REQUIREMENT,
940 requirements.NODEMAP_REQUIREMENT, 939 requirements.NODEMAP_REQUIREMENT,
941 requirements.SHARESAFE_REQUIREMENT, 940 requirements.SHARESAFE_REQUIREMENT,
942 requirements.REVLOGV2_REQUIREMENT, 941 requirements.REVLOGV2_REQUIREMENT,
943 requirements.REVLOGV1_REQUIREMENT, 942 requirements.REVLOGV1_REQUIREMENT,
964 requirements.FNCACHE_REQUIREMENT, 963 requirements.FNCACHE_REQUIREMENT,
965 requirements.GENERALDELTA_REQUIREMENT, 964 requirements.GENERALDELTA_REQUIREMENT,
966 requirements.REVLOGV1_REQUIREMENT, # allowed in case of downgrade 965 requirements.REVLOGV1_REQUIREMENT, # allowed in case of downgrade
967 requirements.STORE_REQUIREMENT, 966 requirements.STORE_REQUIREMENT,
968 requirements.SPARSEREVLOG_REQUIREMENT, 967 requirements.SPARSEREVLOG_REQUIREMENT,
969 requirements.SIDEDATA_REQUIREMENT,
970 requirements.COPIESSDC_REQUIREMENT, 968 requirements.COPIESSDC_REQUIREMENT,
971 requirements.NODEMAP_REQUIREMENT, 969 requirements.NODEMAP_REQUIREMENT,
972 requirements.SHARESAFE_REQUIREMENT, 970 requirements.SHARESAFE_REQUIREMENT,
973 requirements.REVLOGV2_REQUIREMENT, 971 requirements.REVLOGV2_REQUIREMENT,
974 } 972 }
994 supported = { 992 supported = {
995 requirements.DOTENCODE_REQUIREMENT, 993 requirements.DOTENCODE_REQUIREMENT,
996 requirements.FNCACHE_REQUIREMENT, 994 requirements.FNCACHE_REQUIREMENT,
997 requirements.GENERALDELTA_REQUIREMENT, 995 requirements.GENERALDELTA_REQUIREMENT,
998 requirements.SPARSEREVLOG_REQUIREMENT, 996 requirements.SPARSEREVLOG_REQUIREMENT,
999 requirements.SIDEDATA_REQUIREMENT,
1000 requirements.COPIESSDC_REQUIREMENT, 997 requirements.COPIESSDC_REQUIREMENT,
1001 requirements.NODEMAP_REQUIREMENT, 998 requirements.NODEMAP_REQUIREMENT,
1002 requirements.SHARESAFE_REQUIREMENT, 999 requirements.SHARESAFE_REQUIREMENT,
1003 requirements.REVLOGV1_REQUIREMENT, 1000 requirements.REVLOGV1_REQUIREMENT,
1004 requirements.REVLOGV2_REQUIREMENT, 1001 requirements.REVLOGV2_REQUIREMENT,