Skip to content

Commit 1745a1f

Browse files
authored
{Release} Hotfix: Release 2.53.1 (#27656)
1 parent 2468810 commit 1745a1f

File tree

9 files changed

+25
-10
lines changed

9 files changed

+25
-10
lines changed

src/azure-cli-core/HISTORY.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
Release History
44
===============
55

6+
2.53.1
7+
++++++
8+
* No changes
9+
610
2.53.0
711
++++++
812
* `aaz`: Fix command name case issue for aaz command table lazy load (#27344)

src/azure-cli-core/azure/cli/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# --------------------------------------------------------------------------------------------
55
# pylint: disable=line-too-long
66

7-
__version__ = "2.53.0"
7+
__version__ = "2.53.1"
88

99
import os
1010
import sys

src/azure-cli-core/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from codecs import open
99
from setuptools import setup, find_packages
1010

11-
VERSION = "2.53.0"
11+
VERSION = "2.53.1"
1212

1313
# If we have source, validate that our version numbers match
1414
# This should prevent uploading releases with mismatched versions.

src/azure-cli/HISTORY.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
Release History
44
===============
55

6+
2.53.1
7+
++++++
8+
9+
**AKS**
10+
11+
* Hotfix: `az aks update`: Fix bug where supportPlan can be reset to None (#27664)
12+
13+
**App Service**
14+
15+
* [BREAKING CHANGE] Redact appsettings output on set/delete commands (#27565)
16+
617
2.53.0
718
++++++
819

src/azure-cli/azure/cli/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from knack.log import get_logger
1919

2020
__author__ = "Microsoft Corporation <[email protected]>"
21-
__version__ = "2.53.0"
21+
__version__ = "2.53.1"
2222

2323

2424
# A workaround for https://bugs.python.org/issue32502 (https://github.com/Azure/azure-cli/issues/5184)

src/azure-cli/requirements.py3.Darwin.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ argcomplete==3.1.1
44
asn1crypto==0.24.0
55
azure-appconfiguration==1.1.1
66
azure-batch==14.0.0
7-
azure-cli-core==2.53.0
7+
azure-cli-core==2.53.1
88
azure-cli-telemetry==1.1.0
9-
azure-cli==2.53.0
9+
azure-cli==2.53.1
1010
azure-common==1.1.22
1111
azure-core==1.26.0
1212
azure-cosmos==3.2.0

src/azure-cli/requirements.py3.Linux.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ argcomplete==3.1.1
44
asn1crypto==0.24.0
55
azure-appconfiguration==1.1.1
66
azure-batch==14.0.0
7-
azure-cli-core==2.53.0
7+
azure-cli-core==2.53.1
88
azure-cli-telemetry==1.1.0
9-
azure-cli==2.53.0
9+
azure-cli==2.53.1
1010
azure-common==1.1.22
1111
azure-core==1.26.0
1212
azure-cosmos==3.2.0

src/azure-cli/requirements.py3.windows.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ argcomplete==3.1.1
44
asn1crypto==0.24.0
55
azure-appconfiguration==1.1.1
66
azure-batch==14.0.0
7-
azure-cli-core==2.53.0
7+
azure-cli-core==2.53.1
88
azure-cli-telemetry==1.1.0
9-
azure-cli==2.53.0
9+
azure-cli==2.53.1
1010
azure-common==1.1.22
1111
azure-core==1.26.0
1212
azure-cosmos==3.2.0

src/azure-cli/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
logger.warn("Wheel is not available, disabling bdist_wheel hook")
1818
cmdclass = {}
1919

20-
VERSION = "2.53.0"
20+
VERSION = "2.53.1"
2121
# If we have source, validate that our version numbers match
2222
# This should prevent uploading releases with mismatched versions.
2323
try:

0 commit comments

Comments
 (0)