Skip to content

Commit d3eeaea

Browse files
committed
update azure-cli version to 2.69.0
1 parent 54ff034 commit d3eeaea

File tree

9 files changed

+116
-10
lines changed

9 files changed

+116
-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.69.0
7+
++++++
8+
* `aaz`: Support simple type parsed from string value (#30623)
9+
610
2.68.0
711
++++++
812
* PREVIEW: Support managed identity on Azure Arc-enabled Linux server (#30267)

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

6+
2.69.0
7+
++++++
8+
9+
**ACR**
10+
11+
* `az acr manifest list-metadata`: Update help messages for untagged manifests (#30382)
12+
13+
**AKS**
14+
15+
* `az aks create`: Add parameters `--if-match` and `--if-none-match` to support etag functionality for concurrency (#30309)
16+
* `az aks update`: Add parameters `--if-match` and `--if-none-match` to support etag functionality for concurrency (#30309)
17+
* `az aks delete`: Add parameters `--if-match` and `--if-none-match` to support etag functionality for concurrency (#30309)
18+
19+
**App Config**
20+
21+
* `az appconfig kv import`: Support microsoft feature management schema (#30376)
22+
* `az appconfig kv export`: Support microsoft feature management schema (#30376)
23+
* `az appconfig kv export`: Introduce a new environment variable called `AZURE_APPCONFIG_FM_COMPATIBILE` when exporting to a file for backward compatibility for users (#30376)
24+
* `az appconfig feature show`: Support microsoft feature management schema (#30376)
25+
* `az appconfig feature list`: Support microsoft feature management schema (#30376)
26+
* `az appconfig kv restore/show/list`: Update datetime validation to accept timezone offset (#30369)
27+
* `az appconfig revision list`: Update datetime validation to accept timezone offset (#30369)
28+
* `az appconfig export`: Update export help message for environment variable (#30747)
29+
30+
**App Service**
31+
32+
* `az functionapp create`: Refactor EOL implementation and sort based on runtime EOL date (#30636)
33+
* `az functionapp list-flexconsumption-locations`: Check if flex region is enabled for subscription (#30607)
34+
* `az functionapp deployment slot create`: Add `--https-only` parameter for slot creation command (#30628)
35+
* `az webapp list-runtimes`: Remove the JBoss '_byol' entries from the output for webapps with Linux OS (#30673)
36+
37+
**Backup**
38+
39+
* `az backup`: Add support for new AFS Vault Standard Policies (#30531)
40+
41+
**Batch**
42+
43+
* [BREAKING CHANGE] `az batch certificate create/list/show/delete`: Remove deprecated commands (#30501)
44+
* [BREAKING CHANGE] `az batch node reimage/remote-desktop`: Remove deprecated commands (#30501)
45+
* [BREAKING CHANGE] `az batch pool create`: Remove `--application-licenses`, `--certificate-references` , `--os-family` and `--os-version` deprecated parameters (#30501)
46+
* [BREAKING CHANGE] `az batch pool set/reset `: Remove `--certificate-references` deprecated parameter (#30501)
47+
* `az batch job create`: Add parameter `--job-manager-task-application-package-references` and `--on-all-tasks-complete` (#30501)
48+
* `az batch job disable`: Add parameter `--json-file` (#30501)
49+
* `az batch job-schedule create`: Add parameter `--job-manager-task-application-package-references`, `--job-metadata`, and `--job-manager-task-environment-settings` (#30501)
50+
* `az batch job-schedule set/reset`: Add parameter `--job-max-task-retry-count` and `--job-max-wall-clock-time` (#30501)
51+
* `az batch node reboot`: Add parameter `--json-file` (#30501)
52+
* `az batch node scheduling disable`: Add parameter `--json-file` (#30501)
53+
* `az batch pool autoscale evaluate`: Add parameter `--json-file` (#30501)
54+
* `az batch pool create`: Add parameter `--start-task-environment-settings` and `--start-task-max-task-retry-count` (#30501)
55+
* `az batch pool reset`: Add parameter `--start-task-resource-files` and `--target-node-communication-mode` (#30501)
56+
57+
**Compute**
58+
59+
* [BREAKING CHANGE] `az sig gallery-application create/update`: Output field `supportedOsType` changed to `supportedOSType` (#30678)
60+
* `az vm list-sizes`: Remove unused parameter `--ids` (#30652)
61+
* `az vmss create/update`: Add new paramter `--zone-balance` to support setting zone balance (#30692)
62+
* `az vm/vmss create`: Install guest attestation extension when security type set to ConfidentialVM (#30690)
63+
* `az vmss scale`: Add new logic to support scaling VMSS in edge zone (#30704)
64+
* `az vmss create`: Add `--encryption-identity` parameter to use that managed identity for Azure disk encryption (#30657)
65+
* `az vmss encryption enable`: Add `--encryption-identity` parameter to update or set encryption identity for Azure disk encryption (#30657)
66+
67+
**Container app**
68+
69+
* Fix #28047: `az containerapp compose create`: Upgrade pycomposefile version to split environment variables on the first equal sign instead of every equal sign (#30670)
70+
71+
**DevTest Labs**
72+
73+
* Add Hibernation Support (#30633)
74+
75+
**Key Vault**
76+
77+
* `az keyvault update/update-hsm`: Fix `--bypass` overriding by default when specifying `--default-action Deny` (#30676)
78+
79+
**Network**
80+
81+
* `az network lb create`: Refine `--frontend-ip-zone` to support multiple zones (#30639)
82+
* `az network private-endpoint-connnection`: Add `Microsoft.HealthDataAiservices/deidservices` for private endpoint connections (#30627)
83+
* `az network routeserver create/update`: Add `--auto-scale-config` (#30702)
84+
* `az network virtual-appliance reimage`: Allow reimage of virtual machines associated with a network virtual appliance (#30680)
85+
86+
**Profile**
87+
88+
* `az login`: Passing the managed identity ID with `--username` is deprecated and will be removed in a future release. Please use `--client-id`, `--object-id` or `--resource-id` instead (#30525)
89+
90+
**RDBMS**
91+
92+
* `az postgres flexible-server geo-restore`: add `--restore-time` parameter (#30689)
93+
* `az postgres flexible-server fabric-mirroring start/stop/update-databases`: Disable fabric mirroring on HA server (#30688)
94+
* `az postgres flexible-server update`: Fix for scaling up node count on an elastic cluster (#30669)
95+
96+
**Redis**
97+
98+
* `az redis create/update`: Add `--zonal-allocation-policy` to support the way of selecting zones for cache instance (#30705)
99+
100+
**Role**
101+
102+
* Add `az role definition show` command (#30593)
103+
104+
**Service Connector**
105+
106+
* `az webapp connection create redis`: Add `--system-identity` param (#30630)
107+
6108
2.68.0
7109
++++++
8110

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