Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
a3fc95c
Updating version 8-beta to stable cli version 8.x for 2024-06-15-preview
idanielsteven Aug 5, 2025
c1a2cca
Updating version 8-beta to stable cli version 8.x for 2024-06-15-preview
idanielsteven Aug 5, 2025
87334d6
Updating version 8-beta to stable cli version 8.x for 2024-06-15-preview
idanielsteven Aug 5, 2025
e57f4bb
Updating version 8-beta to stable cli version 8.x for 2024-06-15-preview
idanielsteven Aug 5, 2025
eb5bba5
Updating version 8-beta to stable cli version 8.x for 2024-06-15-preview
idanielsteven Aug 5, 2025
c75d3bc
fixing tests
idanielsteven Aug 6, 2025
83094fb
cleanup
idanielsteven Aug 7, 2025
b12a779
cleanup
idanielsteven Aug 7, 2025
3b50ec8
cleanup
idanielsteven Aug 7, 2025
037afdf
cleanup
idanielsteven Aug 7, 2025
1906be7
cleanup
idanielsteven Aug 7, 2025
ab4e636
updating history.rst for consistency
idanielsteven Aug 8, 2025
1904518
updating history.rst for consistency
idanielsteven Aug 8, 2025
e1f57e7
updating history.rst for consistency
idanielsteven Aug 11, 2025
63a504f
updating history.rst for consistency
idanielsteven Aug 11, 2025
479d98d
Updating service names for networkcloud and networkfabric CLI's
idanielsteven Aug 11, 2025
e7e93cb
Updating service names for networkcloud and networkfabric CLI's
idanielsteven Aug 11, 2025
2fdabbd
Merge branch 'main' of https://github.com/idanielsteven/azure-cli-ext…
idanielsteven Aug 12, 2025
a60f6fc
Updating networkcloud and managednetworkfabric Readme.md to use the a…
idanielsteven Aug 12, 2025
edce5d0
Merge branch 'Azure:main' into main
idanielsteven Aug 15, 2025
effdacb
07-15-2025 CLI shake test
idanielsteven Aug 15, 2025
426e90d
linting fixes
idanielsteven Aug 15, 2025
1b9cc13
re-adding missing params
idanielsteven Aug 15, 2025
f1e1cdc
announcement of breaking changes
idanielsteven Aug 15, 2025
0abe6e1
announcement of breaking changes
idanielsteven Aug 15, 2025
9fad4f3
updating minor release version for breaking changes
idanielsteven Aug 18, 2025
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
7 changes: 7 additions & 0 deletions src/managednetworkfabric/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

Release History
===============
8.1.0
++++++
* Adding breaking change notices for the following items that will be included in the upcoming 2025-07-15-stable CLI (9.0.x).
* [Breaking Change] Command group `fabric identity` will be removed as current az-cli-core does not support GET-PATCH. This includes the `assign`, `remove`, `show` sub-commands.
* [Breaking Change] Parameter `route-prefix-limit` will be removed from `l3domain create` and `l3domain update` commands.
* [Breaking Change] Parameter `version` on `device upgrade` command will become required.

8.0.0
++++++
* Updating version 8-beta to stable cli version 8.x for 2024-06-15-preview.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
from azure.cli.core.breaking_change import (
register_command_group_deprecate,
register_argument_deprecate,
register_required_flag_breaking_change,
)

register_command_group_deprecate(
"networkfabric fabric identity", hide=True, target_version="9.0.x"
)
register_required_flag_breaking_change(
"networkfabric device upgrade", "--version", target_version="9.0.x"
)
register_argument_deprecate(
"networkfabric l3domain create", "--route-prefix-limit", target_version="9.0.x"
)
register_argument_deprecate(
"networkfabric l3domain update", "--route-prefix-limit", target_version="9.0.x"
)
2 changes: 1 addition & 1 deletion src/managednetworkfabric/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


# HISTORY.rst entry.
VERSION = '8.0.0'
VERSION = '8.1.0'

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