Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

{Core} Add support and document for Breaking Change Pre-announce #28832

Merged
merged 49 commits into from
Aug 21, 2024

Conversation

ReaNAiveD
Copy link
Member

@ReaNAiveD ReaNAiveD commented Apr 25, 2024

Related command

Description

Introduce an additional method to pre-announce upcoming breaking changes as well as deprecation. This will help with the collection of announced breaking changes.

Pre-announce Command Group Deprecate

from azure.cli.core.breaking_change import register_command_group_deprecate

register_command_group_deprecate('vm')

az help
image

az vm --help
image

az vm create --help
image

az vm create --name qinkai-vm-test --resource-group qinkai-test-non-existed --image Canonical:UbuntuServer:18.04-LTS:latest --security-type Standard
image

Pre-announce Command Deprecate

from azure.cli.core.breaking_change import register_command_deprecate

register_command_deprecate('vm create')

az vm --help
image

az vm create --help
image

az vm create --name qinkai-vm-test --resource-group qinkai-test-non-existed --image Canonical:UbuntuServer:18.04-LTS:latest --security-type Standard
image

Pre-announce Argument Deprecate

from azure.cli.core.breaking_change import register_argument_deprecate

register_argument_deprecate('vm create', 'foo')

az vm create --help
image

az vm create --name qinkai-vm-test --resource-group qinkai-test-non-existed --image Canonical:UbuntuServer:18.04-LTS:latest --security-type Standard --foo a
image

Pre-announce Argument Renaming

from azure.cli.core.breaking_change import register_argument_deprecate

register_argument_deprecate('vm create', '--foo', redirect='--foo-option')

az vm create --help
image

az vm create --name qinkai-vm-test --resource-group qinkai-test-non-existed --image Canonical:UbuntuServer:18.04-LTS:latest --security-type Standard --foo a
image

Pre-announce Argument Being Required

from azure.cli.core.breaking_change import register_required_flag_breaking_change

register_required_flag_breaking_change('vm create', arg='foo')

az vm create --help
image

az vm create --name qinkai-vm-test --resource-group qinkai-test-non-existed --image Canonical:UbuntuServer:18.04-LTS:latest --security-type Standard --foo a
image

az vm create --name qinkai-vm-test --resource-group qinkai-test-non-existed --image Canonical:UbuntuServer:18.04-LTS:latest --security-type Standard
image

Pre-announce Default Value Change

from azure.cli.core.breaking_change import register_default_value_breaking_change

register_default_value_breaking_change('vm create', 'foo', 'Default', 'NewDefault')

az vm create --help
image

az vm create --name qinkai-vm-test --resource-group qinkai-test-non-existed --image Canonical:UbuntuServer:18.04-LTS:latest --security-type Standard
image

Pre-announce Output Change

from azure.cli.core.breaking_change import register_output_breaking_change

register_output_breaking_change('vm create', 'The `bar` field in output would be changed.')

az vm --help
image

az vm create --help
image

az vm create --name qinkai-vm-test --resource-group qinkai-test-non-existed --image Canonical:UbuntuServer:18.04-LTS:latest --security-type Standard --foo a
image

Pre-announce Logic Change

from azure.cli.core.breaking_change import register_logic_breaking_change

register_logic_breaking_change('vm create', 'Logic Changes in "vm create"', target_version='2.69.0', detail='There is some detail for the change.', doc_link='https://fakeurlforlogicbreakingchange.nonexisted/')

az vm create --help
image

az vm create --name qinkai-vm-test --resource-group qinkai-test-non-existed --image Canonical:UbuntuServer:18.04-LTS:latest --security-type Standard --foo a
image

Pre-announce multiple breaking changes in one command and its parent group

from azure.cli.core.breaking_change import register_logic_breaking_change, register_other_breaking_change, register_output_breaking_change, 

register_logic_breaking_change('vm create', 'Logic Changes in "vm create"', target_version='2.69.0', detail='There is some detail for the change.', doc_link='https://fakeurlforlogicbreakingchange.nonexisted/')
register_output_breaking_change('vm create', 'The `bar` field in output would be changed.')
register_other_breaking_change('vm', 'Some changes happened in "vm" command group.')

