Skip to content
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
5 changes: 5 additions & 0 deletions src/azure-cli-core/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
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.73.0"
__version__ = "2.74.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.73.0"
VERSION = "2.74.0"

# If we have source, validate that our version numbers match
# This should prevent uploading releases with mismatched versions.
Expand Down
71 changes: 71 additions & 0 deletions src/azure-cli/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
++++++

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 <python@microsoft.com>"
__version__ = "2.73.0"
__version__ = "2.74.0"


logger = get_logger(__name__)
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 @@ -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
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 @@ -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
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 @@ -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
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 @@
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:
Expand Down