From fb7b6edc2f16e3f6a1788ac35c8d20b36bfda904 Mon Sep 17 00:00:00 2001 From: Azure CLI Bot Date: Wed, 29 Nov 2023 11:29:54 +0800 Subject: [PATCH] {Release} Upgrade to Azure CLI 2.55.0 (#27943) --- src/azure-cli-core/HISTORY.rst | 4 ++ src/azure-cli-core/azure/cli/core/__init__.py | 2 +- src/azure-cli-core/setup.py | 2 +- src/azure-cli/HISTORY.rst | 71 +++++++++++++++++++ src/azure-cli/azure/cli/__main__.py | 2 +- src/azure-cli/requirements.py3.Darwin.txt | 4 +- src/azure-cli/requirements.py3.Linux.txt | 4 +- src/azure-cli/requirements.py3.windows.txt | 4 +- src/azure-cli/setup.py | 2 +- 9 files changed, 85 insertions(+), 10 deletions(-) diff --git a/src/azure-cli-core/HISTORY.rst b/src/azure-cli-core/HISTORY.rst index 61b22c3b4ff..2b7053c19c4 100644 --- a/src/azure-cli-core/HISTORY.rst +++ b/src/azure-cli-core/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +2.55.0 +++++++ +* Minor fixes + 2.54.0 ++++++ * `aaz`: Support data-plane clients (#27617) diff --git a/src/azure-cli-core/azure/cli/core/__init__.py b/src/azure-cli-core/azure/cli/core/__init__.py index 762d19b38e2..d112633ec50 100644 --- a/src/azure-cli-core/azure/cli/core/__init__.py +++ b/src/azure-cli-core/azure/cli/core/__init__.py @@ -4,7 +4,7 @@ # -------------------------------------------------------------------------------------------- # pylint: disable=line-too-long -__version__ = "2.54.0" +__version__ = "2.55.0" import os import sys diff --git a/src/azure-cli-core/setup.py b/src/azure-cli-core/setup.py index b47bdd9cf79..2f7f9e3ec72 100644 --- a/src/azure-cli-core/setup.py +++ b/src/azure-cli-core/setup.py @@ -8,7 +8,7 @@ from codecs import open from setuptools import setup, find_packages -VERSION = "2.54.0" +VERSION = "2.55.0" # If we have source, validate that our version numbers match # This should prevent uploading releases with mismatched versions. diff --git a/src/azure-cli/HISTORY.rst b/src/azure-cli/HISTORY.rst index c847293f710..8b86064b110 100644 --- a/src/azure-cli/HISTORY.rst +++ b/src/azure-cli/HISTORY.rst @@ -3,6 +3,77 @@ Release History =============== +2.55.0 +++++++ + +**ACR** + +* `az acr login`: Allow registry names with hyphen (#27835) +* Fix #27487: `az acr check-health`: Fix DOCKER_PULL_ERROR when acr check-health for Mac OS (#27891) + +**AKS** + +* `az aks update`: Update outbound ip description and remove limitation (#27890) +* `az aks create`: Add arguments `--asg-ids` and `--allowed-host-ports` (#27900) +* `az aks nodepool add/update`: Add arguments `--asg-ids` and `--allowed-host-ports` (#27900) + +**App Service** + +* Fix #27189: `az webapp log tail`: Catch exception when scm connection is lost (#27810) + +**Billing** + +* `az billing period list`: Fix `--top` does not work as expected (#27804) +* `az billing invoice download`: Fix command does not work (#27804) +* `az billing invoice list`: Fix `--period-end-date` and `--period-start-date` help message error (#27804) + +**Compute** + +* `az disk create`: Add new parameter `--optimized-for-frequent-attach` to improve reliability and performance of data disks that are frequently attached (#27815) +* `az disk/snapshot create`: Add new parameter `--elastic-san-resource-id` to support creating through the ARM id of elastic san volume snapshot (#27815) + +**Containerapp** + +* `az containerapp ingress cors enable`: Only update arguments `--allow-headers`, `--allow-credentials`, `--allow-methods`, `--expose-methods`, `--max-age` when the value is not `None` (#27837) +* `az containerapp`: Change the container-app name and container-app job name in the example to legal names (#27933) + +**Key Vault** + +* `az keyvault backup start`: Add `status` in output (#27902) + +**Monitor** + +* `az monitor activity-log alert`: Upgrade api-version to `2020-10-01` to include `any-of` query condition (#27623) +* `az monitor activity-log alert`: Expose parameter `all-of` to enable user modifying query condition specifically (#27623) + +**Network** + +* `az network private-endpoint-connection`: Add provider `Microsoft.DBforPostgreSQL/flexibleServers` (#27840) +* `az network public-ip prefix`: Add parameter `--tier` (#27825) + +**RDBMS** + +* `az postgres flexible-server replica create`: Add support for parameters like `--tier`, `--sku-name`, `--storage-size` during replica creation (#27894) +* `az postgres flexible-server update`: Add support for custom IOPS update for flexible server using `--performance-tier` (#27894) +* `az postgres flexible-server advanced-threat-protection-setting show`: Show advanced threat protection setting (#27918) +* `az postgres flexible-server advanced-threat-protection-setting update`: Update advanced threat protection setting using `--state` as Enabled/Disabled (#27918) + +**Service Connector** + +* `az containerapp connection create`: Enable Key Vault Reference in Container Apps (#27270) + +**SQL** + +* `az instance-pool create/update`: Add optional parameter `--maintenance-configuration-id` for SQL Instance Pool resource (#27859) +* `az mi create/update`: Add optional parameter `--instance-pool-name` for SQL Managed Server resource (#27906) + +**Storage** + +* `az storage blob upload`: Increase `max_block_size` for append/block blobs of size >= 8mb to 8mb instead of 4mb (#27880) +* `az storage blob upload`: Change default `max_connections` for append blob to 1 (#27880) +* `az storage file upload/upload-batch`: Fix `--allow-trailing-dot` breaking `--connection-string` usage (#27901) +* Fix #27899: `az storage account create`: Run `check_name_availability()` first and throw a warning when an existing account with the name is found (#27914) + 2.54.0 ++++++ diff --git a/src/azure-cli/azure/cli/__main__.py b/src/azure-cli/azure/cli/__main__.py index 4cf148e355a..2fdca4f986f 100644 --- a/src/azure-cli/azure/cli/__main__.py +++ b/src/azure-cli/azure/cli/__main__.py @@ -18,7 +18,7 @@ from knack.log import get_logger __author__ = "Microsoft Corporation " -__version__ = "2.54.0" +__version__ = "2.55.0" # A workaround for https://bugs.python.org/issue32502 (https://github.com/Azure/azure-cli/issues/5184) diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 40d1cd29c75..f8e0ec9f154 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -4,9 +4,9 @@ argcomplete==3.1.1 asn1crypto==0.24.0 azure-appconfiguration==1.1.1 azure-batch==14.0.0 -azure-cli-core==2.54.0 +azure-cli-core==2.55.0 azure-cli-telemetry==1.1.0 -azure-cli==2.54.0 +azure-cli==2.55.0 azure-common==1.1.22 azure-core==1.26.0 azure-cosmos==3.2.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 93d66a99f32..8320a2b8239 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -4,9 +4,9 @@ argcomplete==3.1.1 asn1crypto==0.24.0 azure-appconfiguration==1.1.1 azure-batch==14.0.0 -azure-cli-core==2.54.0 +azure-cli-core==2.55.0 azure-cli-telemetry==1.1.0 -azure-cli==2.54.0 +azure-cli==2.55.0 azure-common==1.1.22 azure-core==1.26.0 azure-cosmos==3.2.0 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index 694e4b0ab4e..31314026168 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -4,9 +4,9 @@ argcomplete==3.1.1 asn1crypto==0.24.0 azure-appconfiguration==1.1.1 azure-batch==14.0.0 -azure-cli-core==2.54.0 +azure-cli-core==2.55.0 azure-cli-telemetry==1.1.0 -azure-cli==2.54.0 +azure-cli==2.55.0 azure-common==1.1.22 azure-core==1.26.0 azure-cosmos==3.2.0 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index 1f8d98439e9..6a11f7b683a 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -17,7 +17,7 @@ logger.warn("Wheel is not available, disabling bdist_wheel hook") cmdclass = {} -VERSION = "2.54.0" +VERSION = "2.55.0" # If we have source, validate that our version numbers match # This should prevent uploading releases with mismatched versions. try: