chore: trigger beta release for refactor changes (6.0.0-beta.3)#151
Merged
Palbahngmiyine merged 1 commit intosolapi:betafrom Apr 17, 2026
Merged
Conversation
Refactor commit 0042ae6 는 release-please 기본 설정상 user-facing commit(feat/fix/perf/deps)이 아니라 release PR 이 자동 생성되지 않았습니다. Effect ParseResult 포맷터 도입과 runSafeSync 내부 심볼 제거가 포함되어 있어 beta release 로 배포합니다. Release-As: 6.0.0-beta.3 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
|
Note Gemini is unable to generate a review for this pull request due to the file types involved not being currently supported. |
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.
Context
PR #150 (refactor) merge 직후의 Release Please job 로그:
release-please 는 기본적으로
feat/fix/perf/deps만 user-facing commit 으로 인식해 bump 을 trigger 합니다. merge 된 커밋이refactor하나뿐이라 "No user facing commits" 로 판단되어 release PR 이 생성되지 않았습니다. 현재release-please-config-beta.json에도refactor는hidden: true로 changelog 숨김 처리 상태입니다.Solution
이 PR 은
Release-As: 6.0.0-beta.3trailer 를 포함한 empty trigger commit 한 건을 추가합니다. merge 되면 release-please action 이 해당 trailer 를 읽고6.0.0-beta.3버전을 찍는 release PR 을 beta 에 생성합니다.Why trigger commit?
ParseResult.TreeFormatter/ArrayFormatter도입,runSafeSync내부 심볼 제거, path alias 정합화 등 실제 배포 가치가 있는 변경이지만 Conventional Commit 분류상refactor가 가장 정확.refactor를 user-facing 으로 승격하는 것은 과도한 변경(모든 refactor 가 bump trigger 가 됨). 이번 케이스에 한정된 trigger commit 이 안전.Test plan
release-please--branches--beta--components--solapiPR 을 새로 생성하는지 확인6.0.0-beta.3인지 확인🤖 Generated with Claude Code