Skip to content

Commit

Permalink
[AKS] BREAKING CHANGE: az aks trustedaccess rolebinding create: Rem…
Browse files Browse the repository at this point in the history
…ove deprecated `-r` and `-s` options (Azure#8243)
  • Loading branch information
YitongFeng-git authored and chrisribe committed Nov 13, 2024
1 parent dfc2f0e commit 3e00951
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 4 additions & 0 deletions src/aks-preview/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ If there is no rush to release a new version, please just add a description of t

To release a new version, please select a new version number (usually plus 1 to last patch version, X.Y.Z -> Major.Minor.Patch, more details in `\doc <https://semver.org/>`_), and then add a new section named as the new version number in this file, the content should include the new modifications and everything from the *Pending* section. Finally, update the `VERSION` variable in `setup.py` with this new version number.

13.0.0b1
+++++++
* [BREAKING CHANGE]: `az aks trustedaccess rolebinding create`: Remove deprecated `-r` and `-s` options.

12.0.0b2
++++++++
* `az aks create/update`: Fix storage pool name validation for Azure Container Storage.
Expand Down
5 changes: 0 additions & 5 deletions src/aks-preview/azext_aks_preview/_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -2208,11 +2208,6 @@ def load_arguments(self, _):
)
c.argument(
"source_resource_id",
options_list=[
"--source-resource-id",
c.deprecate(target="-s", redirect="--source-resource-id", hide=True),
c.deprecate(target="-r", redirect="--source-resource-id", hide=True),
],
help="The source resource id of the binding",
)

Expand Down
2 changes: 1 addition & 1 deletion src/aks-preview/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from setuptools import setup, find_packages

VERSION = "12.0.0b2"
VERSION = "13.0.0b1"

CLASSIFIERS = [
"Development Status :: 4 - Beta",
Expand Down

0 comments on commit 3e00951

Please sign in to comment.