Skip to content

Commit 0f7358f

Browse files
committed
Updated release notes wrt #381
1 parent d499f2e commit 0f7358f

File tree

3 files changed

+19
-6
lines changed

3 files changed

+19
-6
lines changed

release-notes/CREDITS

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Raymond Myers:
4141
(2.0.0)
4242

4343
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
4545
to the set of StdKeyDeserializers
4646
(2.0.1)
4747

@@ -54,21 +54,21 @@ Duncan Atkinson:
5454
(2.1.0)
5555

5656
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
5858
(2.1.0)
5959

6060
Dmitry Katsubo:
61-
* Contributed patch for [Issue#65]: Add getters to `ObjectMapper`, DeserializationContext,
61+
* Contributed patch for #65: Add getters to `ObjectMapper`, DeserializationContext,
6262
DeserializationFactory.
6363
(2.1.0)
6464

6565
Francis Galiegue:
66-
* Reported [Issue#93] (and suggested fix): bug in `ObjectMapper.setAll(...)'
66+
* Reported #93 (and suggested fix): bug in `ObjectMapper.setAll(...)'
6767
implementation
6868
(2.1.1)
6969

7070
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.
7272
(2.1.4)
7373

7474
Eric Tschetter (cheddar@github):
@@ -98,3 +98,7 @@ Seth Pellegrino (jivesoft):
9898
Florian Schoppmann (fschopp@github)
9999
* Reported #358: `IterableSerializer` ignoring annotated content serializer
100100
(2.3.1)
101+
102+
Matthew Morrissette:
103+
* Contributed #381: Allow inlining/unwrapping of value from single-component JSON array
104+
(2.4.0)

release-notes/VERSION

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Project: jackson-databind
22
Version: 2.4.0 (xx-xxx-2014)
33

4+
#381: Allow inlining/unwrapping of value from single-component JSON array
5+
(contributed by yinzara@github)
6+
47
------------------------------------------------------------------------
58
=== History: ===
69
------------------------------------------------------------------------

src/main/java/com/fasterxml/jackson/databind/DeserializationFeature.java

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
* In first case these defaults must follow "config-then-use" patterns
1313
* (i.e. defined once, not changed afterwards); all per-call
1414
* 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.
1519
*/
1620
public enum DeserializationFeature implements ConfigFeature
1721
{
@@ -209,7 +213,9 @@ public enum DeserializationFeature implements ConfigFeature
209213
* values to the corresponding value type. This is basically the opposite of the {@link #ACCEPT_SINGLE_VALUE_AS_ARRAY}
210214
* feature. If more than one value is found in the array, a JsonMappingException is thrown.
211215
* <p>
212-
* Feature is disabled by default
216+
* Feature is disabled by default.
217+
*
218+
* @since 2.4
213219
*/
214220
UNWRAP_SINGLE_VALUE_ARRAYS(false),
215221

0 commit comments

Comments
 (0)