Skip to content

Commit 168e50e

Browse files
Azure CLI Botjsntcyzhoxing-msJuliehzl
authored
{Release} Upgrade to Azure CLI 2.7.0 (Azure#13740)
* update azure-cli version to 2.7.0 * Apply suggestions from code review * Update src/azure-cli/HISTORY.rst Co-authored-by: Zunli Hu <[email protected]> * Update src/azure-cli/HISTORY.rst Co-authored-by: Zunli Hu <[email protected]> * Update src/azure-cli/HISTORY.rst * Update src/azure-cli/HISTORY.rst * Update src/azure-cli/HISTORY.rst * Update src/azure-cli/HISTORY.rst Co-authored-by: Yu Chen <[email protected]> Co-authored-by: Xing Zhou <[email protected]> Co-authored-by: Zunli Hu <[email protected]>
1 parent 3fc1fd6 commit 168e50e

9 files changed

+80
-10
lines changed

src/azure-cli-core/HISTORY.rst

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
Release History
44
===============
55

6+
2.7.0
7+
++++++
8+
* Enable local context for location (#13682)
9+
610
2.6.0
711
++++++
812
* Update local context on/off status to global user level (#13277)

src/azure-cli-core/azure/cli/core/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
from __future__ import print_function
88

9-
__version__ = "2.6.0"
9+
__version__ = "2.7.0"
1010

1111
import os
1212
import sys

src/azure-cli-core/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
logger.warn("Wheel is not available, disabling bdist_wheel hook")
1818
cmdclass = {}
1919

20-
VERSION = "2.6.0"
20+
VERSION = "2.7.0"
2121
# If we have source, validate that our version numbers match
2222
# This should prevent uploading releases with mismatched versions.
2323
try:

src/azure-cli/HISTORY.rst

+66
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,72 @@
33
Release History
44
===============
55

6+
2.7.0
7+
++++++
8+
9+
**ACR**
10+
11+
* Fix a typo in an error message of token creation (#13620)
12+
13+
**AKS**
14+
15+
* Change default vm sku to Standard_D2s_v3 (#13541)
16+
* Fix creating role assignment for MSI clsuter plus custom subnet (#13543)
17+
18+
**AppService**
19+
20+
* Fix #12739 az appservice list-locations returns some invalid locations (#13520)
21+
22+
**ARM**
23+
24+
* `az deployment`: Fix issue #13159 of incorrect message of JSON after removing comments and compressing (#13561)
25+
* `az resource tag`: Fix issue #13255 of tagging resources with resource type `Microsoft.ContainerRegistry/registries/webhooks` (#13495)
26+
* Improve the examples for the resource module (#13375)
27+
28+
**ARO**
29+
30+
* Change CLIError to correct flag for --worker-vm-disk-size-gb (#13439)
31+
32+
**EventHub**
33+
34+
* Fix for issue #12406 Argument --capture-interval does not update the "intervalInSeconds" (#13054)
35+
36+
**HDInsight**
37+
38+
* Change get_json_object to shell_safe_json_parse (#13684)
39+
40+
**Monitor**
41+
42+
* `az monitor metrics alert`: refine several help messages (#13469)
43+
* `az monitor diagnostic-settings create`: support --export-to-resource-specific argument (#13697)
44+
* Support LA workspace recover (#13719)
45+
46+
**Network**
47+
48+
* `az network dns zone`: support - character (#13377)
49+
* `az network vpn-connection ipsec-policy`: change the --sa-lifetime and --sa-max-size to larger values in example (#13590)
50+
* Bump network to 2020-04-01 (#13568)
51+
* `az network private-endpoint-connection`: support event grid (#13608)
52+
* `az network express-route list-route-tables`: fix bug that cannot list routes as table (#13714)
53+
54+
**Packaging**
55+
56+
* Add Ubuntu Focal Package (#13491)
57+
58+
**RBAC**
59+
60+
* `az ad sp credential reset`: modify credential generation to avoid troublesome special characters (#13643)
61+
62+
**Redis**
63+
64+
* Fix #13529: Change documentation of parameter enable_non_ssl_port (#13584)
65+
66+
**Storage**
67+
68+
* `az storage copy`: Add parameter `--follow-symlinks` to support symlinks (#12037)
69+
* Enable local context for storage account (#13682)
70+
* `az storage logging`: Fix issue #11969 to refine error message (#13605)
71+
672
2.6.0
773
++++++
874

src/azure-cli/azure/cli/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
pkg_resources.declare_namespace(__name__)
1212

1313
__author__ = "Microsoft Corporation <[email protected]>"
14-
__version__ = "2.6.0"
14+
__version__ = "2.7.0"

src/azure-cli/requirements.py3.Darwin.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ applicationinsights==0.11.9
44
argcomplete==1.11.1
55
asn1crypto==0.24.0
66
azure-batch==9.0.0
7-
azure-cli==2.6.0
7+
azure-cli==2.7.0
88
azure-cli-command-modules-nspkg==2.0.3
9-
azure-cli-core==2.6.0
9+
azure-cli-core==2.7.0
1010
azure-cli-nspkg==3.0.4
1111
azure-cli-telemetry==1.0.4
1212
azure-common==1.1.22

src/azure-cli/requirements.py3.Linux.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ applicationinsights==0.11.9
44
argcomplete==1.11.1
55
asn1crypto==0.24.0
66
azure-batch==9.0.0
7-
azure-cli==2.6.0
7+
azure-cli==2.7.0
88
azure-cli-command-modules-nspkg==2.0.3
9-
azure-cli-core==2.6.0
9+
azure-cli-core==2.7.0
1010
azure-cli-nspkg==3.0.4
1111
azure-cli-telemetry==1.0.4
1212
azure-common==1.1.22

src/azure-cli/requirements.py3.windows.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ applicationinsights==0.11.7
44
argcomplete==1.11.1
55
asn1crypto==0.24.0
66
azure-batch==9.0.0
7-
azure-cli==2.6.0
7+
azure-cli==2.7.0
88
azure-cli-command-modules-nspkg==2.0.3
9-
azure-cli-core==2.6.0
9+
azure-cli-core==2.7.0
1010
azure-cli-nspkg==3.0.4
1111
azure-cli-telemetry==1.0.4
1212
azure-common==1.1.22

src/azure-cli/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
logger.warn("Wheel is not available, disabling bdist_wheel hook")
1919
cmdclass = {}
2020

21-
VERSION = "2.6.0"
21+
VERSION = "2.7.0"
2222
# If we have source, validate that our version numbers match
2323
# This should prevent uploading releases with mismatched versions.
2424
try:

0 commit comments

Comments
 (0)