Github user svenmeier commented on the issue:
https://github.com/apache/wicket/pull/250
All test pass, there is a single change in FeedbackRenderTest only:
If IFeedbacks are *nested* (e.g. id1 -> id2 -> id3), *they* are prepared
for render top-down (i.e. id1 then id2 then id3). This matches they way other
components are rendered.
Previously the order was the other way around (i.e. id3 then id2 then id1),
which was wrong IMHO.---
