Ok, I did not announce it starting, but Jackson 2.14.0-rc2 was just released.
So far I don't think we have received many bug reports for rc1, but
did get at least one positive confirmation from ElasticSearch folks.
It would be good to get some more feedback regarding compatibility, or
lack thereof.
As to changes between RC1 and RC2: I should have kept a log but I
didn't. One notable area of changes, for what it is worth,
is that of `JsonPointer`: I rewrote internals (it's not a big class
but still) to:
1. Avoid StackOverflowError when compiling super deep (10k or above)
pointer expressions (see [core#818])
2. Use significantly less memory for deep expressions (create
representation used with `JsonPointer.toString()` lazily)
and although all the existing tests pass (plus I added slightly more)
I would not be entirely surprised if there were edge cases
causing issues -- I almost missed needed changes to
`JsonPointer.equals(...)` and `JsonPointer.hashCode()`.
Anyway, any and all testing at this point would be very helpful. My
current thinking on releasing 2.14.0 final is that it could be done
by the end of October, that is, in 2 or 3 weeks. This would be good to
help with recent CVEs, for which fix is in 2.14.
-+ Tatu +-