Azure CLI Diff Tool

0.1.1 · active · verified Thu Apr 16

The `azure-cli-diff-tool` is a Python-based utility designed to assist Azure CLI users in managing and analyzing metadata changes across historical versions of Azure CLI command modules and extensions. It helps identify updates and potential breaking changes by diffing metadata files. The current version is 0.1.1, and it is actively maintained as part of the broader Azure CLI development ecosystem.

Common errors

Warnings

Install

Quickstart

The `azure-cli-diff-tool` is primarily used as an Azure CLI extension. First, ensure the `command-change` extension is installed, then use `az command-change version-diff` to compare metadata between two Azure CLI versions for a specific module, such as 'monitor'.

az extension add --name command-change

az command-change version-diff --base-version 2.47.0 --diff-version 2.49.0 --target-module monitor

view raw JSON →