Skip to content

Commit e1fdb81

Browse files
authored
{Release} Upgrade to Azure CLI 2.81.0 (#32456)
1 parent db4b635 commit e1fdb81

File tree

9 files changed

+35
-10
lines changed

9 files changed

+35
-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.81.0
7+
++++++
8+
* Minor fixes
9+
610
2.80.0
711
++++++
812
* Minor fixes

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

6+
2.81.0
7+
++++++
8+
9+
**AKS**
10+
11+
* `az aks safeguards`: Add `--pss-level` parameter to support Pod Security Standards (#32432)
12+
* `az aks safeguards create`: Add validation to prevent duplicate resource creation (#32432)
13+
14+
**ARM**
15+
16+
* Fix #32098: `az bicep install`: Fix a bug where the installation was skipped when `--version` was specified unless `bicep.use_binary_from_path` was explicitly set to `false` (#32337)
17+
18+
**Compute**
19+
20+
* `az vm/vmss application set`: Add new parameter `--enable-automatic-upgrade` to support enabling application automatic upgrade (#32394)
21+
22+
**NetAppFiles**
23+
24+
* `az netappfiles volume-group create`: Add `--network-features` parameter for volume groups (#32423)
25+
* `az netappfiles volume replication list`: Add `--exclude` parameter to exclude deleted replications (#32423)
26+
627
2.80.0
728
++++++
829

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.80.0"
20+
__version__ = "2.81.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.80.0
7+
azure-cli-core==2.81.0
88
azure-cli-telemetry==1.1.0
9-
azure-cli==2.80.0
9+
azure-cli==2.81.0
1010
azure-common==1.1.22
1111
azure-core==1.35.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.80.0
7+
azure-cli-core==2.81.0
88
azure-cli-telemetry==1.1.0
9-
azure-cli==2.80.0
9+
azure-cli==2.81.0
1010
azure-common==1.1.22
1111
azure-core==1.35.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.80.0
7+
azure-cli-core==2.81.0
88
azure-cli-telemetry==1.1.0
9-
azure-cli==2.80.0
9+
azure-cli==2.81.0
1010
azure-common==1.1.22
1111
azure-core==1.35.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.80.0"
20+
VERSION = "2.81.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)