[DEVPLAT-6523] feat: trigger release for dependency bumps#165
Merged
Conversation
…ch upgrades) The dependency upgrades in #164 were merged as chore: commits, which under the angular preset do not trigger semantic-release. This empty feat commit provides a release-triggering message so a new minor release (v1.49.0) is cut.
AndrewHart102
approved these changes
Jun 4, 2026
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
The dependency upgrades from DEVPLAT-6523 were merged in #164 as
chore:commits. Under ourangularsemantic-release preset (.releaserc.yml),chore:commits do not trigger a release, so no new version was cut after the merge.mainis protected, so the existing commit history can't be rewritten. This PR instead adds a single emptyfeat:commit, which provides a release-triggering message. Once merged, running theReleaseworkflow will cut v1.49.0 (minor bump), regenerate the changelog, and bump the version files.No code changes — the commit is intentionally empty.
Testing considerations
Releaseworkflow (workflow_dispatch) and verifycommit-analyzerresolves a minor release andv1.49.0is tagged/published.Checklist
developmentand/orstagingREADME.mdas necessaryRelated links
Note
Low Risk
No runtime or source changes; only release metadata and versioning are affected when the Release workflow runs.
Overview
Adds an empty commit whose message is
feat:so semantic-release (angular preset in.releaserc.yml) will treatmainas releasable after dependency bumps landed only aschore:commits in #164.There is no application or library code change in the diff. The intended follow-up is running the Release workflow to publish v1.49.0 (minor), refresh CHANGELOG.md, and update
pkg/version(currently 1.48.0).Reviewed by Cursor Bugbot for commit c5c86df. Bugbot is set up for automated code reviews on this repo. Configure here.