File tree 3 files changed +19
-6
lines changed
src/main/java/com/fasterxml/jackson/databind
3 files changed +19
-6
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ Raymond Myers:
41
41
(2.0.0)
42
42
43
43
Ryan Gardner:
44
- * Contributed [pull-5] -- Add support for maps with java.util.Locale keys
44
+ * Contributed #5 -- Add support for maps with java.util.Locale keys
45
45
to the set of StdKeyDeserializers
46
46
(2.0.1)
47
47
@@ -54,21 +54,21 @@ Duncan Atkinson:
54
54
(2.1.0)
55
55
56
56
Mark Wolfe:
57
- * Suggested [Issue #45] : Add `@JsonNaming()` for per-class naming strategy overrides
57
+ * Suggested #45: Add `@JsonNaming()` for per-class naming strategy overrides
58
58
(2.1.0)
59
59
60
60
Dmitry Katsubo:
61
- * Contributed patch for [Issue #65] : Add getters to `ObjectMapper`, DeserializationContext,
61
+ * Contributed patch for #65: Add getters to `ObjectMapper`, DeserializationContext,
62
62
DeserializationFactory.
63
63
(2.1.0)
64
64
65
65
Francis Galiegue:
66
- * Reported [Issue #93] (and suggested fix): bug in `ObjectMapper.setAll(...)'
66
+ * Reported #93 (and suggested fix): bug in `ObjectMapper.setAll(...)'
67
67
implementation
68
68
(2.1.1)
69
69
70
70
kelaneren@github:
71
- * Reported [Issue #157] , contributed unit test: NPE when registering same module twice.
71
+ * Reported #157, contributed unit test: NPE when registering same module twice.
72
72
(2.1.4)
73
73
74
74
Eric Tschetter (cheddar@github):
@@ -98,3 +98,7 @@ Seth Pellegrino (jivesoft):
98
98
Florian Schoppmann (fschopp@github)
99
99
* Reported #358: `IterableSerializer` ignoring annotated content serializer
100
100
(2.3.1)
101
+
102
+ Matthew Morrissette:
103
+ * Contributed #381: Allow inlining/unwrapping of value from single-component JSON array
104
+ (2.4.0)
Original file line number Diff line number Diff line change 1
1
Project: jackson-databind
2
2
Version: 2.4.0 (xx-xxx-2014)
3
3
4
+ #381: Allow inlining/unwrapping of value from single-component JSON array
5
+ (contributed by yinzara@github)
6
+
4
7
------------------------------------------------------------------------
5
8
=== History: ===
6
9
------------------------------------------------------------------------
Original file line number Diff line number Diff line change 12
12
* In first case these defaults must follow "config-then-use" patterns
13
13
* (i.e. defined once, not changed afterwards); all per-call
14
14
* changes must be done using {@link ObjectReader}.
15
+ *<p>
16
+ * Note that features that do not indicate version of inclusion
17
+ * were available in Jackson 2.0 (or earlier); only later additions
18
+ * indicate version of inclusion.
15
19
*/
16
20
public enum DeserializationFeature implements ConfigFeature
17
21
{
@@ -209,7 +213,9 @@ public enum DeserializationFeature implements ConfigFeature
209
213
* values to the corresponding value type. This is basically the opposite of the {@link #ACCEPT_SINGLE_VALUE_AS_ARRAY}
210
214
* feature. If more than one value is found in the array, a JsonMappingException is thrown.
211
215
* <p>
212
- * Feature is disabled by default
216
+ * Feature is disabled by default.
217
+ *
218
+ * @since 2.4
213
219
*/
214
220
UNWRAP_SINGLE_VALUE_ARRAYS (false ),
215
221
You can’t perform that action at this time.
0 commit comments