Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
20aecd7
add pester tests for connectedk8s cli extension
Mar 18, 2025
40926a3
Pass the force delete param to the API call (#4)
atchutbarli Mar 25, 2025
8f068a8
fix CI testcases for nodepool image issues (#8)
bavneetsingh16 May 23, 2025
ad1ce1d
update python version to 3.13 (#12)
bavneetsingh16 Jul 31, 2025
2121694
changes to support gateway association/disassociation for api version…
bavneetsingh16 Sep 17, 2025
3c08eac
[Azure RBAC] Deprecate 3P mode flags, fix Azure RBAC enablement bug, …
vineeth-thumma Sep 29, 2025
ed5b5e2
Merge branch 'Azure:main' into main
bavneetsingh16 Oct 15, 2025
9038227
remove hardcoded public ARM endpoint url for fairfax and mooncake (#24)
bavneetsingh16 Oct 15, 2025
002220d
Bug Fix for FFX mcr url (#22)
hapate Oct 15, 2025
6c0a24b
[connectedk8s] update release notes and version (#26)
bavneetsingh16 Oct 16, 2025
3ca7ae1
Add Helm Overrides for AGC (#23)
junw98 Oct 27, 2025
bbebbcd
[Azure RBAC] Remove deprecated flags (#16)
vineeth-thumma Oct 28, 2025
979a4c3
update prediag version (#27)
atchutbarli Nov 4, 2025
09119b8
Updating the proxy version constant (#28)
gabemousa Nov 5, 2025
22d2042
update broken test in CI pipeline (#37)
bavneetsingh16 Mar 3, 2026
532f503
Update CLIENT_PROXY_VERSION to 1.3.033281 (#36)
shlokpatel57 Mar 3, 2026
92383b8
Updates in CSP version (#40)
shlokpatel57 Mar 26, 2026
11550d4
Add ARM64 support for Helm installation in connectedk8s (#34)
ashnanze Apr 15, 2026
c9215c4
Handle removal of --all flag in Helm 4 (#42)
atchutbarli Apr 20, 2026
83bb4a1
bump connectedk8s version to 1.12.0
ashnanze Apr 22, 2026
ae26c76
add connectedk8s-1.12.0 whl for E2E testing
ashnanze Apr 22, 2026
f35e56c
fix version to 1.11.1 and correct CLIENT_PROXY_VERSION in release notes
ashnanze Apr 22, 2026
bff5964
resolve merge conflicts with upstream main
ashnanze Apr 22, 2026
2c5d937
update whl to connectedk8s-1.11.1
ashnanze Apr 22, 2026
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
9 changes: 9 additions & 0 deletions src/connectedk8s/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

Release History
===============
1.11.1
+++++++
* Added ARM64 support for Helm binary installation.
* Handle removal of '--all' flag in Helm 4 to ensure compatibility.
* Added Helm overrides support for Application Gateway for Containers (AGC).
* Updated CSP version.
* Updated CLIENT_PROXY_VERSION to 1.3.033581.
Comment on lines +9 to +11
Copy link

Copilot AI Apr 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The 1.11.1 changelog claims CLIENT_PROXY_VERSION was updated to 1.3.033581, but in the codebase azext_connectedk8s/_constants.py still defines CLIENT_PROXY_VERSION = "1.3.032281". Also, the PR description mentions 1.3.033281 (different from the changelog). Please update the actual constant (and any related references) or correct the changelog/PR description so they all reflect the same released proxy version.

Copilot uses AI. Check for mistakes.
* Updated pre-diagnostics version.

1.11.0
+++++
* [Breaking Change] Removed deprecated '--app-id' and '--app-secret' RBAC parameters from the extension.
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion src/connectedk8s/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# TODO: Confirm this is the right version number you want and it matches your
# HISTORY.rst entry.

VERSION = "1.11.0"
VERSION = "1.11.1"

# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down
Loading