Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create version-specific helper for poison pills #101767

Merged
merged 12 commits into from
Nov 15, 2023
Prev Previous commit
Next Next commit
Javadoc
  • Loading branch information
ldematte committed Nov 3, 2023
commit dc29115690d8c36894be43c756d9255816b935b9
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ private Assertions() {}
/**
* A "poison-pill" assertion to use in code we want to review (cleanup, remove or change) before releasing 9.0
* Before starting the 9.0 release process a feature branch will be created, in which this assertion will be changed to cause failures
* which must addressed before to main.
* Each poison pill has to be addressed before we can merge to main, branch the next version and bump the current version.
* which must addressed before proceeding.
* Each poison pill has to be addressed before we merge the feature branch to main. Only then we can proceed to branch the next version
* and bump the current version.
* @param reason a string that will be part of the assertion message, with details on how to fix the issue.
*/
public static void assertRemoveBeforeV9(String reason) {
Expand Down