Skip to content

Commit 28159e0

Browse files
authored
add prop update warn list (#420)
1 parent f414c3f commit 28159e0

3 files changed

Lines changed: 6 additions & 1 deletion

File tree

azure-cli-diff-tool/HISTORY.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
33
Release History
44
===============
5+
0.0.4
6+
++++++
7+
* Add meta change parameter update warn list
8+
59
0.0.3
610
++++++
711
* Add prop value for parameter add/remove property

azure-cli-diff-tool/azure_cli_diff_tool/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
extract_module_name_from_meta_file, export_meta_changes_to_csv, export_meta_changes_to_json, \
1919
export_meta_changes_to_dict
2020

21-
__VERSION__ = '0.0.3'
21+
__VERSION__ = '0.0.4'
2222

2323
logger = logging.getLogger(__name__)
2424

azure-cli-diff-tool/azure_cli_diff_tool/_const.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
PARA_PROPERTY_REMOVE_BREAK_LIST = ["options", "id_part", "nargs"]
2626
PARA_PROPERTY_ADD_BREAK_LIST = ["required", "choices"]
2727
PARA_PROPERTY_UPDATE_BREAK_LIST = ["default", "aaz_default", "type", "aaz_type"]
28+
PARA_PROPERTY_UPDATE_WARN_LIST = ["type", "aaz_type"]
2829
PARA_NAME_IGNORED_LIST = ["force_string"]
2930
PARA_PROPERTY_IGNORED_LIST = []
3031
PARA_VALUE_IGNORED_LIST = ["generic_update_set", "generic_update_add", "generic_update_remove",

0 commit comments

Comments
 (0)