Skip to content

Commit 0494144

Browse files
authored
{Release} Upgrade to Azure CLI 2.67.0 (#30330)
1 parent f25a321 commit 0494144

File tree

9 files changed

+94
-10
lines changed

9 files changed

+94
-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.67.0
7+
++++++
8+
* PREVIEW: Support managed identity on Azure Arc-enabled Windows server (#29187)
9+
610
2.66.0
711
++++++
812
* `aaz`: Support managed identity (#29953)

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

6+
2.67.0
7+
++++++
8+
9+
**AKS**
10+
11+
* [BREAKING CHANGE] `az aks create/update`: Remove `--uptime-sla` and `--no-uptime-sla` parameters (#30221)
12+
* [BREAKING CHANGE] `az aks create`: Remove `--aad-client-app-id`, `--aad-server-app-id` and `--aad-server-app-secret` parameters (#30251)
13+
* [BREAKING CHANGE] `az aks trustedaccess rolebinding create`: Remove deprecated '-r' options (#30253)
14+
* `az aks create/update`: Fix storage pool name validation for Azure Container Storage (#30258)
15+
* `az aks enable-addon`: Update AGIC addon to use Network Contributor instead of Contributor (#29989)
16+
17+
**App Config**
18+
19+
* `az appconfig create/update`: Add new parameters `--arm-auth-mode` and `--enable-arm-private-network-access` to support data plane proxy settings (#30228)
20+
21+
**Compute**
22+
23+
* `az vm disk attach/detach`: Add new parameter `--disk-ids` to support setting multiple disks by disk ids (#30236)
24+
25+
**Compute Fleet**
26+
27+
* `az compute-fleet`: Add `create/update/show/delete/list/list-vmss` commands for manage Azure Compute Fleet (#30223)
28+
29+
**Container**
30+
31+
* `az container container-group-profile`: Add new command group to manage Azure Container Instance Container Group Profile(#30260)
32+
33+
**DataLake**
34+
35+
* [BREAKING CHANGE] `az dla`: Remove dla module since it has been deprecated (#30249)
36+
37+
**DLS**
38+
39+
* [BREAKING CHANGE] `az dls account network-rule`: Remove this command group as no server support anymore (#30094)
40+
41+
**Eventhub**
42+
43+
* `az eventhubs eventhub`: Add new parameters `--timestamp-type` and `--min-compaction-lag-in-mins` (#29957)
44+
* `az eventhubs namespace replica`: Add new commands to support adding/removing replicas (#29957)
45+
46+
**Extension**
47+
48+
* [BREAKING CHANGE] `az extension add/update`: Set default `--allow-preview` value from `True` to be `False` for extensions installation and remain `True` for extensions without stable releases (#30163)
49+
50+
**Kusto**
51+
52+
* [BREAKING CHANGE] `az kusto`: Remove kusto from CLI as it has been moved to CLI extensions (#30250)
53+
54+
**Network**
55+
56+
* [BREAKING CHANGE] `az network public-ip ddos-protection-statu`: Remove misspelled command group (#30265)
57+
58+
**Packaging**
59+
60+
* Drop Python 3.8 support (#30225)
61+
62+
**Profile**
63+
64+
* [BREAKING CHANGE] `az login`: `--password` no longer accepts a service principal certificate. Use `--certificate` to pass a service principal certificate (#30092)
65+
66+
**RDBMS**
67+
68+
* `az postgres flexible-server long-term-retention start/pre-check/list/show`: New commands to support long-term-retention backups on PostgreSql Flex Server (#30272)
69+
* `az postgres flexible-server create`: Support provisioning postgres flexible servers with version 17 (#30298)
70+
71+
**Service Connector**
72+
73+
* `az connection create mysql-flexible`: Add `--private-endpoint` parameter (#30287)
74+
75+
**SQL**
76+
77+
* [BREAKING CHANGE] `az sql mi link create`: Rename input from `--source-endpoint` to `--partner-endpoint`, `--primary-availability-group-name` to `--partner-availability-group-name`, `--secondary-availability-group-name` to `--instance-availability-group-name`, `--target-database` to `--databases` (#30234)
78+
* [BREAKING CHANGE] `az sql mi link create/show/list/update`: Rename output from `targetDatabase`, `primaryAvailabilityGroupName`, `secondaryAvailabilityGroupNamesourceEndpoint`, `sourceReplicaId`, `targetReplicaId`, `linkState`, `lastHardenedLsn` to `databases`, `partnerAvailabilityGroupName`, `instanceAvailabilityGroupName`, `partnerEndpoint`, `distributedAvailabilityGroupName`, `instanceLinkRole`, `partnerLinkRole`, `failoverMode`, `seedingMode` (#30234)
79+
* [BREAKING CHANGE] `az sql failover-group create`: Change default failover policy to manual (#30177)
80+
* `az sql mi link failover`: Support performing requested failover type in this Managed Instance link (#30234)
81+
82+
**Upgrade**
83+
84+
* [BREAKING CHANGE] `az upgrade`: Set default `--allow-preview` value from `True` to be `False` for extensions installation and remain `True` for extensions without stable releases (#30163)
85+
686
2.66.0
787
++++++
888

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.66.0"
20+
__version__ = "2.67.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.66.0
7+
azure-cli-core==2.67.0
88
azure-cli-telemetry==1.1.0
9-
azure-cli==2.66.0
9+
azure-cli==2.67.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.3.0
44
asn1crypto==0.24.0
55
azure-appconfiguration==1.7.0
66
azure-batch==14.2.0
7-
azure-cli-core==2.66.0
7+
azure-cli-core==2.67.0
88
azure-cli-telemetry==1.1.0
9-
azure-cli==2.66.0
9+
azure-cli==2.67.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.3.0
44
asn1crypto==0.24.0
55
azure-appconfiguration==1.7.0
66
azure-batch==14.2.0
7-
azure-cli-core==2.66.0
7+
azure-cli-core==2.67.0
88
azure-cli-telemetry==1.1.0
9-
azure-cli==2.66.0
9+
azure-cli==2.67.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.66.0"
20+
VERSION = "2.67.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)