Sync BUIE changelog entries to box-mintlify#744
Open
wsocha wants to merge 1 commit into
Open
Conversation
matt-jb
requested changes
Jul 2, 2026
matt-jb
left a comment
Collaborator
There was a problem hiding this comment.
Great work, minor findings in comments!
| ...entry, | ||
| isSdkRelease: isSdkReleaseEntry(entry) | ||
| isMintlifySyncEligible, | ||
| isSdkRelease |
Collaborator
There was a problem hiding this comment.
This is now dead code. No production path reads it anymore - just tests.
| const prTitle = normalizedEntries.length === 1 | ||
| ? `Add changelog: ${normalizedEntries[0].repoDisplayName} ${normalizedEntries[0].version}` | ||
| : `Add changelog entries: ${normalizedEntries.length} SDK releases` | ||
| : `Add changelog entries: ${normalizedEntries.length} release entries` |
Collaborator
There was a problem hiding this comment.
Might want to re-word that:
Suggested change
| : `Add changelog entries: ${normalizedEntries.length} release entries` | |
| : `Add changelog: ${normalizedEntries.length} releases` |
Otherwise the wording is awkward.
But the test assertion needs updating as well with this one.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Updates the Mintlify changelog sync to include Box UI Elements release entries in addition to SDK releases. Box UI Elements releases are already imported into
box-developer-changelogwith theui-elementslabel, but the Mintlify sync previously filtered them out because it only accepted entries labeledsdks.This change also maps
ui-elementsto the properUI ElementsMintlify tag, updates SDK-specific workflow/log copy to refer to release changelog entries, and adds parser, converter, and sync test coverage for Box UI Elements releases.Checklist
yarn testandyarn lintto make sure my changes pass alllinters and tests