Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

{Release} Upgrade to Azure CLI 2.25.0 #18452

Merged
merged 2 commits into from
Jun 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/azure-cli-core/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Release History
===============

2.25.0
++++++
* Fix #18360 and #18262: Write to stderr issue (#18414)

2.24.2
++++++
* No changes
Expand Down
2 changes: 1 addition & 1 deletion src/azure-cli-core/azure/cli/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# --------------------------------------------------------------------------------------------
# pylint: disable=line-too-long

__version__ = "2.24.2"
__version__ = "2.25.0"

import os
import sys
Expand Down
2 changes: 1 addition & 1 deletion src/azure-cli-core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from codecs import open
from setuptools import setup, find_packages

VERSION = "2.24.2"
VERSION = "2.25.0"

# If we have source, validate that our version numbers match
# This should prevent uploading releases with mismatched versions.
Expand Down
96 changes: 96 additions & 0 deletions src/azure-cli/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,102 @@
Release History
===============

2.25.0
++++++

**ACR**

* `az acr connected-registry`: Minor bug fixes (#18288)

**App Service**

* `az webapp deployment source config-local-git`: Fix to set SiteConfig (#18364)

**ARM**

* `az resource tag`: Fix the problem of tagging resources with resource type `Microsoft.Network/publicIPAddresses` (#18254)
* `az policy assignment non-compliance-message`: New command group for policy assignment non-compliance messages (#18158)
* `az policy assignment update`: New command for partially updating existing policy assignments (#18158)

**Backup**

* Migrate backup to track2 SDK (#17831)

**Compute**

* Upgrade api-version for VM and VMSS from '2020-12-01' to '2021-03-01' (#18233)
* `az vm create`: Support delete option for NICs and Disks for VMs in Azure CLI (#18238)
* Support user_data for VM and VM Scale Sets (#18432)

**Container**

* `az container exec`: Decode received bytes as utf-8 string (#18384)

**EventGrid**

* Migrate track2 SDK (#18210)

**HDInsight**

* Migrate to track2 Python SDK 7.0.0 (#18237)

**Iot Hub**

* Fix for user-assigned identity ARM issue on remove (#18205)

**Key Vault**

* Fix #11871: AKV10032: Invalid issuer error for operations in nondefault tenant/subscription (#18162)
* `az keyvault set-policy/delete-policy`: Support --application-id (#18209)
* `az keyvault recover`: Support MHSM (#18150)
* `az keyvault private-link-resource list`: Support MHSM (#18273)
* `az keyvault private-endpoint-connection`: Support MHSM (#18273)

**NetAppFiles**

* `az netappfiles volume backup status`: Command added to get the status of the backup for a volume. (#18303)
* `az netappfiles volume update`: Optional parameter added named `--snapshot-policy-id` o assign a snapshot policy to the volume. (#18303)
* `az netappfiles volume backup create`: Optional parameter added named `--use-existing-snapshot` to manually backup an already existing snapshot. (#18303)
* `az netappfiles volume backup update`: Optional parameters added named `--use-existing-snapshot` to manually backup an already existing snapshot. Optional parameter label also added to add a label to backup. (#18303)

**Network**

* Support `Microsoft.Sql/servers` provider in Private link (#18268)
* `az network private-link-resource list`: Support `--type microsoft.keyvault/managedHSMs` (#18273)
* `az network private-endpoint-connection`: Support `--type microsoft.keyvault/managedHSMs` (#18273)

**RDBMS**

* Add commands for Github actions (#17949)
* `az postgres flexible-server migration`: Add customer facing feature to migrate postgres db servers from Sterling to Meru platform (#18161)
* Private DNS zone parameter added for restore command, high availability validator (#18218)
* Change server default location (issue reported) (#18157)

**Role**

* [BREAKING CHANGE] `az ad sp create-for-rbac`: `--name` is now only used as the `displayName` of the app. It is not used to generate `identifierUris` anymore. `name` in the output is now the same as `appID` (`servicePrincipalNames`) and deprecated. (#18312)

**SignalR**

* `az signalr identity`: Add managed identity related command (#18309)
* `az signalr cors update`: Add update command for cors (#18309)

**Storage**

* `az storage blob copy start`: Support --tier and --rehydrate-priority (#18170)
* GA release storage file share NFS and SMB multichannel (#18232)
* [BREAKING CHANGE] `az storage account create`: Remove `StorageFileDataSmbShareOwner` option for --default-share-permission (#18396)
* `az storage blob list`: --delimiter parameter value will now be honored (#18394)

**Synapse**

* Update to AZ Synapse mgmt 2.0.0 (#18195)
* Spark configuration conversion, which cause the failure (#18328)

**Webapp**

* Add to `az webapp deploy` param help text (#17743)

2.24.2
++++++

Expand Down
2 changes: 1 addition & 1 deletion src/azure-cli/azure/cli/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from knack.log import get_logger

__author__ = "Microsoft Corporation <[email protected]>"
__version__ = "2.24.2"
__version__ = "2.25.0"


# A workaround for https://bugs.python.org/issue32502 (https://github.com/Azure/azure-cli/issues/5184)
Expand Down
4 changes: 2 additions & 2 deletions src/azure-cli/requirements.py3.Darwin.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ argcomplete==1.11.1
asn1crypto==0.24.0
azure-appconfiguration==1.1.1
azure-batch==10.0.0
azure-cli-core==2.24.2
azure-cli-core==2.25.0
azure-cli-telemetry==1.0.6
azure-cli==2.24.2
azure-cli==2.25.0
azure-common==1.1.22
azure-core==1.13.0
azure-cosmos==3.2.0
Expand Down
4 changes: 2 additions & 2 deletions src/azure-cli/requirements.py3.Linux.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ argcomplete==1.11.1
asn1crypto==0.24.0
azure-appconfiguration==1.1.1
azure-batch==10.0.0
azure-cli-core==2.24.2
azure-cli-core==2.25.0
azure-cli-telemetry==1.0.6
azure-cli==2.24.2
azure-cli==2.25.0
azure-common==1.1.22
azure-core==1.13.0
azure-cosmos==3.2.0
Expand Down
4 changes: 2 additions & 2 deletions src/azure-cli/requirements.py3.windows.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ argcomplete==1.11.1
asn1crypto==0.24.0
azure-appconfiguration==1.1.1
azure-batch==10.0.0
azure-cli-core==2.24.2
azure-cli-core==2.25.0
azure-cli-telemetry==1.0.6
azure-cli==2.24.2
azure-cli==2.25.0
azure-common==1.1.22
azure-core==1.13.0
azure-cosmos==3.2.0
Expand Down
2 changes: 1 addition & 1 deletion src/azure-cli/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
logger.warn("Wheel is not available, disabling bdist_wheel hook")
cmdclass = {}

VERSION = "2.24.2"
VERSION = "2.25.0"
# If we have source, validate that our version numbers match
# This should prevent uploading releases with mismatched versions.
try:
Expand Down