Bug 381851 - Possible incorrect FIXED-IN assignments for 4.8.1 release
Summary: Possible incorrect FIXED-IN assignments for 4.8.1 release
Status: RESOLVED FIXED
Alias: None
Product: kmymoney
Classification: Applications
Component: general (show other bugs)
Version: unspecified
Platform: Other All
: NOR task
Target Milestone: ---
Assignee: KMyMoney Devel Mailing List
URL:
Keywords:
Depends on:
Blocks: 381813
  Show dependency treegraph
 
Reported: 2017-07-01 08:54 UTC by Ralf Habacker
Modified: 2017-07-06 09:00 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Ralf Habacker 2017-07-01 08:54:54 UTC
KMymoney 4.8 branch contains several fixes backported from master for which the related bug ticket may be still tagged as "fixed-in-5.0".
The related bug tickets need to be checked and updated to reflect the reality.
Comment 1 Ralf Habacker 2017-07-01 09:07:11 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.
Comment 2 Ralf Habacker 2017-07-06 09:00:39 UTC
(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.