This wasn't even really a new bug – this was always broken:
You may be right <!-- http://xkcd.com/386 --> about this.
turned into
You may be right http://xkcd.com/386 --> about this.
because the auto-linker did this:
You may be right <!-- <a href="http://xkcd.com/386">http://xkcd.com/386</a> --> about this.
and the tag sanitizer eats anything starting with a < until the next > (or end of text) that is not whitelisted – and the "tag"
<!-- <a href="http://xkcd.com/386">
certainly isn't.
This just didn't come up before, because until the recent change to HTML comments, the StackApps triad (where you noticed this) was incorrectly considered to be a block-level comment.
Yeah, you heard that right. Markdown distinguishes between block-level HTML comments and inline HTML comments :\
And since block-level elements do not get any treatment per the Markdown "spec" (which, by the way, doesn't mention HTML comments at all; I'm just deducing this from the actual code, which does handle them), the auto-linker just wasn't run over these comments previously.
Putting blank lines between the comments turns them into block-level, hence the workaround from my comment on your question.
It's fixed now, so after the next build, this will work either way (by not running the auto-linker within comments).
The inconsistency between the preview and final not yet fixed, but it is very minor and should not be a real-world problem (the only difference being the insertion of an empty <p></p>).