File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed
src/azure-cli/azure/cli/command_modules/acr Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change 33# Licensed under the MIT License. See License.txt in the project root for license information.
44# --------------------------------------------------------------------------------------------
55
6- from azure .cli .core .breaking_change import register_command_group_deprecate
6+ from azure .cli .core .breaking_change import (
7+ register_command_group_deprecate ,
8+ register_logic_breaking_change
9+ )
710
811helm_bc_msg = 'In November 2020, Helm 2 reached end of life. ' \
912 'Starting on March 30th, 2025 Azure Container Registry will no longer support Helm 2. ' \
2831 target_version = 'Sept 30th, 2025' )
2932
3033register_command_group_deprecate (command_group = 'acr config content-trust' , message = content_trust_bc_msg )
34+
35+ register_logic_breaking_change ('acr check-health' , 'Remove Notary client version validation' ,
36+ detail = 'The Notary client version check will no longer be performed as part of the '
37+ 'check-health command due to Docker Content Trust deprecation.' ,
38+ doc_link = 'https://aka.ms/acr/dctdeprecation' )
39+
40+ register_logic_breaking_change ('acr config content-trust update' , 'Remove content-trust enabled configuration' ,
41+ detail = 'The `--status enabled` parameter will no longer be accepted and will result in '
42+ 'an error due to Docker Content Trust deprecation.' ,
43+ doc_link = 'https://aka.ms/acr/dctdeprecation' )
You can’t perform that action at this time.
0 commit comments