Skip to content

Commit fce4292

Browse files
authored
{Release} Upgrade to Azure CLI 2.71.0 (#31125)
1 parent 6de24b9 commit fce4292

File tree

9 files changed

+116
-10
lines changed

9 files changed

+116
-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.71.0
7+
++++++
8+
* 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)
9+
610
2.70.0
711
++++++
812
* Resolve CVE-2024-12797 (#30816)

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.70.0"
7+
__version__ = "2.71.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.70.0"
11+
VERSION = "2.71.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: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,108 @@
33
Release History
44
===============
55

6+
2.71.0
7+
++++++
8+
9+
**ACR**
10+
11+
* `az acr create`: Fix a bug where creating cache rule without credential set would fail (#30984)
12+
13+
**AKS**
14+
15+
* `az aks`: Fix error message when outbound type validation failed (#30886)
16+
* `az aks create/update`: Update recording rule group create logic for managed prometheus addon (#30857)
17+
* `az aks create/update`: Add `--bootstrap-artifact-source` parameter to configure artifact source when bootstraping the cluster (#31095)
18+
* `az aks create/update`: Add `--bootstrap-container-registry-resource-id` parameter to configure container registry resource ID (#31095)
19+
* `az aks create/update`: Add new option `none` for `--outbound-type` parameter (#31095)
20+
21+
**App Config**
22+
23+
* `az appconfig`: Fix managed identity auth for `--auth-mode login` parameter (#30983)
24+
25+
**App Service**
26+
27+
* `az webapp deploy`: Add `--enable-kudu-warmup` parameter to support warm-up Kudu before making deployment (#31083)
28+
* Fix #27724: `az webapp config appsettings set`: Remove redaction warning message from output (#31006)
29+
* Fix #26920: `az webapp deployment slot create`: Make the created new slot has same VNet integration settings of source slot as Portal behavior (#30836)
30+
* Fix #30908: `az webapp snapshot restore`: Fix the error "no resource group found" when trying to restore a snapshot backup to a paired region (#30364)
31+
* Fix #29512: `az webapp config backup update`: Fix `str` object has no attribute `name` (#30986)
32+
* Fix #21721: `az webapp config storage-account add`: Add validation for non-existent FileShare (#30990)
33+
* `az functionapp list-flexconsumption-locations`: Add `--details` and `--runtime` parameters to provide more details (#31019)
34+
35+
**ARM**
36+
37+
* Fix #29809: `az deployment/stack/bicep`: Fix an issue where the commands mistakenly check for the latest Bicep version, even when `use_binary_from_path` is `true` and `check_version` is `false` (#31041)
38+
* Fix #29435: `az bicep install/upgrade`: Fix an issue where the command downloads the x64 binary instead of the ARM binary on aarch64 machines (#31041)
39+
40+
**ARO**
41+
42+
* `az aro create`: Update VM SKU to align with best practices (#31074)
43+
44+
**Backup**
45+
46+
* `az backup protection enable-for-vm`: Update in warning message while protecting Trusted Launch virtual machines (#31062)
47+
48+
**Cloud**
49+
50+
* `az cloud register/update`: Add upcoming breaking change announcement (#31097)
51+
52+
**Compute**
53+
54+
* `az sig image-definition list-shared`: Mark `--marker` and `--show-next-marker` as deprecated and will be removed in the upcoming breaking change window (#31081)
55+
* `az sig image-version list-shared`: Mark `--marker` and `--show-next-marker` as deprecated and will be removed in the upcoming breaking change window (#31081)
56+
* `az sig image-definition list-community`: Mark `--marker` and `--show-next-marker` as deprecated and will be removed in the upcoming breaking change window (#31081)
57+
* `az sig image-version list-community`: Mark `--marker` and `--show-next-marker` as deprecated and will be removed in the upcoming breaking change window (#31081)
58+
* `az disk config update`: Add new command to support updating disk size gb by PATCH method (#30961)
59+
* `az vm/vmss create/update`: Add support for setting security type to `Standard` (#31002)
60+
* Fix #30976: `az sig image-version create`: Fix missing auxiliary tokens (#30977)
61+
* `az sig image-version create/update`: Add new parameter `--block-deletion-before-end-of-life` to support blocking deletion if the end of life has not expired (#31013)
62+
* `az vm list-sizes`: Mark the command as deprecated (#31080)
63+
64+
**Container app**
65+
66+
* Fix #30828: `az containerapp job stop`: Fix `TypeError` when `--job-execution-name` is not specified (#30941)
67+
68+
**Key Vault**
69+
70+
* `az keyvault create`: Support C SKU family for MHSM creation (#31025)
71+
72+
**MySQL**
73+
74+
* [BREAKING CHANGE] `az mysql flexible-server create`: Change default values for `--auto-scale-iops`, `--version` for MySQL (#30852)
75+
76+
**Network**
77+
78+
* `az network virtual-appliance`: Add command `get-boot-diagnostic-log` to support getting boot diagnostic logs (#30924)
79+
* Fix #31003: `az network vpn-connection create`: Pass auxiliary authorization header for referenced resource IDs (#31045)
80+
* `az network vnet-gateway create`: Add `--enable-high-bandwith-vpn-gateway` parameter (#31088)
81+
* `az network vpn-connection show`: Support new properties with virtual network gateway (#31088)
82+
83+
**Profile**
84+
85+
* `az login`: Add upcoming breaking change announcement for `--username` (#31061)
86+
87+
**RDBMS**
88+
89+
* `az postgres flexible-server update`: Fix bug for not updating geo backup data encryption properties (#30948)
90+
* `az postgres flexible-server fabric-mirroring`: Fix for space separated list of databases during `start` and `update-databases` (#31000)
91+
* `az postgres flexible-server create`: Support adding admin during creation if `--active-directory-auth` is Enabled and no longer generate password when `--password-auth` is Disabled (#30999)
92+
93+
**Role**
94+
95+
* `az role assignment list`: Add upcoming breaking change announcement for `--include-classic-administrators` (#31048)
96+
* `az role assignment list`: Include role assignments inherited from management groups (#30841)
97+
98+
**Service Connector**
99+
100+
* `az * connection create neon-postgres`: Add command for Neon Postgres Serverless (#30938)
101+
102+
**Storage**
103+
104+
* `az storage share/directory/file`: Support NFS FileShares (#31050)
105+
* `az storage file hard-link create`: Support creating hard-links for NFS files (#31050)
106+
* `az storage share create`: Support `--enable-snapshot-virtual-directory-access` (#31114)
107+
6108
2.70.0
7109
++++++
8110

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.70.0"
20+
__version__ = "2.71.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.70.0
7+
azure-cli-core==2.71.0
88
azure-cli-telemetry==1.1.0
9-
azure-cli==2.70.0
9+
azure-cli==2.71.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.70.0
7+
azure-cli-core==2.71.0
88
azure-cli-telemetry==1.1.0
9-
azure-cli==2.70.0
9+
azure-cli==2.71.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.70.0
7+
azure-cli-core==2.71.0
88
azure-cli-telemetry==1.1.0
9-
azure-cli==2.70.0
9+
azure-cli==2.71.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.70.0"
20+
VERSION = "2.71.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)