az vm create --help
image

az vm create --name qinkai-vm-test --resource-group qinkai-test-non-existed --image Canonical:UbuntuServer:18.04-LTS:latest --security-type Standard
image

Pre-announce multiple breaking changes in single argument

from azure.cli.core.breaking_change import register_argument_deprecate, register_default_value_breaking_change

register_argument_deprecate('vm create', '--foo', redirect='--foo-option')
register_default_value_breaking_change('vm create', '--foo', 'Default', 'NewDefault')

az vm create --help
image

az vm create --name qinkai-vm-test --resource-group qinkai-test-non-existed --image Canonical:UbuntuServer:18.04-LTS:latest --security-type Standard --foo a
image

from azure.cli.core.breaking_change import register_required_flag_breaking_change, register_default_value_breaking_change

register_required_flag_breaking_change('vm create', arg='foo')
register_default_value_breaking_change('vm create', 'foo', 'Default', 'NewDefault')

az vm create --help
image

az vm create --name qinkai-vm-test --resource-group qinkai-test-non-existed --image Canonical:UbuntuServer:18.04-LTS:latest --security-type Standard --foo a
image

from azure.cli.core.breaking_change import register_argument_deprecate, register_default_value_breaking_change

register_argument_deprecate('vm create', 'foo')
register_default_value_breaking_change('vm create', '--foo', 'Default', 'NewDefault')

az vm create --help
image

Announce Custom Breaking Change

# src/azure-cli/azure/cli/command_modules/vm/_breaking_change.py
from azure.cli.core.breaking_change import register_conditional_breaking_change, AzCLIOtherChange

register_conditional_breaking_change('SpecialBreakingChangeA', AzCLIOtherChange('vm create', 'This is special Breaking Change Warning A. This breaking change is happend in "vm create" command.'))
register_conditional_breaking_change('SpecialBreakingChangeB', AzCLIOtherChange('vm', 'This is special Breaking Change Warning B. This breaking change is happend in "vm" command group.'))
# src/azure-cli/azure/cli/command_modules/vm/custom.py
def create_vm(cmd, vm_name, **):
    from azure.cli.core.breaking_change import print_conditional_breaking_change
    if some_condition:
        print_conditional_breaking_change(cmd.cli_ctx, 'SpecialBreakingChangeA', logger)
        print_conditional_breaking_change(cmd.cli_ctx, 'SpecialBreakingChangeB', logger)

az vm create --name qinkai-vm-test --resource-group qinkai-test-non-existed --image Canonical:UbuntuServer:18.04-LTS:latest --security-type Standard
image

Testing Guide

History Notes

[Component Name 1] BREAKING CHANGE: az command a: Make some customer-facing breaking change
[Component Name 2] az command b: Add some customer-facing feature


This checklist is used to make sure that common guidelines for a pull request are followed.

Copy link

azure-client-tools-bot-prd bot commented Apr 25, 2024

