Antalya 25.8: Bump to 25.8.23 #1755
Check failed
There are 19 commits incorrectly signed off, the check did not pass.
Summary
| Sha | Message | Pass or fail reason | |
|---|---|---|---|
| 🔴 | 6f9244b | Backport ClickHouse#101936 to 25.8: Fix SIGSEGV in MergeTree... | Sign-off not found |
| 🔴 | fb6469f | Backport ClickHouse#102606 to 25.8: Use openssl 3.5.6 |
Sign-off not found |
| 🔴 | 879c46a | Pick changes from bump-openssl-3.5.6 |
Sign-off not found |
| 🔴 | 88b09dd | Fix build | Sign-off not found |
| 🔴 | 3f492ad | Fix build | Sign-off not found |
| 🔴 | 9a12454 | Fix build | Sign-off not found |
| 🟢 | 360cc02 | Merge pull request ClickHouse#102819 from ClickHouse/backpor... | Skipped: sign-off not required in merge commit |
| 🔴 | e83a9e5 | Backport ClickHouse#102674 to 25.8: Fix wrong date data type... | Sign-off not found |
| 🔴 | 659b38c | Backport ClickHouse#102915 to 25.8: Optimize row policy OR-c... | Sign-off not found |
| 🔴 | 3f6c029 | Update autogenerated version to 25.8.22.28 and con... | Sign-off not found |
| 🔴 | 9201c77 | Upgrade distroless base image from cc-debian12 to ... | Sign-off not found |
| 🟢 | 15e6e32 | Merge pull request ClickHouse#103154 from ClickHouse/backpor... | Skipped: sign-off not required in merge commit |
| 🔴 | 42b3a5f | Backport ClickHouse#103160 to 25.8: CI: disable automerge fo... | Sign-off not found |
| 🟢 | e01d4a3 | Merge pull request ClickHouse#102968 from ClickHouse/backpor... | Skipped: sign-off not required in merge commit |
| 🔴 | bb6aa71 | Backport ClickHouse#101918 to 25.8: Fix using wrong extreams... | Sign-off not found |
| 🟢 | 9bb23d7 | Merge pull request ClickHouse#103175 from ClickHouse/backpor... | Skipped: sign-off not required in merge commit |
| 🔴 | ac8c55c | Update 04098_row_policy_disjunction_optimization | Sign-off not found |
| 🟢 | 44d8b06 | Merge pull request ClickHouse#103018 from ClickHouse/backpor... | Skipped: sign-off not required in merge commit |
| 🔴 | e854a5f | Backport ClickHouse#102692 to 25.8: Fix flattened Dynamic ty... | Sign-off not found |
| 🟢 | 5005b3c | Merge pull request ClickHouse#103300 from ClickHouse/backpor... | Skipped: sign-off not required in merge commit |
| 🔴 | 4cce3bd | Update test reference | Sign-off not found |
| 🔴 | 457bc28 | Backport ClickHouse#103392 to 25.8: Check for malformed flat... | Sign-off not found |
| 🟢 | a7ab2db | Merge pull request ClickHouse#103408 from ClickHouse/backpor... | Skipped: sign-off not required in merge commit |
| 🟢 | d4be641 | Merge pull request ClickHouse#103184 from ClickHouse/backpor... | Skipped: sign-off not required in merge commit |
| 🔴 | 5f8b23c | Refresh distroless base image digests to pick up l... | Sign-off not found |
| 🟢 | ce36607 | Merge pull request ClickHouse#103582 from ClickHouse/backpor... | Skipped: sign-off not required in merge commit |
| 🔴 | ebe77ef | Backport ClickHouse#103334 to 25.8: Fix Parquet ColumnIndex ... | Sign-off not found |
| 🔴 | e69ef71 | Backport ClickHouse#103834 to 25.8: Reliable key receiving f... | Sign-off not found |
| 🟢 | df70b65 | Merge pull request ClickHouse#103868 from ClickHouse/backpor... | Skipped: sign-off not required in merge commit |
| 🟢 | 443620d | Merge pull request ClickHouse#102352 from ClickHouse/backpor... | Skipped: sign-off not required in merge commit |
| 🟢 | ed89292 | Merge tag 'v25.8.23.13-lts' into bump/antalya-25.8... | Skipped: sign-off not required in merge commit |
Errors details
Sign-off not found
No sign-off was found in the commit message. This usually means that the author or committer of this commit failed to include a Signed-off-by line in the commit message. In some cases, this error can also be raised if the sign-off is not in the correct format.
To avoid having pull requests blocked in the future, always include a Signed-off-by: User1 <user1@email.test> line in every commit message. You can also do this automatically by using the -s flag (i.e., git commit -s).
How to fix missing or invalid sign-offs
Option 1: add remediation commit
Option 2: fix commits without sign-off
Rebase the branch
If you have a local git environment and meet the criteria below, one option is to rebase the branch and add your Signed-off-by lines in the new commits. Please note that if others have already begun work based upon the commits in this branch, this solution will rewrite history and may cause serious issues for collaborators (described in the git documentation under "The Perils of Rebasing").
Warning
You should only do this if:
- You are the only author of the commits in this branch
- You are absolutely certain nobody else is doing any work based upon this branch
- There are no empty commits in the branch
To add your Signed-off-by line to every commit in this branch:
- Ensure you have a local copy of your branch by checking out the pull request locally via command line.
- In your local branch, run:
git rebase HEAD~31 --signoff - Force push your changes to overwrite the branch:
git push --force-with-lease origin bump/antalya-25.8/25.8.23