Skip to content

Commit a0acfb3

Browse files
azclibotevelyn-yswangzelin007beboundzhoxing-ms
authored
{Release} Upgrade to Azure CLI 2.65.0 (#29971)
* update azure-cli version to 2.65.0 * Apply suggestions from code review * Apply suggestions from code review Co-authored-by: Hang <[email protected]> Co-authored-by: Xing Zhou <[email protected]> --------- Co-authored-by: Yishi Wang <[email protected]> Co-authored-by: ZelinWang <[email protected]> Co-authored-by: Hang <[email protected]> Co-authored-by: Xing Zhou <[email protected]>
1 parent 2a94098 commit a0acfb3

File tree

9 files changed

+98
-10
lines changed

9 files changed

+98
-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.65.0
7+
++++++
8+
* Minor fixes
9+
610
2.64.0
711
++++++
812
* Minor fixes

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

6+
2.65.0
7+
++++++
8+
9+
**ACR**
10+
11+
* Fix #21900: `az acr task identity remove`: Fix incorrect operation_group setting (#29885)
12+
* `az acr credential-set`: Improve help message (#29810)
13+
14+
**AD**
15+
16+
* `az ad app create/update`: Add `--service-management-reference` argument (#29860)
17+
18+
**AKS**
19+
20+
* `az aks nodepool delete-machines`: Add support to delete specific machines in an agent pool (#29921)
21+
22+
**App Config**
23+
24+
* `az appconfig`: Add premium SKU support (#29824)
25+
26+
**App Service**
27+
28+
* `az functionapp config set`: Map parameters explicitly for the internal update_site_configs function call (#29756)
29+
30+
**Compute**
31+
32+
* `az vm/vmss create`: Add `--ssh-key-type` parameter to support generating Ed25519 SSH keys (#29926)
33+
* `az vm image list`: Expose ImageDeprecationStatus property in output (#29932)
34+
35+
**Container app**
36+
37+
* Fix #29849: `az containerapp job stop`: Fix stop execution response (#29907)
38+
* Fix #29166: `az containerapp compose create`: Support image with tag and support get ACR from image (#29933)
39+
40+
**Cosmos DB**
41+
42+
* `az cosmosdb restore`: Add `--disable-ttl` to support for Restore with Time-To-Live Disabled (#29875)
43+
44+
**DataLake**
45+
46+
* `az dla`: Deprecate datalake analytics (#29879)
47+
48+
**HDInsight**
49+
50+
* `az hdinsight update`: Add parameter `--assign-identity-type` to allow to update to `SystemAssigned` identity. (#29816)
51+
52+
**Monitor**
53+
54+
* `az monitor action-group create`: Adjust formatting of `--actions` help message (#29747)
55+
* `az monitor action-group update`: Adjust formatting of `--add-actions` help message (#29747)
56+
* `az monitor action-group notification create`: Adjust formatting of `--add-actions` help message (#29747)
57+
58+
**MySQL**
59+
60+
* `az mysql flexible-server create/update`: Add `--accelerated-logs` to support configuring accelerated logs for Business Critical tier (#29936)
61+
62+
**NetAppFiles**
63+
64+
* `az netappfiles volume create`: Fix subnet id as resource id (#29813)
65+
66+
**Network**
67+
68+
* `az network vnet peering`: Refine command interface of subnet peering (#29817)
69+
70+
**Packaging**
71+
72+
* Release Docker image based on Azure Linux 3.0 (#29769)
73+
* Include `jq` in Azure Linux docker image (#29867)
74+
* Drop Debian 10 support (#29378)
75+
76+
**Profile**
77+
78+
* `az login`: Fall back to device code flow in GitHub Codespaces (#27443)
79+
80+
**RDBMS**
81+
82+
* `az postgres flexible-server update`: Support case-insensitive input for `--tier`, `--performance-tier`, `--sku`, and `--maintenance-window` (#29840)
83+
* `az postgres flexible-server migration create`: Add AWS_AURORA as a migration source type for PostgreSql (#29863)
84+
85+
**SQL**
86+
87+
* `az sql elastic-pool create`: Set `min_capacity` to `None` for non-serverless SKUs (#29886)
88+
* `az sql mi create/update`: Add gpv2 parameter and iops parameter (#29873)
89+
690
2.64.0
791
++++++
892

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.64.0"
20+
__version__ = "2.65.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.3.0
44
asn1crypto==0.24.0
55
azure-appconfiguration==1.7.0
66
azure-batch==14.2.0
7-
azure-cli-core==2.64.0
7+
azure-cli-core==2.65.0
88
azure-cli-telemetry==1.1.0
9-
azure-cli==2.64.0
9+
azure-cli==2.65.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.7.0
66
azure-batch==14.2.0
7-
azure-cli-core==2.64.0
7+
azure-cli-core==2.65.0
88
azure-cli-telemetry==1.1.0
9-
azure-cli==2.64.0
9+
azure-cli==2.65.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.7.0
66
azure-batch==14.2.0
7-
azure-cli-core==2.64.0
7+
azure-cli-core==2.65.0
88
azure-cli-telemetry==1.1.0
9-
azure-cli==2.64.0
9+
azure-cli==2.65.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.64.0"
20+
VERSION = "2.65.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)