️✔️AzureCLI-FullTest
️✔️acr
️✔️2020-09-01-hybrid
️✔️3.11
️✔️3.12
️✔️3.9
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️acs
️✔️2020-09-01-hybrid
️✔️3.11
️✔️3.12
️✔️3.9
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️advisor
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️ams
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️apim
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️appconfig
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️appservice
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️aro
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️backup
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️batch
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️batchai
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️billing
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️botservice
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️cdn
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️cloud
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️cognitiveservices
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️compute_recommender
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️config
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️configure
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️consumption
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️container
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️containerapp
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️core
️✔️2018-03-01-hybrid
️✔️3.11
️✔️3.12
️✔️3.9
️✔️2019-03-01-hybrid
️✔️3.11
️✔️3.12
️✔️3.9
️✔️2020-09-01-hybrid
️✔️3.11
️✔️3.12
️✔️3.9
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️cosmosdb
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️databoxedge
️✔️2019-03-01-hybrid
️✔️3.11
️✔️3.12
️✔️3.9
️✔️2020-09-01-hybrid
️✔️3.11
️✔️3.12
️✔️3.9
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️dla
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️dls
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️dms
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️eventgrid
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️eventhubs
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️feedback
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️find
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️hdinsight
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️identity
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️iot
️✔️2019-03-01-hybrid
️✔️3.11
️✔️3.12
️✔️3.9
️✔️2020-09-01-hybrid
️✔️3.11
️✔️3.12
️✔️3.9
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️keyvault
️✔️2018-03-01-hybrid
️✔️3.11
️✔️3.12
️✔️3.9
️✔️2020-09-01-hybrid
️✔️3.11
️✔️3.12
️✔️3.9
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️kusto
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️lab
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️managedservices
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️maps
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️marketplaceordering
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️monitor
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️mysql
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️netappfiles
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️network
️✔️2018-03-01-hybrid
️✔️3.11
️✔️3.12
️✔️3.9
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️policyinsights
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️privatedns
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️profile
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️rdbms
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️redis
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️relay
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️resource
️✔️2018-03-01-hybrid
️✔️3.11
️✔️3.12
️✔️3.9
️✔️2019-03-01-hybrid
️✔️3.11
️✔️3.12
️✔️3.9
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️role
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️search
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️security
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️servicebus
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️serviceconnector
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️servicefabric
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️signalr
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️sql
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️sqlvm
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️storage
️✔️2018-03-01-hybrid
️✔️3.11
️✔️3.12
️✔️3.9
️✔️2019-03-01-hybrid
️✔️3.11
️✔️3.12
️✔️3.9
️✔️2020-09-01-hybrid
️✔️3.11
️✔️3.12
️✔️3.9
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️synapse
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️telemetry
️✔️2018-03-01-hybrid
️✔️3.11
️✔️3.12
️✔️3.9
️✔️2019-03-01-hybrid
️✔️3.11
️✔️3.12
️✔️3.9
️✔️2020-09-01-hybrid
️✔️3.11
️✔️3.12
️✔️3.9
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️util
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9
️✔️vm
️✔️2018-03-01-hybrid
️✔️3.11
️✔️3.12
️✔️3.9
️✔️2019-03-01-hybrid
️✔️3.11
️✔️3.12
️✔️3.9
️✔️2020-09-01-hybrid
️✔️3.11
️✔️3.12
️✔️3.9
️✔️latest
️✔️3.11
️✔️3.12
️✔️3.9

Copy link

azure-client-tools-bot-prd bot commented Apr 25, 2024

️✔️AzureCLI-BreakingChangeTest
️✔️Non Breaking Changes

@yonzhan
Copy link
Collaborator

yonzhan commented Apr 25, 2024

breaking change pre-announce

Comment on lines 47 to 59
def _next_breaking_change_version():
global __bc_version
if __bc_version:
return __bc_version
cur_version = packaging.version.parse(__version__)
next_bc_version = packaging.version.parse(NEXT_BREAKING_CHANGE_RELEASE)
if cur_version >= next_bc_version:
fetched_bc_version = _next_breaking_change_version_from_milestone(cur_version)
if fetched_bc_version:
__bc_version = fetched_bc_version
return fetched_bc_version
__bc_version = NEXT_BREAKING_CHANGE_RELEASE
return NEXT_BREAKING_CHANGE_RELEASE
Copy link
Contributor

Choose a reason for hiding this comment

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

When we release a CLI version with NEXT_BREAKING_CHANGE_RELEASE forget to change, when the cli users will see a different version every half year. My recommendation is that change the NEXT_BREAKING_CHANGE_RELEASE version number in the CLI release pipeline. Every time we bump up the cli version, the pipeline will check and change the NEXT_BREAKING_CHANGE_RELEASE version.

Copy link
Member Author

Choose a reason for hiding this comment

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

I agree with that. If we could update the NEXT_BREAKING_CHANGE_RELEASE after breaking change release in pipeline, we don't need a fallback logic to get the version number.

Comment on lines 31 to 51
### Pre-announce Breaking Changes

All breaking changes **must** be pre-announced several sprints ahead Release. There are two approaches to inform both interactive users and automatic users about the breaking changes.

