chore(main): release 1.0.0 - #30
Draft
github-actions[bot] wants to merge 1 commit into
Draft
Conversation
lens0021
marked this pull request as draft
June 13, 2026 12:36
github-actions
Bot
force-pushed
the
release-please--branches--main
branch
28 times, most recently
from
June 20, 2026 09:01
1a07774 to
f96da8b
Compare
github-actions
Bot
force-pushed
the
release-please--branches--main
branch
11 times, most recently
from
June 22, 2026 11:47
1fb6cfb to
27d2020
Compare
lens0021
added a commit
that referenced
this pull request
Jun 27, 2026
) ## Problem The release PR (#30) lists most features **twice** in the changelog, e.g.: ``` * add a "View source" tab ... ([0178405]) * add a "View source" tab ... ([#119]) ([24e4d16]) ``` ### Root cause `.tf/repository.tf` allows **merge-commit merging only** and sets `merge_commit_title = "PR_TITLE"`. So merging PR #119 leaves two conventional commits on `main`: | commit | parents | subject | |---|---|---| | `0178405` (branch) | 1 | `feat: add a "View source" tab` | | `24e4d16` (merge) | 2 | `feat: add a "View source" tab (#119)` | Because it is a merge (not a squash), the branch commit survives, and the merge commit's title is itself a conventional commit. release-please counts both → duplicate entries. Commits that landed without a merge commit (single parent) appear once, which is why only some entries are doubled. ## Fix Switch the repo to **squash-only** merging: ```hcl allow_merge_commit = false allow_squash_merge = true squash_merge_commit_title = "PR_TITLE" squash_merge_commit_message = "PR_BODY" ``` One commit per PR (`feat: x (#NN)`), no leftover branch commit, so each feature is counted once and keeps its `(#NN)` PR link. This is release-please's intended workflow. `merge_commit_*` lines are kept (GitHub retains them even while merge commits are disabled) to avoid plan drift. ## Note on the existing #30 This stops *future* duplicates. The 1.0.0 changelog already has the doubled history baked in; that PR is cleaned up separately. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
github-actions
Bot
force-pushed
the
release-please--branches--main
branch
5 times, most recently
from
June 27, 2026 10:21
20fb301 to
25780bd
Compare
github-actions
Bot
force-pushed
the
release-please--branches--main
branch
9 times, most recently
from
June 28, 2026 01:49
2362b38 to
4bf96e4
Compare
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.
🤖 I have created a release beep boop
1.0.0 (2026-08-18)
⚠ BREAKING CHANGES
refactor
Features
wikven buildcommand to the binary (9ed60b7)Bugfixes
Performance
This PR was generated with Release Please. See documentation.