Files
sencho/release-please-config.json
SaelixCode ad4a8b2600 chore(release): keep feat commits on the patch train pre-1.0
Adds bump-patch-for-minor-pre-major so feat commits bump the patch
version instead of the minor version while the project is pre-1.0.
Breaking changes still bump minor via the existing
bump-minor-pre-major setting.

Do not merge until the open 0.98.0 release PR has shipped: this
config is read fresh on every release-please run, so landing it on
main first would cause that PR to recompute down to a patch bump.
2026-08-29 04:18:57 +00:00

25 lines
1015 B
JSON

{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"include-component-in-tag": false,
"packages": {
".": {
"release-type": "node",
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true,
"changelog-path": "CHANGELOG.md",
"changelog-sections": [
{ "type": "feat", "section": "Added" },
{ "type": "fix", "section": "Fixed" },
{ "type": "perf", "section": "Fixed" },
{ "type": "revert", "section": "Fixed" },
{ "type": "security", "section": "Security" },
{ "type": "docs", "section": "Documentation", "hidden": true },
{ "type": "chore", "section": "Miscellaneous", "hidden": true },
{ "type": "ci", "section": "CI/CD", "hidden": true },
{ "type": "refactor", "section": "Changed", "hidden": true },
{ "type": "test", "section": "Tests", "hidden": true }
]
}
}
}