mercurial query to get the latest commits to add to the changelog doesn't work in certain situations (CW for now)
If you got on the CubicWeb repository for now and do:
hg up -r f9552ddb3720
hg log -r "last(ancestors(.) and tag())::." --style compact
You'll get this result:
Which lacks a lot of expected commits that are on default but aren't released yet.
Like of you look at the bottom of the screenshot there is all the CSRF related work that doesn't appear in the previous one.
This is very likely related to the retroactive merge of other branch in default.
The desired situation is:
hg export -r "last(ancestors(.) and tag())::." -T "{node}\n"
Should contains this commit f0007241c4773160b6c2b93a0b56a9617a74389c
Edited by Laurent Peuch