Use nextVersionDate as end date when searching github issues

Issues closed after the release date should be ignored.
This commit is contained in:
Iain Buclaw 2025-03-06 00:30:05 +01:00 committed by GitHub
parent 7b48e78165
commit aa730b89ff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -827,8 +827,10 @@ Please supply a bugzilla version
Nullable!(DateTime) firstDate = getFirstDateTime(revRange);
enforce(!firstDate.isNull(), "Couldn't find a date from the revRange");
githubChanges = getGithubIssuesRest(firstDate.get(), cast(DateTime)currDate
, githubToken);
Nullable!(DateTime) endDate = getEndDateTime(nextVersionDate);
enforce(!endDate.isNull(), "Couldn't parse the next version date string");
githubChanges = getGithubIssuesRest(firstDate.get(), endDate.get(), githubToken);
}
// Accumulate contributors from the git log