Skip to content

Commit dc4393d

Browse files
azclibotReaNAiveDyanzhuddevelyn-ysnecusjz
authored
{Release} Upgrade to Azure CLI 2.70.0 (#30890)
* update azure-cli version to 2.70.0 * Apply suggestions from code review Co-authored-by: Yan Zhu <[email protected]> Co-authored-by: Yishi Wang <[email protected]> Co-authored-by: necusjz <[email protected]> --------- Co-authored-by: Qinkai Wu <[email protected]> Co-authored-by: Yan Zhu <[email protected]> Co-authored-by: Yishi Wang <[email protected]> Co-authored-by: necusjz <[email protected]>
1 parent 43f506c commit dc4393d

File tree

9 files changed

+99
-10
lines changed

9 files changed

+99
-10
lines changed

src/azure-cli-core/HISTORY.rst

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

6+
2.70.0
7+
++++++
8+
* Resolve CVE-2024-12797 (#30816)
9+
* Drop Track 1 SDK authentication (#29631)
10+
* `aaz`: Add cross tenants control for `AAZResourceIdArgFormat` (#30817)
11+
* `aaz`: Support `Any` type with full value shorthand syntax allowed (#30868)
12+
613
2.69.0
714
++++++
815
* `aaz`: Support simple type parsed from string value (#30623)

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

6+
2.70.0
7+
++++++
8+
9+
**AKS**
10+
11+
* `az aks create/az aks nodepool add`: Emit error message when using `--asg-ids` alone without `--allowed-host-ports` (#30768)
12+
* `az aks nodepool upgrade`: Fix `--node-soak-duration` cannot be set to 0 (#30778)
13+
* `az aks machine list`: Add command to fetch list of machines in an agentpool (#29939)
14+
* `az aks machine show`: Add command to fetch information about a specific machine in an agentpool (#29939)
15+
* `az aks nodepool delete`: Add `--ignore-pod-disruption-budget` option for ignoring PodDisruptionBudget (#30196)
16+
* `az aks create`: Add `--message-of-the-day` parameter to support message of the day (#30862)
17+
* `az aks nodepool add`: Add `--message-of-the-day` parameter to support message of the day (#30862)
18+
19+
**App Config**
20+
21+
* `az appconfig kv import/export`: Fix bug when importing feature flag with percentile allocation property (#30732)
22+
* `az appconfig`: Add support for custom token audience to `--auth-mode login` parameter (#30739)
23+
24+
**App Service**
25+
26+
* `az functionapp create`: Check if storage account is network restricted (#30605)
27+
* `az functionapp create`: Refactor EOL message (#30791)
28+
* Fix #28104: `az webapp config storage-account`: Remove windows limitation notes (#30775)
29+
* Fix #28374: `az webapp create`: Improve error message for globally unique name for new app create (#30750)
30+
* `az webapp sitecontainers`: Add new commands for linux web app sitecontainers (#30776)
31+
* `az webapp up`: Add `--enable-kudu-warmup` parameter to support warm-up Kudu before making deployment (#30872)
32+
* `az webapp deploy`: Add `--enable-kudu-warmup` parameter to support warm-up Kudu before making deployment (#30872)
33+
* `az webapp deployment source config-zip`: Add `--enable-kudu-warmup` parameter to support warm-up Kudu before making deployment (#30872)
34+
* Fix #29493: `az webapp create`: Update basic-auth parameter description (#30734)
35+
36+
**ARM**
37+
38+
* `az bicep`: Fix installation check for concurrent usages (#30722)
39+
40+
**Backup**
41+
42+
* `az backup restore restore-disks`: Support NoZone as a valid target zone for `--target-zone` parameter (#30720)
43+
44+
**Compute**
45+
46+
* `az vm available-set create/update`: Add `--additional-scheduled-events` parameter to support setting scheduled event policy (#30835)
47+
* `az vm available-set create/update`: Add `--enable-user-reboot-scheduled-events` parameter to support setting scheduled event policy (#30835)
48+
* `az vm available-set create/update`: Add `--enable-user-redeploy-scheduled-events` parameter to support setting scheduled event policy (#30835)
49+
50+
**Container app**
51+
52+
* `az containerapp create`: Fix to make `--registry-username` value to be `DNS1123` compliant (#30563)
53+
54+
**Cosmos DB**
55+
56+
* `az cosmosdb offline-region`: Add new command to support offline region for cosmosdb account (#30781)
57+
58+
**IoT**
59+
60+
* `az iot hub update`: Add `--min-tls-version` parameter to allow updating min tls version in a cleaner way (#30710)
61+
62+
**NetAppFiles**
63+
64+
* `az netappfiles account`: Add new command `change-key-vault` to change KeyVault/Managed HSM that is used for encryption of volumes under NetApp account (#30773)
65+
* `az netappfiles account`: Add new command `get-key-vault-status` to get KeyVault information. Response from this command can be used for transitiontocmk (#30773)
66+
* `az netappfiles account`: Add new command `transitiontocmk` to transition all volumes in a VNet to a different encryption key source (Microsoft-managed key or Azure Key Vault). Operation fails if targeted volumes share encryption sibling set with volumes from another account (#30773)
67+
* `az netappfiles volume create/update`: Add parameter `--cool-access-tiering-policy` (#30773)
68+
69+
**Network**
70+
71+
* `az network nic ip-config create/update`: Add `--private-ip-address-prefix-length` to support setting private ip address prefix length (#30837)
72+
73+
**RDBMS**
74+
75+
* `az postgres flexible-server index-tuning`: Support tuning options operations (#30851)
76+
77+
**Service Connector**
78+
79+
* `az containerapp connection create redis`: Add `--system-identity` paramter (#30808)
80+
* `az webapp connection create fabric-sql`: Fix interactive mode & allow new parameters `--fabric-workspace-uuid` and `fabric-sql-db-uuid` (#30881)
81+
82+
**Storage**
83+
84+
* `az storage account create`: Add new `--sku StandardV2_LRS/StandardV2_ZRS/StandardV2_ZRS/StandardV2_ZRS/PremiumV2_LRS/PremiumV2_ZRS` for provisioned v2 support (#30873)
85+
* `az storage account file-service-usage`: Support getting file-service usage for storage account (#30873)
86+
* `az storage share-rm create/update`: Add `--paid-bursting-enabled`, `--paid-bursting-max-bandwidth-mibps`, `--paid-bursting-max-iops` for provisioned v1, add `--provisioned-bandwidth-mibps`, `--provisioned-iops` for provisioned v2 accounts (#30873)
87+
688
2.69.0
789
++++++
890

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