diff --git a/build_scripts/windows/scripts/patch_models_v2.py b/build_scripts/windows/scripts/patch_models_v2.py index 62d4d14aa56..bc4b0a562b6 100644 --- a/build_scripts/windows/scripts/patch_models_v2.py +++ b/build_scripts/windows/scripts/patch_models_v2.py @@ -245,7 +245,7 @@ def find_models_to_change(module_name): return [ importlib.import_module('.'+label+'.models', main_module.__name__) for (_, label, ispkg) in pkgutil.iter_modules(main_module.__path__) - if ispkg and label != 'aio' and label != '_utils' + if ispkg and label != 'aio' ] diff --git a/src/azure-cli/azure/cli/command_modules/acr/commands.py b/src/azure-cli/azure/cli/command_modules/acr/commands.py index bd66309a43c..d763d5b004b 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/commands.py +++ b/src/azure-cli/azure/cli/command_modules/acr/commands.py @@ -420,7 +420,7 @@ def load_command_table(self, _): g.show_command('show', 'show_encryption') g.command('rotate-key', "rotate_key") - with self.command_group('acr connected-registry', acr_connected_registry_util, is_preview=True) as g: + with self.command_group('acr connected-registry', acr_connected_registry_util) as g: g.command('create', 'acr_connected_registry_create') g.command('delete', 'acr_connected_registry_delete') g.show_command('show', 'acr_connected_registry_show') diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 43a2ae9905a..45f8cc9e6a0 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -30,7 +30,7 @@ azure-mgmt-cdn==12.0.0 azure-mgmt-cognitiveservices==13.5.0 azure-mgmt-compute==34.1.0 azure-mgmt-containerinstance==10.2.0b1 -azure-mgmt-containerregistry==14.0.0 +azure-mgmt-containerregistry==14.1.0b1 azure-mgmt-containerservice==35.0.0 azure-mgmt-core==1.5.0 azure-mgmt-cosmosdb==9.7.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 403c1c62af3..b30324eb22e 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -30,7 +30,7 @@ azure-mgmt-cdn==12.0.0 azure-mgmt-cognitiveservices==13.5.0 azure-mgmt-compute==34.1.0 azure-mgmt-containerinstance==10.2.0b1 -azure-mgmt-containerregistry==14.0.0 +azure-mgmt-containerregistry==14.1.0b1 azure-mgmt-containerservice==35.0.0 azure-mgmt-core==1.5.0 azure-mgmt-cosmosdb==9.7.0 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index be8abdd26f1..28e69a7c887 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -30,7 +30,7 @@ azure-mgmt-cdn==12.0.0 azure-mgmt-cognitiveservices==13.5.0 azure-mgmt-compute==34.1.0 azure-mgmt-containerinstance==10.2.0b1 -azure-mgmt-containerregistry==14.0.0 +azure-mgmt-containerregistry==14.1.0b1 azure-mgmt-containerservice==35.0.0 azure-mgmt-core==1.5.0 azure-mgmt-cosmosdb==9.7.0 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index ffaae48330c..a18250f59f3 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -75,7 +75,7 @@ 'azure-mgmt-cognitiveservices~=13.5.0', 'azure-mgmt-compute~=34.1.0', 'azure-mgmt-containerinstance==10.2.0b1', - 'azure-mgmt-containerregistry==14.0.0', + 'azure-mgmt-containerregistry==14.1.0b1', 'azure-mgmt-containerservice~=35.0.0', 'azure-mgmt-cosmosdb==9.7.0', 'azure-mgmt-databoxedge~=1.0.0',