-
Notifications
You must be signed in to change notification settings - Fork 3
Jackson Work in Progress
Tatu Saloranta edited this page Dec 29, 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 4 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.
- Big Ideas
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.
- 15-Dec-2018, tatu: With release
2.9.8, trim down "recently completed" - 29-Oct-2018, tatu: Create the initial version
-
https://github.com/FasterXML/jackson-core/issues/479: rewrite
BufferRecyclerfix -
https://github.com/FasterXML/jackson-core/issues/498: better Java 9+ module name support with
moditectMaven plug-in (https://github.com/moditect/moditect)
- Jackson 3.0
- Streaming
- Remove mutability of
JsonGenerator
- Remove mutability of
- Databind
- Streaming
- Jackson 2.10
- Streaming
- Change
JsonGenerator.Feature.ESCAPE_NON_ASCIIto be based onJsonWriteFeature.ESCAPE_NON_ASCII -
https://github.com/FasterXML/jackson-core/issues/464: Add "maximum unescaped char" limit option in
CharacterEscapes
- Change
- Databind
-
https://github.com/FasterXML/jackson-databind/pull/2196: Type safety wrt
TypeReference,ObjectMapper.readValue()
-
https://github.com/FasterXML/jackson-databind/pull/2196: Type safety wrt
- Dataformats
- https://github.com/FasterXML/jackson-dataformats-binary/issues/73: References to nested types
- Other
- (java 8 date/time) https://github.com/FasterXML/jackson-modules-java8/pull/92: (Java 8 date/time) format support for
Duration(maybe?) - https://github.com/FasterXML/jackson-dataformat-xml/issues/311: (XML) namespace binding issue
- https://github.com/FasterXML/jackson-dataformat-xml/issues/325: (XML) polymorphic ids
- (java 8 date/time) https://github.com/FasterXML/jackson-modules-java8/pull/92: (Java 8 date/time) format support for
- Streaming
- Jackson 2.9
- Other:
- Jackson 3.0:
-
https://github.com/FasterXML/jackson-databind/issues/2177: Change parent type of
JsonProcessingExceptionto beRuntimeException(maybeUncheckedIOException?) - 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
- Jackson 2.10:
-
https://github.com/FasterXML/jackson-databind/issues/2189: Bounds checks (
int,long) forTreeTraversingParser(and verifyTokenBuffer's too) - https://github.com/FasterXML/jackson-core/issues/500: allow "optional padding" for base64 (not just required/not-allowed choices)
-
https://github.com/FasterXML/jackson-databind/issues/2195: Add abstraction for
ClassNameValidator, for default typing,@JsonTypeInfo -
https://github.com/FasterXML/jackson-databind/issues/2211: change in
ObjectMapper.readTree()for "no content" return value in 2.9
-
https://github.com/FasterXML/jackson-databind/issues/2189: Bounds checks (
We should have something like "Jackson Big Ideas", maybe similar to Kafka KIPs. Not unlike IETF RFCs, but bit smaller documents.
Ideas are listed on [Jackson3+Changes)]
JsonNoderevamp-
JacksonExceptionto replaceJsonProcessingException; unchecked not checked - Major version upgrade details (Maven, Java package)
- Jackson 3.x default setting changes (Features esp)
Here are things since December 2018, after release of 2.9.8 (except for 3.0 some earlier too)
-
https://github.com/FasterXML/jackson-databind/issues/2176: add
JsonMapper.shared()(and ditto for other mappers) (10-Dec-2018)