File tree 2 files changed +3
-1
lines changed
src/main/java/tools/jackson/databind
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -84,6 +84,8 @@ Versions: 3.x (for earlier see VERSION-2.x)
84
84
#4820: Change JDK baseline for Jackson 3.0 from Java 8 to Java 17
85
85
#4835: Remove dynamic work-arounds wrt accessing `Record` definition
86
86
#4840: Increase minimum Android SDK required to 34 for Jackson 3.0
87
+ #4858: Change default of `DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES`
88
+ to `true` for 3.0
87
89
#4875: Remove `JsonNode.fields()` from 3.0
88
90
#4879: Rename `TextNode` as `StringNode`; `JsonNode.xxxTextYyy()` (mostly) as
89
91
`JsonNode.xxxStringYyy()` [JSTEP-3]
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ public enum DeserializationFeature implements ConfigFeature
124
124
* is thrown to indicate this; if not, default value is used
125
125
* (0 for 'int', 0.0 for double, same defaulting as what JVM uses).
126
126
*<p>
127
- * Feature is disabled by default.
127
+ * Feature is enabled by default as of Jackson 3.0 (in 2.x it was disabled) .
128
128
*/
129
129
FAIL_ON_NULL_FOR_PRIMITIVES (false ),
130
130
You can’t perform that action at this time.
0 commit comments