File tree 2 files changed +5
-5
lines changed
src/main/java/tools/jackson/databind 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ Versions: 3.x (for earlier see VERSION-2.x)
11
11
(contributed by Joo-Hyuk K)
12
12
#1058: Add a way to pass std and format-specific parser/generator flags during
13
13
parser/generation construction
14
+ #1484: Changed default of `MapperFeature.DEFAULT_VIEW_INCLUSION` to `false` in 3.0
14
15
#1600: Serializing locale with underscore, not standard hyphen
15
16
(requested by Alexander K)
16
17
#1762: `StdDateFormat`: serialize time offset using colon
Original file line number Diff line number Diff line change @@ -259,13 +259,12 @@ public enum MapperFeature
259
259
* changes between "opt-in" (feature disabled) and
260
260
* "opt-out" (feature enabled) modes.
261
261
*<p>
262
- * Default value is enabled, meaning that non-annotated
263
- * properties are included in all views if there is no
262
+ * Feature is disabled by default as of Jackson 3.0 (in 2.x it was enabled),
263
+ * meaning that non-annotated
264
+ * properties are not included views if there is no
264
265
* {@link com.fasterxml.jackson.annotation.JsonView} annotation.
265
- *<p>
266
- * Feature is enabled by default.
267
266
*/
268
- DEFAULT_VIEW_INCLUSION (true ),
267
+ DEFAULT_VIEW_INCLUSION (false ),
269
268
270
269
/*
271
270
/**********************************************************************
You can’t perform that action at this time.
0 commit comments