diff --git a/src/azure-cli-core/HISTORY.rst b/src/azure-cli-core/HISTORY.rst index f59a9e1b718..e437a487dc4 100644 --- a/src/azure-cli-core/HISTORY.rst +++ b/src/azure-cli-core/HISTORY.rst @@ -3,6 +3,11 @@ Release History =============== +2.74.0 +++++++ +* Resolve CVE-2024-13176 (#31503) +* Resolve CVE-2024-9143 (#31503) + 2.73.0 ++++++ * [BREAKING CHANGE] Remove azure stack profiles `2020-09-01-hybrid`, `2019-03-01-hybrid`, `2018-03-01-hybrid` and `2017-03-09-profile` (#31307) diff --git a/src/azure-cli-core/azure/cli/core/__init__.py b/src/azure-cli-core/azure/cli/core/__init__.py index 25d32fd139e..420d9d4c975 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.73.0" +__version__ = "2.74.0" import os import sys diff --git a/src/azure-cli-core/setup.py b/src/azure-cli-core/setup.py index a2d10e581c3..972aa46b835 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.73.0" +VERSION = "2.74.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 2368f5d24ca..7495f70417e 100644 --- a/src/azure-cli/HISTORY.rst +++ b/src/azure-cli/HISTORY.rst @@ -3,6 +3,77 @@ Release History =============== +2.74.0 +++++++ + +**ACR** + +* `az acr login`: Add `refreshToken` and `username` fields to the output after using `--expose-token` parameter (#31091) +* `az acr create`: Fix logs for domain name label (#31423) +* `az acr connected-registry`: Remove private preview message (#31475) + +**AKS** + +* `az aks nodepool add/update/upgrade`: Add new parameter `--undrainable-node-behavior` to specify whether nodes can be cordoned during upgrade (#31495) +* `az aks create/enable-addons`: Remove preview flag for `--enable-high-log-scale-mode` parameter (#31531) +* `az aks nodepool add/update/upgrade`: Add `--max-unavailable` to specify he maximum number or percentage of nodes that can be simultaneously unavailable during upgrade (#31510) + +**App Config** + +* Fix #30619: `az appconfig feature set`: Fix invalid value for `--requirement-type` (#31471) +* Fix #30619: `az appconfig kv import`: Fix invalid value for `--requirement-type` (#31471) + +**App Service** + +* `az appservice plan create`: Update the description of `--zone-redundant` parameter (#31437) +* `az webapp config set`: Remove number of workers validation (#31443) + +**ARM** + +* `az policy`: Add breaking change pre-announcement (#31458) + +**Backup** + +* `az backup container/item/policy/protection`: Add support for ASE backup operations (#31413) +* `az backup`: Add support for HANA Snapshot (#27932) + +**Compute** + +* `az vm/vmss create`: Add warning log for changing the default value of VM size (#31409) + +**Cosmos DB** + +* `az cosmosdb sql container`: Add Full Text Policy support (#31425) + +**Identity** + +* `az identity federated-credential create/update`: Add support for claims matching expressions (#31436) + +**Monitor** + +* `az monitor action-group`: Support `--incident-receivers`, `--mi-user-assigned` and `--mi-system-assigned`(#31205) + +**MySQL** + +* `az mysql flexible-server create`: Change default storage redundancy for BC SKU to local redundancy (#31537) + +**NetAppFiles** + +* `az netappfiles volume-group create`: Add support for Oracle in ANF Volume Groups (#31528) + +**Network** + +* `az network vnet-gateway create`: Add `--enable-high-bandwith-vpn-gateway` parameter (#31100) +* `az network vpn-connection show`: Support new properties output with virtual network gateway (#31100) +* `az network vnet-gateway migration`: Support vpn gateway migration feature (#31429) +* `az network private-endpoint-connection`: Add provider `Microsoft.FluidRelay/fluidRelayServers` (#31472) +* `az network network-watcher packet-capture`: Support for packet capture includes a ring buffer (#30784) +* `az network private-endpoint-connection`: Add provider `Microsoft.VideoIndexer/accounts` (#31549) + +**RDBMS** + +* `az postgres flexible-server create/db`: Fix for `--database-name` validation (#31542) + 2.73.0 ++++++ diff --git a/src/azure-cli/azure/cli/__main__.py b/src/azure-cli/azure/cli/__main__.py index b1c87d988df..71442beaecd 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.73.0" +__version__ = "2.74.0" logger = get_logger(__name__) diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 9bdc9a8b740..75e22efd3d1 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -4,9 +4,9 @@ argcomplete==3.5.2 asn1crypto==0.24.0 azure-appconfiguration==1.7.0 azure-batch==15.0.0b1 -azure-cli-core==2.73.0 +azure-cli-core==2.74.0 azure-cli-telemetry==1.1.0 -azure-cli==2.73.0 +azure-cli==2.74.0 azure-common==1.1.22 azure-core==1.31.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 56ad533f96c..cdac8a20f17 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -4,9 +4,9 @@ argcomplete==3.5.2 asn1crypto==0.24.0 azure-appconfiguration==1.7.0 azure-batch==15.0.0b1 -azure-cli-core==2.73.0 +azure-cli-core==2.74.0 azure-cli-telemetry==1.1.0 -azure-cli==2.73.0 +azure-cli==2.74.0 azure-common==1.1.22 azure-core==1.31.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 050a83d8928..1f95ade9543 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -4,9 +4,9 @@ argcomplete==3.5.2 asn1crypto==0.24.0 azure-appconfiguration==1.7.0 azure-batch==15.0.0b1 -azure-cli-core==2.73.0 +azure-cli-core==2.74.0 azure-cli-telemetry==1.1.0 -azure-cli==2.73.0 +azure-cli==2.74.0 azure-common==1.1.22 azure-core==1.31.0 azure-cosmos==3.2.0 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index ac1be008b2e..0f1ee326282 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.73.0" +VERSION = "2.74.0" # If we have source, validate that our version numbers match # This should prevent uploading releases with mismatched versions. try: