Skip to content

Commit 2b9a15c

Browse files
changelog from report comparison
1 parent e42e42c commit 2b9a15c

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

scripts/breaking_changes_checker/changelog_tracker.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,10 @@ def _build_md(content: list, title: str, buffer: list):
186186
for _, bc in enumerate(content):
187187
# Extract the message, skip the change type and the module name
188188
msg, _, _,*args = bc
189-
buffer.append(" - " + msg.format(*args))
189+
try:
190+
buffer.append(" - " + msg.format(*args))
191+
except (IndexError, KeyError):
192+
buffer.append(" - " + msg)
190193
buffer.append("")
191194
return buffer
192195

sdk/sql/azure-mgmt-sql/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
## 4.0.0b25 (2026-04-01)
44

5-
skip changelog generation
5+
### Other Changes
6+
7+
- Migrated from Swagger to TypeSpec
68

79
## 3.1.0 (2026-04-01)
810

0 commit comments

Comments
 (0)