Skip to content

Commit f4beaf3

Browse files
authored
{Release} Upgrade to Azure CLI 2.72.0 (#31309)
1 parent 82a85fb commit f4beaf3

File tree

9 files changed

+105
-10
lines changed

9 files changed

+105
-10
lines changed

src/azure-cli-core/HISTORY.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
Release History
44
===============
55

6+
2.72.0
7+
++++++
8+
* Minor fixes
9+
610
2.71.0
711
++++++
812
* PREVIEW: Support managed identity authentication with MSAL. Run `az config set core.use_msal_managed_identity=true` or set environment variable `AZURE_CORE_USE_MSAL_MANAGED_IDENTITY` to enable it (#31092)

src/azure-cli-core/azure/cli/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# --------------------------------------------------------------------------------------------
55
# pylint: disable=line-too-long
66

7-
__version__ = "2.71.0"
7+
__version__ = "2.72.0"
88

99
import os
1010
import sys

src/azure-cli-core/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from codecs import open
99
from setuptools import setup, find_packages
1010

11-
VERSION = "2.71.0"
11+
VERSION = "2.72.0"
1212

1313
# If we have source, validate that our version numbers match
1414
# This should prevent uploading releases with mismatched versions.

src/azure-cli/HISTORY.rst

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,97 @@
33
Release History
44
===============
55

6+
2.72.0
7+
++++++
8+
9+
**ACR**
10+
11+
* Fix #31130: `az acr task show`: Fix extra version line in encodedTask created by file (#31153)
12+
* `az acr create/check-name`: Add parameter `--dnl-scope` for domain name label hash (#30638)
13+
14+
**AKS**
15+
16+
* `az aks update`: Make specified version to match current version when turning off autoupgrade (#31018)
17+
* `az aks nodepool add/update`: Add option `Ubuntu2204` to `--os-sku` parameter (#31119)
18+
* `az aks create`: Add `--custom-ca-trust-certificates` parameter to support custom CA trust feature (#31107)
19+
* `az aks nodepool add`: Add `--custom-ca-trust-certificates` parameter to support custom CA trust feature (#31107)
20+
* `az aks nodepool add`: Add GPU driver install options `--gpu-driver install` and `--gpu-driver none` (#31106)
21+
22+
**App Config**
23+
24+
* `az appconfig create/update`: Add developer sku support (#31199)
25+
* `az appconfig feature set`: Update feature name documentation (#31185)
26+
27+
**App Service**
28+
29+
* Fix #20983: `az webapp config ssl import`: Make web app a non-required parameter (#30958)
30+
* `az appservice plan create`: Add Pv4/Pmv4 ASP support (#31021)
31+
* Fix #20209: `az webapp create-remote-connection`: Add ssh command to output (#31155)
32+
33+
**ARM**
34+
35+
* `az deployment`: Fix issue where Bicep is not found in CI environments (#31202)
36+
* Fix #31188: `az lock delete`: Fix the case sensitivity of `--namespace` parameter validation (#31274)
37+
38+
**ARO**
39+
40+
* `az aro update`: Ensure that refreshing cluster service principal credentials is successful when the cluster has an invalid or missing subnet in its resource definition (#31039)
41+
42+
**Compute**
43+
44+
* [BREAKING CHANGE] `az sig image-version`: Change the `--os-vhd-storage-account` parameter mapping to the `properties.storageProfile.osDiskImage.source.storageAccountId` property (#31186)
45+
* [BREAKING CHANGE] `az sig image-version`: Change the `--data-vhds-storage-accounts` parameter mapping to the `properties.storageProfile.dataDiskImages.source.storageAccountId` property (#31186)
46+
* `az vm create`: Add new parameter `--zone-placement-policy` to support setting vm placement to create a zonal VM (#31233)
47+
* `az vm create`: Add new parameter `--include-zones` to support setting vm placement to create a zonal VM (#31233)
48+
* `az vm create`: Add new parameter `--exclude-zones` to support setting vm placement to create a zonal VM (#31233)
49+
* `az vm create/update`: Add new parameter `--align-regional-disks-to-vm-zone` to support setting regional disks attached to the VM to be converted to zonal (#31233)
50+
* `az sig image-version create/update`: Rename shorter alias for `--block-deletion-before-end-of-life` parameter (#31283)
51+
* `az vm create/update`: Add new parameters `--wire-server-mode` and `--wire-server-access-control-profile-reference-id` to support setting wireserver endpoint settings (#31279)
52+
* `az vmss create/update`: Add new parameters `--wire-server-mode` and `--wire-server-access-control-profile-reference-id` to support setting wireserver endpoint settings (#31279)
53+
* `az vm create/update`: Add new parameters `--imds-mode` and `--imds-access-control-profile-reference-id` to support setting IMDS endpoint settings (#31279)
54+
* `az vmss create/update`: Add new parameters `--imds-mode` and `--imds-access-control-profile-reference-id` to support setting IMDS endpoint settings (#31279)
55+
* `az vm create/update`: Add new parameter `--key-incarnation-id` to support setting key incarnation id (#31279)
56+
* `az vmss create/update`: Add new parameter `--key-incarnation-id` to support setting key incarnation id (#31279)
57+
* `az vm/vmss create/update`: Set `--security-type` to `Standard` only if explicitly set by end user (#31282)
58+
59+
**Consumption**
60+
61+
* `az consumption usage list`: Enhance handling of `usageStart` and `usageEnd` when missing (#31128)
62+
63+
**Microsoft Entra ID**
64+
65+
* `az ad sp create-for-rbac`: Add `--service-management-reference` argument (#31212)
66+
* `az ad sp create-for-rbac`: Add `--create-password` argument. Use `--create-password false` to disable creating password credential (#31215)
67+
68+
**MySQL**
69+
70+
* `az mysql flexible-server create`: Add `--backup-interval` parameter to enable setting backup interval (#31298)
71+
* `az mysql flexible-server restore`: Add `--faster-restore` parameter to open auto-iops-scaling when restore (#31298)
72+
* `az mysql flexible-server replica create`: Add `--faster-provisioning` parameter to open auto-iops-scaling when create replica (#31298)
73+
74+
**Network**
75+
76+
* Fix #31129: `az network vnet-gateway create/update`: Refine the logic of `--root-cert-data` (#31166)
77+
* `az network application-gateway waf-policy managed-rule rule-set`: Support rule set type Microsoft_DefaultRuleSet (#31289)
78+
79+
**Profile**
80+
81+
* Fix #29030: `az login`: During interactive login, fall back to `tenantId` if `tenantDisplayName` is missing (#29245)
82+
83+
**RDBMS**
84+
85+
* `az postgres flexible-server upgrade`: Add server capability API check to the `--version` parameter and allow user to upgrade to PG17 when it is available (#31146)
86+
87+
**Role**
88+
89+
* `az role assignment list`: Add `--fill-principal-name` argument. Use `--fill-principal-name false` to omit `principalName` property and bypass Microsoft Graph query (#30693)
90+
* `az role assignment list`: Add `--fill-role-definition-name` argument. Use `--fill-role-definition-name false` to omit `roleDefinitionName` property and bypass the role definitions query (#31152)
91+
* `az role assignment list/delete`: Add `--assignee-object-id` argument. Use this argument instead of `--assignee` to bypass Microsoft Graph query (#30469)
92+
93+
**Service Connector**
94+
95+
* `az webapp connection create`: Clarify that system identity is a flag (#31263)
96+
697
2.71.0
798
++++++
899

src/azure-cli/azure/cli/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from knack.log import get_logger
1818

1919
__author__ = "Microsoft Corporation <[email protected]>"
20-
__version__ = "2.71.0"
20+
__version__ = "2.72.0"
2121

2222

2323
logger = get_logger(__name__)

src/azure-cli/requirements.py3.Darwin.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ argcomplete==3.5.2
44
asn1crypto==0.24.0
55
azure-appconfiguration==1.7.0
66
azure-batch==15.0.0b1
7-
azure-cli-core==2.71.0
7+
azure-cli-core==2.72.0
88
azure-cli-telemetry==1.1.0
9-
azure-cli==2.71.0
9+
azure-cli==2.72.0
1010
azure-common==1.1.22
1111
azure-core==1.31.0
1212
azure-cosmos==3.2.0

src/azure-cli/requirements.py3.Linux.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ argcomplete==3.5.2
44
asn1crypto==0.24.0
55
azure-appconfiguration==1.7.0
66
azure-batch==15.0.0b1
7-
azure-cli-core==2.71.0
7+
azure-cli-core==2.72.0
88
azure-cli-telemetry==1.1.0
9-
azure-cli==2.71.0
9+
azure-cli==2.72.0
1010
azure-common==1.1.22
1111
azure-core==1.31.0
1212
azure-cosmos==3.2.0

src/azure-cli/requirements.py3.windows.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ argcomplete==3.5.2
44
asn1crypto==0.24.0
55
azure-appconfiguration==1.7.0
66
azure-batch==15.0.0b1
7-
azure-cli-core==2.71.0
7+
azure-cli-core==2.72.0
88
azure-cli-telemetry==1.1.0
9-
azure-cli==2.71.0
9+
azure-cli==2.72.0
1010
azure-common==1.1.22
1111
azure-core==1.31.0
1212
azure-cosmos==3.2.0

src/azure-cli/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
logging.warning("Wheel is not available, disabling bdist_wheel hook")
1818
cmdclass = {}
1919

20-
VERSION = "2.71.0"
20+
VERSION = "2.72.0"
2121
# If we have source, validate that our version numbers match
2222
# This should prevent uploading releases with mismatched versions.
2323
try:

0 commit comments

Comments
 (0)