build: downgrade maven-release-plugin to 2.5.3#936
Conversation
|
Warning Review limit reached
More reviews will be available in 54 minutes and 3 seconds. Learn how PR review limits work. Your organization has used up its prepaid credits, and credit purchases are no longer available. Enable the review add-on in the billing tab to keep reviews running — you're only billed for reviews past your plan's rate limits ($0.25/file). ⌛ How to resolve this issue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based credits. 🚦 How do rate limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please see our Fair Usage Limits Policy for further information. 📝 WalkthroughWalkthroughThe 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
maven-release-plugin 3.3.1 (released May 2026) breaks the GitHub release flow with "preparation step was stopped mid-way". The root cause is an SCM API incompatibility: the pom.xml pins maven-scm-provider-gitexe:1.9.5 (SCM 1.x), while plugin 3.x requires the SCM 2.x API internally. Reverting to 2.5.3 as a workaround — it pairs correctly with the pinned scm-provider-gitexe 1.9.5. See scylladb#935 for the proper upgrade path.
46b7f7d to
8cc74a7
Compare
Summary
maven-release-pluginfrom 3.3.1 → 2.5.3 as a short-term workaround to restore the broken release flow on Maven 3.9.16.Problem
After bumping to 3.3.1 (released end of May 2026),
release:performfails with:Root Cause
pom.xmlpinsmaven-scm-provider-gitexe:1.9.5, which implements the SCM 1.x API.maven-release-plugin3.x requires the SCM 2.x API internally. The mismatch causesrelease:prepareto abort mid-lifecycle, leaving the build in a state that blocksrelease:perform.Workaround
Revert to 2.5.3, which is compatible with
maven-scm-provider-gitexe:1.9.5(SCM 1.x). This is a temporary measure — see #935 for the proper 3.x upgrade path (requires upgrading both the plugin andmaven-scm-provider-gitexeto 2.x together).Test plan
release:prepare→release:performcompletes without error.