Skip to content

Commit f44723d

Browse files
authored
Deprecate 'az neon' command group with end-of-life notice (#9353)
* Deprecate 'az neon' command group with end-of-life notice and migration guidance * refector message * Update HISTORY.rst to include deprecation notice for 'az neon' command group * Added license
1 parent 126476e commit f44723d

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

src/neon/HISTORY.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,7 @@ Release History
3030
1.0.0b4
3131
++++++
3232
* Update the CLI command description to support AI related queries.
33+
34+
1.0.0b5
35+
++++++
36+
* Deprecate 'az neon' command group with end-of-life notice and migration guidance.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# --------------------------------------------------------------------------------------------
2+
# Copyright (c) Microsoft Corporation. All rights reserved.
3+
# Licensed under the MIT License. See License.txt in the project root for license information.
4+
# --------------------------------------------------------------------------------------------
5+
6+
from azure.cli.core.breaking_change import register_command_group_deprecate
7+
from azure.cli.core.breaking_change import register_other_breaking_change
8+
9+
register_command_group_deprecate('az neon')
10+
11+
message = """Deprecation Notice: The Neon Azure Native Integration is being deprecated and will
12+
reach end of life on January 31, 2026. Transfer your projects to a Neon managed organization
13+
today. Migration documentation is available at https://neon.com/docs/import/migrate-from-azure-native"""
14+
15+
register_other_breaking_change('az neon', message)

0 commit comments

Comments
 (0)