Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 5 additions & 0 deletions src/amg/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -137,3 +137,8 @@ Release History
* `az grafana integrations monitor add`: support optional subscription id argument for multi-subscription scenarios
* `az grafana integrations monitor delete`: support optional subscription id argument for multi-subscription scenarios
* `az grafana notification-channel`: deprecate command group as part of Grafana legacy alerting deprecation


2.6.1
++++++
* Remove msrestazure dependency
3 changes: 1 addition & 2 deletions src/amg/azext_amg/_validators.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------

from msrestazure.tools import parse_resource_id

from knack.util import CLIError

from azure.cli.core.commands.validators import get_default_location_from_resource_group, validate_tags
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from azure.cli.core.profiles import ResourceType
from azure.mgmt.core.tools import parse_resource_id


def process_grafana_create_namespace(cmd, namespace):
Expand Down
2 changes: 1 addition & 1 deletion src/amg/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# TODO: Confirm this is the right version number you want and it matches your
# HISTORY.rst entry.
VERSION = '2.6.0'
VERSION = '2.6.1'

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