You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The breaking changes tool also supports reporting general changes between library versions. The changes will be reported in changelog format and will be reported as `### Breaking Changes` or `### Features Added`.
95
+
96
+
To get changelog output use the `--changelog` flag:
97
+
98
+
```
99
+
C:\azure-sdk-for-python\sdk\storage\azure-storage-blob>tox run -c ../../../eng/tox/tox.ini --root . -e breaking -- --changelog
100
+
```
101
+
102
+
Example output:
103
+
104
+
```
105
+
### Breaking Changes
106
+
107
+
The model or publicly exposed class 'azure.contoso.widgetmanager.models.Widget' had its instance variable 'bar' deleted or renamed in the current version
108
+
109
+
### Features Added
110
+
111
+
The model or publicly exposed class 'azure.contoso.widgetmanager.models.Widget' had property 'foo' added in the current version
112
+
```
113
+
92
114
### Generating code reports
93
115
94
116
The breaking changes tools also supports generating a code report for a given library which can later be used as an input for breaking changes comparison.
0 commit comments