Skip to content

Commit c190617

Browse files
azclibotDanielMicrosoftyanzhuddnecusjz
authored
{Release} Upgrade to Azure CLI 2.83.0 (#32706)
Co-authored-by: DanielMicrosoft <dlanguiller@microsoft.com> Co-authored-by: Yan Zhu <105691024+yanzhudd@users.noreply.github.com> Co-authored-by: necusjz <necusjz@gmail.com>
1 parent bb389da commit c190617

File tree

9 files changed

+84
-10
lines changed

9 files changed

+84
-10
lines changed

src/azure-cli-core/HISTORY.rst

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

6+
2.83.0
7+
++++++
8+
* Resolve CVE-2025-69277 (#32610)
9+
* Resolve CVE-2026-21441 (#32617)
10+
* Resolve CVE-2025-12084 (#32662)
11+
* Resolve CVE-2026-21226 (#32635)
12+
* Replace GitHub URLs with AME Storage for network isolated requirements (#32677)
13+
614
2.82.0
715
++++++
816
* Resolve CVE-2025-66418 (#32506)

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

6+
2.83.0
7+
++++++
8+
9+
**ACR**
10+
11+
* `az acr config content-trust update`: Add breaking changes announcement that `enabled` status will no longer be accepted (#32462)
12+
* `az acr check-health`: Add breaking change announcement that Notary client check will be removed (#32462)
13+
14+
**AKS**
15+
16+
* `az aks create`: Enable ACStor v2 without any storage options on a new cluster by `--enable-azure-container-storage` parameter (#32558)
17+
* `az aks update`: Enable the ephemeral disk storage option of ACStor v2 by `--enable-azure-container-storage ephemeralDisk` parameter (#32558)
18+
* `az aks update`: Disable the elastic SAN storage option of ACStor v2 by `--disable-azure-container-storage elasticSan` parameter (#32558)
19+
* `az aks update`: Disable ACStor v2 by `--disable-azure-container-storage` parameter (#32558)
20+
21+
**App Config**
22+
23+
* `az appconfig`: Add option `anonymous` for `--auth-mode` parameter (#32639)
24+
25+
**App Service**
26+
27+
* Fix #32290: `az functionapp config appsettings set`: Fix command failure when using `--slot-settings` parameter to update existing slot settings (#32291)
28+
29+
**Cognitive Services**
30+
31+
* `az cognitiveservices agent logs show`: Add console log streaming for hosted agents (#32701)
32+
* `az cognitiveservices agent create`: Add `--show-logs` flag for deployment troubleshooting (#32701)
33+
* `az cognitiveservices agent start`: Add `--show-logs` and `--timeout` flags (#32701)
34+
35+
**Container app**
36+
37+
* `az containerapp env create`: Update the error display for ConsumptionOnly environment creation (#32648)
38+
39+
**MySQL**
40+
41+
* `az mysql flexible-server restore`: Support restore server to different subscription (#32620)
42+
* `az mysql flexible-server geo-restore`: Support geo restore server to different subscription (#32620)
43+
* `az mysql flexible-server replica create`: Support create server replica to different subscription (#32620)
44+
45+
**Network**
46+
47+
* `az network vnet-gateway`: Add identity-related parameters and subgroup (#32524)
48+
* `az network vpn-connection`: Add `--auth-type` and `--cert-auth` parameters (#32524)
49+
* `az network virtual-network-appliance`: Support Virtual Network Appliance feature (#32645)
50+
* `az network ddos-custom-policy`: Support DDoS Policy Customization (#32673)
51+
52+
**Packaging**
53+
54+
* Optimize MSI upgrade performance by simplifying file replacement logic (#32678)
55+
56+
**PostgreSQL**
57+
58+
* `az postgres flexible-server create/georestore/replica`: Allow SSDV2 servers to perform create replica and geo restore (#32649)
59+
60+
**Profile**
61+
62+
* `az login`: For managed identity authentication, no longer retrieve the FQDN of the machine, bypassing hanging or error caused by misconfigured network setup (#32611)
63+
64+
**Storage**
65+
66+
* Fix #32503: `az storage file list`: Fix listing files when using Oauth without Reader access (#32602)
67+
* `az storage account file-service-properties update`: Add `--require-smb-encryption-in-transit` and `--require-nfs-encryption-in-transit` (#32619)
68+
* `az storage account create/update`: Add `--publish-ipv6-endpoint` (#26826)
69+
* `az storage account network-rule add/remove`: Add `--ipv6-address` (#26826)
70+
* `az storage account create/update`: Set `--min-tls-version` to `tls1_2` if the value provided is `tls1_0` and `tls1_1` (#32652)
71+
672
2.82.0
773
++++++
874

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 <python@microsoft.com>"
20-
__version__ = "2.82.0"
20+
__version__ = "2.83.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.2
66
azure-batch==15.0.0b1
7-
azure-cli-core==2.82.0
7+
azure-cli-core==2.83.0
88
azure-cli-telemetry==1.1.0
9-
azure-cli==2.82.0
9+
azure-cli==2.83.0
1010
azure-common==1.1.22
1111
azure-core==1.38.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.2
66
azure-batch==15.0.0b1
7-
azure-cli-core==2.82.0
7+
azure-cli-core==2.83.0
88
azure-cli-telemetry==1.1.0
9-
azure-cli==2.82.0
9+
azure-cli==2.83.0
1010
azure-common==1.1.22
1111
azure-core==1.38.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.2
66
azure-batch==15.0.0b1
7-
azure-cli-core==2.82.0
7+
azure-cli-core==2.83.0
88
azure-cli-telemetry==1.1.0
9-
azure-cli==2.82.0
9+
azure-cli==2.83.0
1010
azure-common==1.1.22
1111
azure-core==1.38.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.82.0"
20+
VERSION = "2.83.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)