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
13 changes: 13 additions & 0 deletions src/azure-cli-core/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
Release History
===============

2.66.2
++++++

* Resolve CVE-2025-4517 (#32350)
* Resolve CVE-2025-24049 (#32038)
* Resolve CVE-2025-9230 (#32491)
* Resolve CVE-2025-9232 (#32491)
* Resolve CVE-2024-13176 (#32032)
* Resolve CVE-2024-9143 (#32032)
* Resolve CVE-2025-50181 (#32076)
* Resolve CVE-2025-50182 (#32076)
* Resolve CVE-2024-47081 (#32077)

2.66.1
++++++

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.66.1"
__version__ = "2.66.2"

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.66.1"
VERSION = "2.66.2"

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

2.66.2
++++++

**Packaging**

* Bump Python to 3.12 on RHEL and CentOS Stream (#32464)
* Bump embedded Python to 3.13.9 (#32491)
* Drop Azure Linux (Mariner) 2.0 support (#32463)

2.66.1
++++++

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.66.1"
__version__ = "2.66.2"


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.3.0
asn1crypto==0.24.0
azure-appconfiguration==1.7.0
azure-batch==14.2.0
azure-cli-core==2.66.1
azure-cli-core==2.66.2
azure-cli-telemetry==1.1.0
azure-cli==2.66.1
azure-cli==2.66.2
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.3.0
asn1crypto==0.24.0
azure-appconfiguration==1.7.0
azure-batch==14.2.0
azure-cli-core==2.66.1
azure-cli-core==2.66.2
azure-cli-telemetry==1.1.0
azure-cli==2.66.1
azure-cli==2.66.2
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.3.0
asn1crypto==0.24.0
azure-appconfiguration==1.7.0
azure-batch==14.2.0
azure-cli-core==2.66.1
azure-cli-core==2.66.2
azure-cli-telemetry==1.1.0
azure-cli==2.66.1
azure-cli==2.66.2
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.66.1"
VERSION = "2.66.2"
# If we have source, validate that our version numbers match
# This should prevent uploading releases with mismatched versions.
try:
Expand Down