-
Notifications
You must be signed in to change notification settings - Fork 3
Jackson Work in Progress
Tatu Saloranta edited this page Nov 22, 2018
·
2080 revisions
This page is a "living document" of on-going work, mostly by @cowtowncoder (Tatu), although other committers are welcome to update it as well.
Contents are divided in 3 sections, of actionable (*) things:
- Urgent things -- security problems, correctness (corruption), reliability (threading/concurrency)
- Simple things -- low(er) hanging fruits that are likely easily fixable but also important (i.e. non-trivial)
- Important -- things that important strategically, or highly "voted", but that are more involved to fix/implement.
as well as one "Recently Completed" addendum.
(*) actionable meaning, in general, that progress is only/mostly limited by time available and not by inherent difficulty, or lack of design or ideas of how to tackle the need.
- 22-Nov-2018, tatu: Update completed entries, add new oens
- 29-Oct-2018, tatu: Create the initial version
-
https://github.com/FasterXML/jackson-core/issues/479: rewrite
BufferRecyclerfix
- https://github.com/FasterXML/jackson-databind/pull/2181: Don't re-use dynamic serializers for property-updating copy constructors
- Jackson 3.0
- Remove mutability of
JsonGenerator -
https://github.com/FasterXML/jackson-databind/issues/2176: add
JsonMapper.shared()(and ditto for other mappers) -
https://github.com/FasterXML/jackson-databind/issues/2187: Make
JsonNode.toString() work "as expected", remove code duplication, by using "shared"ObjectMapper` (see above)
- Remove mutability of
- Jackson 2.10
- Change
JsonGenerator.Feature.ESCAPE_NON_ASCIIto be based onJsonWriteFeature.ESCAPE_NON_ASCII -
https://github.com/FasterXML/jackson-core/issues/495: Add
StreamReadFeatureas alias for remaining non-deprecatedJsonParser.Features (for 3.0 forward compat) -
https://github.com/FasterXML/jackson-core/issues/496: Add
StreamWriteFeatureas alias for remaining non-deprecatedJsonGenerator.Features (for 3.0 forward compat) -
https://github.com/FasterXML/jackson-core/issues/464: Add "maximum unescaped char" limit option in
CharacterEscapes - https://github.com/FasterXML/jackson-databind/issues/2183: Base64 decoding, error messaging, default "no padding" encoding choice? (exception message maybe for 2.9?)
- Change
- Jackson 2.9
- https://github.com/FasterXML/jackson-databind/issues/2167: Large Dates are formatted/serialized incorrectly
- Jackson 3.0:
-
https://github.com/FasterXML/jackson-databind/issues/2177: Change parent type of
JsonProcessingExceptionto beRuntimeException - Finish partial rewrite of
JsonFormat.Shapehandling to support ALL changes (POJO to/from non-POJO), for types AND properties
-
https://github.com/FasterXML/jackson-databind/issues/2177: Change parent type of
- 3 New CVEs for Polymorphic Deserialization gadgets (22-Nov-2018)
Group of issues related to possible Denial-of-Service attacks, making use of surprisingly poor performance characteristics of coercing from BigInteger into long, and thereby also BigDecimal (as it is based on 2 BigIntegers). Mostly implemented by 29-Oct-2018, to be included in 2.9.8
-
https://github.com/FasterXML/jackson-core/issues/488 -- low-level early-fail on coercion of
BigIntegerintoint,long,float,double(29-Oct-2018) -
https://github.com/FasterXML/jackson-databind/issues/2157 -- tests for coercion of huge
BigDecimalintoEnum(basically verifying streaming API's early fail) (29-Oct-2018) -
https://github.com/FasterXML/jackson-modules-java8/issues/90 -- specific issue wrt
BigDecimal,Instantdeserializer (24-Oct-2018)
- Simple: https://github.com/FasterXML/jackson-core/issues/492 (backtick in error messages) (30-Oct-2018)