Skip to content

Commit e4e8351

Browse files
fix ignore in changelog reporting (#36992)
Co-authored-by: Catalina Peralta <[email protected]>
1 parent 99ac866 commit e4e8351

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

scripts/breaking_changes_checker/changelog_tracker.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
from typing import Any, Dict, List, Union
1010
import jsondiff
1111
from breaking_changes_tracker import BreakingChangesTracker
12+
from breaking_changes_allowlist import IGNORE_BREAKING_CHANGES
1213

1314
class ChangeType(str, Enum):
1415
ADDED_CLIENT = "AddedClient"
@@ -154,6 +155,9 @@ def check_non_positional_parameter_added(self, current_parameters_node: Dict) ->
154155
)
155156

156157
def report_changes(self) -> None:
158+
ignore_changes = self.ignore if self.ignore else IGNORE_BREAKING_CHANGES
159+
self.get_reportable_breaking_changes(ignore_changes)
160+
157161
# Code borrowed and modified from the previous change log tool
158162
def _build_md(content: list, title: str, buffer: list):
159163
buffer.append(title)

0 commit comments

Comments
 (0)