Skip to content

Commit 7952300

Browse files
authored
{Release} Upgrade to Azure CLI 2.75.0 (#31698)
1 parent 079bca2 commit 7952300

File tree

9 files changed

+105
-10
lines changed

9 files changed

+105
-10
lines changed

src/azure-cli-core/HISTORY.rst

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

6+
2.75.0
7+
++++++
8+
* Resolve CVE-2025-50181 (#31669)
9+
* Resolve CVE-2025-50182 (#31669)
10+
611
2.74.0
712
++++++
813
* Resolve CVE-2024-13176 (#31503)

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

6+
2.75.0
7+
++++++
8+
9+
**ACR**
10+
11+
* `az acr connected-registry create`: Fix for enabling dedicated endpoint on container registry resource when user confirms during creation (#31661)
12+
* `az acr login`: Fix login status code when command fails (#31692)
13+
14+
**AKS**
15+
16+
* `az aks create`: Simplify logic and enable correct recording rule groups for managed prom (#31460)
17+
* `az aks`: Allow `LongRunningOperation` to show poller status (#30903)
18+
* `az aks update`: Add option `--assignee-principal-type` to specify the principal type when using `--attach-acr` (#31464)
19+
* `az aks create`: Add `--enable-static-egress-gateway` parameter to support static egress gateway feature (#31285)
20+
* `az aks update`: Add `--enable-static-egress-gateway` parameter to support static egress gateway feature (#31285)
21+
* `az aks nodepool add`: Add option `Gateway` to `--mode` parameter and `--gateway-prefix-size` parameter to support static egress gateway feature (#31285)
22+
* `az aks create`: Add `--pod-ip-allocation-mode` parameter to support Azure CNI Static Block Allocation (#31544)
23+
* `az aks nodepool add`: Add `--pod-ip-allocation-mode` parameter to support Azure CNI Static Block Allocation (#31544)
24+
25+
**App Config**
26+
27+
* `az appconfig kv export/import/list/delete`: Support filtering by tags (#30694)
28+
* `az appconfig restore`: Support filtering by tags (#30694)
29+
* `az appconfig revision list`: Support filtering by tags (#30694)
30+
* `az appconfig kv import/export/restore`: Add new parameter `--dry-run` to support dry-run feature (#30842)
31+
32+
**ARM**
33+
34+
* `az deployment what-if`: Show potential changes in pretty-printed what-if result (#30930)
35+
* `az deployment what-if`: Display warnings and diagnostic messages in pretty-printed what-if result (#30930)
36+
37+
**ARO**
38+
39+
* `az aro update`: Fix credential refresh to handle clusters with invalid machinesets (#31593)
40+
41+
**Cloud**
42+
43+
* `az cloud register/update`: Add `--endpoint-microsoft-graph-resource-id` to support configuring Microsoft Graph endpoint (#31651)
44+
* `az cloud register/update`: Add `--skip-endpoint-discovery` to allow skipping cloud endpoints' auto discovery (#31651)
45+
46+
**Compute**
47+
48+
* [BREAKING CHANGE] `az vmss create/update`: Remove too long argument option `--scheduled-event-additional-publishing-target-event-grid-and-resource-graph` to fix help message issue (#31687)
49+
50+
**Consumption**
51+
52+
* `az consumption usage list`: Fix usage list returns data with replace `None` string to null value (#31601)
53+
54+
**Container app**
55+
56+
* `az containerapp update`: Modify `--yaml` template handling to fix `runningStatus` error (#31508)
57+
* Fix #31480: `az containerapp revision copy`: Only return `containerapp does not exist` when got 404 (#31689)
58+
59+
**Identity**
60+
61+
* Fix #31598: Fix regression in `az identity federated-credential create` by defaulting audience (#31609)
62+
63+
**Key Vault**
64+
65+
* `az keyvault secret download`: Add `--overwrite` flag (#31659)
66+
67+
**Network**
68+
69+
* `az network nat gateway`: Support Standard V2 SKU (#31532)
70+
* `az network public-ip`: Support Standard V2 SKU (#31532)
71+
* `az network public-ip prefix`: Support Standard V2 SKU (#31532)
72+
* `az network application-gateway waf-policy managed-rule exception`: Support exception feature in application gateway (#31610)
73+
* `az network vnet subnet create/update`: Support IPAM pool allocation (#31643)
74+
75+
**Packaging**
76+
77+
* Drop Azure Linux (Mariner) 2.0 support (#31533)
78+
79+
**RDBMS**
80+
81+
* `az postgres flexible-server create`: Extend EOL to PG 11 and 12 (#31693)
82+
83+
**Service Fabric**
84+
85+
* Fix #18358: `az sf client-certificate add`: Fix the bug that command fails with `remove` not defined (#31632)
86+
87+
**SQL**
88+
89+
* `az sql db replica create`: Add partner subscription id for cross-subscription GeoDr (#31594)
90+
91+
**Storage**
92+
93+
* `az storage account create/update`: Add `--sas-expiration-action` to sas policy (#31674)
94+
* `az storage file upload-batch/download-batch`: Add OAuth login support (#31567)
95+
696
2.74.0
797
++++++
898

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.74.0"
20+
__version__ = "2.75.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.1
66
azure-batch==15.0.0b1
7-
azure-cli-core==2.74.0
7+
azure-cli-core==2.75.0
88
azure-cli-telemetry==1.1.0
9-
azure-cli==2.74.0
9+
azure-cli==2.75.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.1
66
azure-batch==15.0.0b1
7-
azure-cli-core==2.74.0
7+
azure-cli-core==2.75.0
88
azure-cli-telemetry==1.1.0
9-
azure-cli==2.74.0
9+
azure-cli==2.75.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.1
66
azure-batch==15.0.0b1
7-
azure-cli-core==2.74.0
7+
azure-cli-core==2.75.0
88
azure-cli-telemetry==1.1.0
9-
azure-cli==2.74.0
9+
azure-cli==2.75.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.74.0"
20+
VERSION = "2.75.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)