Skip to content

Commit d1369fd

Browse files
azclibotcalvinhzyyanzhuddevelyn-yskairu-ms
authored
{Release} Upgrade to Azure CLI 2.64.0 (#29797)
* update azure-cli version to 2.64.0 * Apply suggestions from code review Co-authored-by: Yan Zhu <105691024+yanzhudd@users.noreply.github.com> Co-authored-by: Yishi Wang <yishiwang@microsoft.com> Co-authored-by: kai ru <69238381+kairu-ms@users.noreply.github.com> --------- Co-authored-by: Zhiyi Huang <17182306+calvinhzy@users.noreply.github.com> Co-authored-by: Yan Zhu <105691024+yanzhudd@users.noreply.github.com> Co-authored-by: Yishi Wang <yishiwang@microsoft.com> Co-authored-by: kai ru <69238381+kairu-ms@users.noreply.github.com>
1 parent 90f7650 commit d1369fd

File tree

9 files changed

+95
-10
lines changed

9 files changed

+95
-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.64.0
7+
++++++
8+
* Minor fixes
9+
610
2.63.0
711
++++++
812
* Resolve CVE-2024-39689 (#29320)

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

6+
2.64.0
7+
++++++
8+
9+
**ACR**
10+
11+
* `az acr helm`: Improve deprecation message (#29700)
12+
13+
**AKS**
14+
15+
* `az aks nodepool update`: Add `--enable/disable-fips-image` flags for GA mutable fips (#29695)
16+
* `az aks create/update`: Support UserAssigned Managed Identity for grafana linking in managed prometheus (#29713)
17+
* `az aks create/update`: Update the VM SKU regex validation to include larger set of VMs for Azure Container Storage (#29726)
18+
19+
**App Service**
20+
21+
* `az staticwebapp create/update`: Add `Dedicated` as supported SKU (#29514)
22+
* `az webapp config set`: Add MinTlsCipherSuite support (#29694)
23+
* `az webapp config access-restriction add/remove`: Allow skipping service tag validation (#29710)
24+
25+
**ARM**
26+
27+
* `az ts create`: Fix incorrect handling of whitespace in string values (#29623)
28+
29+
**ARO**
30+
31+
* `az aro create`: Add feature for adding Multiple Public IPs on cluster load balancer (#29693)
32+
* `az aro update`: Add feature for adding/removing Multiple Public IPs on cluster load balancer (#29693)
33+
34+
**Compute**
35+
36+
* `az vm update`: Add support of Gen1 VM to trusted launch upgrade (#29655)
37+
* `az capacity reservation`: GA command group (#29775)
38+
39+
**Container app**
40+
41+
* Fix #28998: `az containerapp env workload-profile add/update`: Fix `NoneType` object is not iterable error when environment doesn't enable workload profile (#29682)
42+
* `az containerapp create/up`: Make `--target-port` optional (#29702)
43+
* `az containerapp env create`: Deprecate unused argument `--docker-bridge-cidr` (#29746)
44+
* `az containerapp job stop`: Deprecate option to stop list of given job executions (#29728)
45+
* Fix #29711: `az containerapp logs show`: Fix JSON escaping by default or with `--format json` (#29767)
46+
47+
**HDInsight**
48+
49+
* `az hdinsight create`: Support setting IP tags when creating HDInsight cluster (#29752)
50+
* `az hdinsight update`: Support updating the managed identity of the cluster (#29752)
51+
* `az hdinsight azure-monitor-agent show`: Support getting the managed identity of the cluster (#29752)
52+
* `az hdinsight azure-monitor-agent enable`: Enable the Azure Monitor Agent logs integration on an HDInsight cluster (#29752)
53+
* `az hdinsight azure-monitor-agent disable`: Disable the Azure Monitor Agent logs integration on an HDInsight cluster (#29752)
54+
55+
**MySQL**
56+
57+
* `az mysql flexible-server maintenance`: New command group for managing maintenance of MySQL flexible server (#29505)
58+
* `az mysql flexible-server update`: Remove storage passing for server update (#29739)
59+
60+
**NetAppFiles**
61+
62+
* `az netappfiles volume create/update`: Update max for `--usage-threshold` (#29624)
63+
64+
**Network**
65+
66+
* Fix #29565: `az network nat gateway create`: Add `--tags` parameter (#29718)
67+
68+
**Packaging**
69+
70+
* Support Python 3.12 (#29465)
71+
* Release Azure Linux 3 RPM package (#29348)
72+
73+
**Redis**
74+
75+
* `az redis create/update`: Add `--disable-access-keys` to support disabling auth through access keys (#29483)
76+
77+
**SQL**
78+
79+
* `az sql mi create/update`: Add `--authentication-metadata` to support auth metadata configuration (#29519)
80+
81+
**Storage**
82+
83+
* `az storage account create/update`: Support account cold-tier (#29740)
84+
* `az storage copy/remove`: Add `--auth-mode login` support (#29779)
85+
* `az storage share delete`: Add `include-leased` for `--delete-snapshots` (#29785)
86+
687
2.63.0
788
++++++
889

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

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

2020
__author__ = "Microsoft Corporation <python@microsoft.com>"
21-
__version__ = "2.63.0"
21+
__version__ = "2.64.0"
2222

2323

2424
# A workaround for https://bugs.python.org/issue32502 (https://github.com/Azure/azure-cli/issues/5184)

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.3.0
44
asn1crypto==0.24.0
55
azure-appconfiguration==1.1.1
66
azure-batch==14.2.0
7-
azure-cli-core==2.63.0
7+
azure-cli-core==2.64.0
88
azure-cli-telemetry==1.1.0
9-
azure-cli==2.63.0
9+
azure-cli==2.64.0
1010
azure-common==1.1.22
1111
azure-core==1.28.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.3.0
44
asn1crypto==0.24.0
55
azure-appconfiguration==1.1.1
66
azure-batch==14.2.0
7-
azure-cli-core==2.63.0
7+
azure-cli-core==2.64.0
88
azure-cli-telemetry==1.1.0
9-
azure-cli==2.63.0
9+
azure-cli==2.64.0
1010
azure-common==1.1.22
1111
azure-core==1.28.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.3.0
44
asn1crypto==0.24.0
55
azure-appconfiguration==1.1.1
66
azure-batch==14.2.0
7-
azure-cli-core==2.63.0
7+
azure-cli-core==2.64.0
88
azure-cli-telemetry==1.1.0
9-
azure-cli==2.63.0
9+
azure-cli==2.64.0
1010
azure-common==1.1.22
1111
azure-core==1.28.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.63.0"
20+
VERSION = "2.64.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)