Summary: | Possible incorrect FIXED-IN assignments for 4.8.1 release | ||
---|---|---|---|
Product: | [Applications] kmymoney | Reporter: | Ralf Habacker <ralf.habacker> |
Component: | general | Assignee: | KMyMoney Devel Mailing List <kmymoney-devel> |
Status: | RESOLVED FIXED | ||
Severity: | task | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Other | ||
OS: | All | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: | |||
Bug Depends on: | |||
Bug Blocks: | 381813 |
Description
Ralf Habacker
2017-07-01 08:54:54 UTC
I used for i in $(git log | grep "cherry picked" | sed 's,^.*commit ,,g;s,),,g'); do git log -n 1 $i; done > out.log and cat out.log | gawk '$1 == "commit" { c=$2 } $1 ~ /BUG:[^$]/ { gsub(/BUG:/,"",$1); b=$1; } $1 == "BUG:" { b=$2; } $1 == "FIXED-IN:5.0" { f="5.0" ; print c " " b " " f } $1 == "FIXED-IN:" { f=$2 ; print c " " b " " f }' and got 398304bcf331a322a0fe7e475775aea887c4b565 249844 5.0 30564ba57d2614f1410b87e1d4edd81e8fc35fc3 378379 5.0 64d8749496a04c3be88300f040ae1c1e14af8103 372435 5.0 Checking the bug tracker shows that the first both tickets have a "version fixed in" to 4.8.1. The third commit uses a wrong bug id. (In reply to Ralf Habacker from comment #1) > 64d8749496a04c3be88300f040ae1c1e14af8103 372435 5.0 Did not found the correct bug number. I think we can ignore this. |