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.79.0
++++++
* Resolve CVE-2025-9230 (#32315)
* Resolve CVE-2025-9232 (#32315)

2.78.0
++++++
* Minor fixes
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.78.0"
__version__ = "2.79.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.78.0"
VERSION = "2.79.0"

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

2.79.0
++++++

**ACR**

* `az acr create/update`: Remove preview flag for `--role-assignment-mode` (#32212)
* `az acr check-health`: Remove preview flag for `--repository` (#32212)
* `az acr task create/update`: Remove preview flag for `--source-acr-auth-id` (#32212)
* `az acr build/run`: Remove preview flag for `--source-acr-auth-id` (#32212)
* `az acr config content-trust`: Add deprecation notice (#32196)
* `az acr config content-trust show/update`: Add deprecation notice (#32196)

**AKS**

* `az aks update`: Add support to remove existing certificates by setting the value of `--custom-ca-trust-certificates` to an empty file (#32201)
* `az aks create/update`: Add `--acns-advanced-networkpolicies` parameter to support enabling advanced networking policies (`None`, `L7` or `FQDN`) (#32265)

**ARM**

* `az resource list`: Include `provisioningState` property in table output (#32156)

**Backup**

* `az backup vault deleted-vault`: Implementing List and Undelete for Deleted Backup Vaults (#32306)

**Compute**

* `az vm availability-set update`: Add new parameter `--enable-all-instance-down` to support setting scheduled events profile (#32285)
* `az vm availability-set update`: Add new parameter `--scheduled-events-api-version` to support setting scheduled events profile (#32285)

**Container app**

* `az containerapp`: Update Api-version to 2025-07-01 (#32179)
* `az containerapp env http-route-config`: Add command group to manage environment level http routing (#32240)
* `az containerapp env premium-ingress`: Add command group to configure premium ingress settings for the environment (#32240)
* Fix #32107: `az containerapp registry show`: Fix NoneType error when container app doesn't have any registry server (#32270)

**HDInsight**

* `az hdinsight create`: Support creating Entra-enabled clusters and creating clusters with WASB + MSI (#32273)
* `az hdinsight credentials update`: Update cluster credentials (#32273)
* `az hdinsight credentials show`: Show current cluster credentials (#32273)

**Network**

* `az network application-gateway create/update`: Add parameter `--enable-fips` (#32339)

**SQL**

* `az sql db update`: Prevent overwrite of SLO when updating from serverless to provisioned (#32292)
* `az db ltr-backup/ltr-policy`: Remove preview tag for time-based immutability (#32297)

**Storage**

* `az storage account network-security-perimeter-configuration list/show/reconcile`: Add support for network-security-perimeter (#32294)
* `az storage file list`: Fix file list for nfs shares, as `--include` is not supported (#32268)
* `az storage account create/update`: Add `--enable-blob-geo-priority-replication` to support Geo SLA (#32331)
* `az storage account or-policy create/update`: Add `--priority-replication` to support OR SLA (#32331)

2.78.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.78.0"
__version__ = "2.79.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.1
azure-batch==15.0.0b1
azure-cli-core==2.78.0
azure-cli-core==2.79.0
azure-cli-telemetry==1.1.0
azure-cli==2.78.0
azure-cli==2.79.0
azure-common==1.1.22
azure-core==1.35.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.1
azure-batch==15.0.0b1
azure-cli-core==2.78.0
azure-cli-core==2.79.0
azure-cli-telemetry==1.1.0
azure-cli==2.78.0
azure-cli==2.79.0
azure-common==1.1.22
azure-core==1.35.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.1
azure-batch==15.0.0b1
azure-cli-core==2.78.0
azure-cli-core==2.79.0
azure-cli-telemetry==1.1.0
azure-cli==2.78.0
azure-cli==2.79.0
azure-common==1.1.22
azure-core==1.35.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.78.0"
VERSION = "2.79.0"
# If we have source, validate that our version numbers match
# This should prevent uploading releases with mismatched versions.
try:
Expand Down