1. (**Mandatory**) Breaking Changes must be pre-announced through Warning Log while executing.
2. (*Automatic*) Breaking Changes would be collected automatically and listed in [Upcoming Breaking Change](https://learn.microsoft.com/en-us/cli/azure/upcoming-breaking-changes).

## Workflow

### Overview

* CLI Owned Module
* Service Team should create an Issue that requests CLI Team to create the pre-announcement several sprints ahead Breaking Change Window. The CLI team will look at the issue and evaluate if it will be accepted in the next breaking change release.
* Please ensure sufficient time for CLI Team to finish the pre-announcement.
* The pre-announcement should be released ahead of Breaking Change Window.
* Service Owned Module
* Service Team should create a Pull Request that create the pre-announcement several sprints ahead Breaking Change Window.
* The pre-announcement should be released ahead of Breaking Change Window.
* After releasing the pre-announcement, a pipeline would be triggered, and the Upcoming Breaking Change Documentation would be updated.
* At the start of Breaking Change window, emails would be sent to notify Service Teams to adopt Breaking Changes.
* Breaking Changes should be adopted within Breaking Change Window.
Copy link
Contributor

Choose a reason for hiding this comment

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

Regarding the pre-announce breaking change process part, I personally suggest that PM @dcaro and @Jacekey23 can also help review it when they have time after the PR is ready

### Overview

* CLI Owned Module
* Service Team should create an Issue that requests CLI Team to create the pre-announcement several sprints ahead Breaking Change Window. The CLI team will look at the issue and evaluate if it will be accepted in the next breaking change release.
Copy link
Contributor

@zhoxing-ms zhoxing-ms Apr 28, 2024

Choose a reason for hiding this comment

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

Perhaps we can consider asking service team to add the tag of breaking-change request to this type of issue, which can make it easier for us to pay attention to these important issues in the vast number of issues, it also facilitates us to conduct statistics and analysis through tag filtering in the future

Copy link
Contributor

Choose a reason for hiding this comment

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

create an Issue

Additionally, it is recommended to provide a link of the corresponding feature request template here

Copy link
Member Author

Choose a reason for hiding this comment

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

Perhaps we can consider asking service team to add the tag of breaking-change request to this type of issue

In the current Implementing Breaking Changes Doc, the created issue should be attached with Breaking Change label. I think we could follow that design.

Copy link
Contributor

Choose a reason for hiding this comment

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

like the tag of breaking-change, it's worth having it and align with services to start using.

Copy link
Member Author

Choose a reason for hiding this comment

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

Add a sentence

The issue should include the label Breaking Change.


* CLI Owned Module
* Service Team should create an Issue that requests CLI Team to create the pre-announcement several sprints ahead Breaking Change Window. The CLI team will look at the issue and evaluate if it will be accepted in the next breaking change release.
* Please ensure sufficient time for CLI Team to finish the pre-announcement.
Copy link
Contributor

Choose a reason for hiding this comment

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

sufficient time

It would be better if more specific time suggestions could be provided

Copy link
Contributor

Choose a reason for hiding this comment

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

maybe vote for sufficient time here?

4-week
6-week
10-week

Copy link
Member Author

@ReaNAiveD ReaNAiveD Apr 29, 2024

Choose a reason for hiding this comment

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

We can handle the pre-announce request in the same manner as other feature requests with a specific target date. For Breaking Change Pre-announce requests, the target date will be the release before the Breaking Change release.

@ReaNAiveD ReaNAiveD requested a review from Jacekey23 April 28, 2024 06:40

### Breaking Change Window

The breaking change window *allows* for service command breaking changes. When a Pull Request is merged during this sprint, it will be included in the next Breaking Change Release.
Copy link
Contributor

Choose a reason for hiding this comment

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

would be "this sprint" refer to any sprint that comes right before Build/Ignite? It's nice if be clear about it.

Copy link
Member Author

Choose a reason for hiding this comment

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

Changed the sentence to

The breaking change window is a designated sprint that permits the merging of service command breaking changes. Any Pull Request merged during this sprint will be included in the subsequent Breaking Change Release.


The timing of the breaking change window in Azure CLI aligns with [Microsoft Build](https://build.microsoft.com/) and [Microsoft Ignite](https://ignite.microsoft.com/). You could find the next Breaking Change Release plan in our [milestones](https://github.com/Azure/azure-cli/milestones).

> If you would like to release ad-hoc breaking changes, reach out to the CLI team to provide an explanation for the necessity of these changes. The exceptions can be provide in the following cases:
Copy link
Contributor

Choose a reason for hiding this comment

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

my 2 cents here:
I personally like to rephrase this part and tie with why/what we build breaking change window, mentioned in the top.
Making the request easy will likely get us difficult to hold the door.

It's highlighted that we usually do not allow breaking changes check-ins within non-breaking-change window, based on what we stated above for consistency and stable tooling experience.
something unexpected can happen. We understand and would like to help out. There would be high-graded justifications required to provide the info Azure CLI can access.
p.s.
Noting that providing the required info for assessment does not mean it will be assured to be greenlighted for breaking changes. Team will still make the decision based on the overall impact.

Copy link
Member Author

Choose a reason for hiding this comment

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

I agree with that. I have replaced the parts about the ad-hoc introduction of breaking changes. Kindly review the modified content and provide your feedback.

### Overview

* CLI Owned Module
* Service Team should create an Issue that requests CLI Team to create the pre-announcement several sprints ahead Breaking Change Window. The CLI team will look at the issue and evaluate if it will be accepted in the next breaking change release.
Copy link
Contributor

Choose a reason for hiding this comment

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

like the tag of breaking-change, it's worth having it and align with services to start using.


* CLI Owned Module
* Service Team should create an Issue that requests CLI Team to create the pre-announcement several sprints ahead Breaking Change Window. The CLI team will look at the issue and evaluate if it will be accepted in the next breaking change release.
* Please ensure sufficient time for CLI Team to finish the pre-announcement.
Copy link
Contributor

Choose a reason for hiding this comment

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

maybe vote for sufficient time here?

4-week
6-week
10-week

@ReaNAiveD
Copy link
Member Author

/azp run

Copy link

Azure Pipelines successfully started running 3 pipeline(s).

@ReaNAiveD ReaNAiveD marked this pull request as ready for review May 6, 2024 06:58
@ReaNAiveD
Copy link
Member Author

Please add tests

Hi @kairu-ms , Unit tests added in src/azure-cli-core/azure/cli/core/tests/test_breaking_change.py.

zhoxing-ms
zhoxing-ms previously approved these changes Aug 9, 2024
@Jacekey23
Copy link
Contributor

image

minor: "implictly deprecated as a descendance because".....

@ReaNAiveD
Copy link
Member Author

/azp run

Copy link

Azure Pipelines successfully started running 3 pipeline(s).

kairu-ms
kairu-ms previously approved these changes Aug 15, 2024
@ReaNAiveD ReaNAiveD merged commit 5519d42 into Azure:dev Aug 21, 2024
65 checks passed

```python
# src/azure-cli/azure/cli/command_modules/vm/custom.py
from azure.cli.core.breaking_change import register_conditional_breaking_change, AzCLIOtherChange
Copy link
Member

Choose a reason for hiding this comment

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

AzCLIOtherChange is imported but unused.

**Note:** We strongly recommend using this method to display breaking change warnings under specific conditions instead of using `logger.warning` directly. This approach enables centralized documentation of breaking changes and assists in automating customer notifications.

```python
# src/azure-cli/azure/cli/command_modules/vm/custom.py
Copy link
Member

Choose a reason for hiding this comment

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

Should this file be _breaking_change.py? custom.py won't be loaded when loading the command module.

Copy link
Member Author

Choose a reason for hiding this comment

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

Fix conditional breaking change regarding issues in another PR #31060


# src/azure-cli/azure/cli/command_modules/vm/custom.py
def create_vm(cmd, vm_name, **):
from azure.cli.core.breaking_change import print_conditional_breaking_change
Copy link
Member

Choose a reason for hiding this comment

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

We usually use 4 spaces for indentation.


# src/azure-cli/azure/cli/command_modules/vm/custom.py
def create_vm(cmd, vm_name, **):
from azure.cli.core.breaking_change import print_conditional_breaking_change
Copy link
Member

Choose a reason for hiding this comment

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

This import statement should be inside if some_condition.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Auto-Assign Auto assign by bot Core CLI core infrastructure
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants