diff --git a/src/azure-cli-core/HISTORY.rst b/src/azure-cli-core/HISTORY.rst index 83cf027e9f9..54337b45410 100644 --- a/src/azure-cli-core/HISTORY.rst +++ b/src/azure-cli-core/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +2.65.0 +++++++ +* Minor fixes + 2.64.0 ++++++ * Minor fixes diff --git a/src/azure-cli-core/azure/cli/core/__init__.py b/src/azure-cli-core/azure/cli/core/__init__.py index e3fce1dcb73..34b79d6b644 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.64.0" +__version__ = "2.65.0" import os import sys diff --git a/src/azure-cli-core/setup.py b/src/azure-cli-core/setup.py index 78e83e9ceab..6e06c7a61a1 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.64.0" +VERSION = "2.65.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 42c102b0c9a..619b86d82d1 100644 --- a/src/azure-cli/HISTORY.rst +++ b/src/azure-cli/HISTORY.rst @@ -3,6 +3,90 @@ Release History =============== +2.65.0 +++++++ + +**ACR** + +* Fix #21900: `az acr task identity remove`: Fix incorrect operation_group setting (#29885) +* `az acr credential-set`: Improve help message (#29810) + +**AD** + +* `az ad app create/update`: Add `--service-management-reference` argument (#29860) + +**AKS** + +* `az aks nodepool delete-machines`: Add support to delete specific machines in an agent pool (#29921) + +**App Config** + +* `az appconfig`: Add premium SKU support (#29824) + +**App Service** + +* `az functionapp config set`: Map parameters explicitly for the internal update_site_configs function call (#29756) + +**Compute** + +* `az vm/vmss create`: Add `--ssh-key-type` parameter to support generating Ed25519 SSH keys (#29926) +* `az vm image list`: Expose ImageDeprecationStatus property in output (#29932) + +**Container app** + +* Fix #29849: `az containerapp job stop`: Fix stop execution response (#29907) +* Fix #29166: `az containerapp compose create`: Support image with tag and support get ACR from image (#29933) + +**Cosmos DB** + +* `az cosmosdb restore`: Add `--disable-ttl` to support for Restore with Time-To-Live Disabled (#29875) + +**DataLake** + +* `az dla`: Deprecate datalake analytics (#29879) + +**HDInsight** + +* `az hdinsight update`: Add parameter `--assign-identity-type` to allow to update to `SystemAssigned` identity. (#29816) + +**Monitor** + +* `az monitor action-group create`: Adjust formatting of `--actions` help message (#29747) +* `az monitor action-group update`: Adjust formatting of `--add-actions` help message (#29747) +* `az monitor action-group notification create`: Adjust formatting of `--add-actions` help message (#29747) + +**MySQL** + +* `az mysql flexible-server create/update`: Add `--accelerated-logs` to support configuring accelerated logs for Business Critical tier (#29936) + +**NetAppFiles** + +* `az netappfiles volume create`: Fix subnet id as resource id (#29813) + +**Network** + +* `az network vnet peering`: Refine command interface of subnet peering (#29817) + +**Packaging** + +* Release Docker image based on Azure Linux 3.0 (#29769) +* Include `jq` in Azure Linux docker image (#29867) +* Drop Debian 10 support (#29378) + +**Profile** + +* `az login`: Fall back to device code flow in GitHub Codespaces (#27443) + +**RDBMS** + +* `az postgres flexible-server update`: Support case-insensitive input for `--tier`, `--performance-tier`, `--sku`, and `--maintenance-window` (#29840) +* `az postgres flexible-server migration create`: Add AWS_AURORA as a migration source type for PostgreSql (#29863) + +**SQL** + +* `az sql elastic-pool create`: Set `min_capacity` to `None` for non-serverless SKUs (#29886) +* `az sql mi create/update`: Add gpv2 parameter and iops parameter (#29873) + 2.64.0 ++++++ diff --git a/src/azure-cli/azure/cli/__main__.py b/src/azure-cli/azure/cli/__main__.py index 09bf0e011af..abe33ea0cb4 100644 --- a/src/azure-cli/azure/cli/__main__.py +++ b/src/azure-cli/azure/cli/__main__.py @@ -17,7 +17,7 @@ from knack.log import get_logger __author__ = "Microsoft Corporation " -__version__ = "2.64.0" +__version__ = "2.65.0" logger = get_logger(__name__) diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 4a886976a31..ffc856a6363 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -4,9 +4,9 @@ argcomplete==3.3.0 asn1crypto==0.24.0 azure-appconfiguration==1.7.0 azure-batch==14.2.0 -azure-cli-core==2.64.0 +azure-cli-core==2.65.0 azure-cli-telemetry==1.1.0 -azure-cli==2.64.0 +azure-cli==2.65.0 azure-common==1.1.22 azure-core==1.28.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 8a0f51cc00f..675390baaac 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -4,9 +4,9 @@ argcomplete==3.3.0 asn1crypto==0.24.0 azure-appconfiguration==1.7.0 azure-batch==14.2.0 -azure-cli-core==2.64.0 +azure-cli-core==2.65.0 azure-cli-telemetry==1.1.0 -azure-cli==2.64.0 +azure-cli==2.65.0 azure-common==1.1.22 azure-core==1.28.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 a19de4401cb..a55193aa594 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -4,9 +4,9 @@ argcomplete==3.3.0 asn1crypto==0.24.0 azure-appconfiguration==1.7.0 azure-batch==14.2.0 -azure-cli-core==2.64.0 +azure-cli-core==2.65.0 azure-cli-telemetry==1.1.0 -azure-cli==2.64.0 +azure-cli==2.65.0 azure-common==1.1.22 azure-core==1.28.0 azure-cosmos==3.2.0 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index 30348a78829..cf022354d3d 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -17,7 +17,7 @@ logging.warning("Wheel is not available, disabling bdist_wheel hook") cmdclass = {} -VERSION = "2.64.0" +VERSION = "2.65.0" # If we have source, validate that our version numbers match # This should prevent uploading releases with mismatched versions. try: