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.
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.