managen: ignore version mentions < 7.66.0

Only mention version specific details for versions from within the last
six years.

Closes #18583
This commit is contained in:
Daniel Stenberg 2025-09-17 13:02:01 +02:00
parent 04e08664a8
commit 0a27a506b1
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2

View file

@ -265,8 +265,8 @@ sub too_old {
elsif($version =~ /^(\d+)\.(\d+)/) {
$a = $1 * 1000 + $2 * 10;
}
if($a < 7600) {
# we consider everything before 7.60.0 to be too old to mention
if($a < 7660) {
# we consider everything before 7.66.0 to be too old to mention
# specific changes for
return 1;
}