Skip to content

Commit f4e9657

Browse files
committed
Prepare for 2.4.1.1, to only include #491
1 parent 7afbca2 commit f4e9657

File tree

3 files changed

+17
-8
lines changed

3 files changed

+17
-8
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<groupId>com.fasterxml.jackson.core</groupId>
1212
<artifactId>jackson-databind</artifactId>
13-
<version>2.4.2-SNAPSHOT</version>
13+
<version>2.4.1.1-SNAPSHOT</version>
1414
<name>jackson-databind</name>
1515
<packaging>bundle</packaging>
1616
<description>General data-binding functionality for Jackson: works on core streaming API</description>

release-notes/VERSION

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
Project: jackson-databind
2-
Version: 2.4.1 (17-Jun-2014)
2+
Version: 2.4.1.1 (18-Jun-2014)
3+
4+
Special one-off "micro patc" for:
5+
6+
#491: Temporary work-around for issue #490 (full fix for 2.5 needs to be
7+
in `jackson-annotations`)
8+
9+
------------------------------------------------------------------------
10+
=== History: ===
11+
------------------------------------------------------------------------
12+
13+
2.4.1 (17-Jun-2014)
314

415
#479: NPE on trying to deserialize a `String[]` that contains null
516
(reported by huxi@github)
@@ -8,10 +19,6 @@ Version: 2.4.1 (17-Jun-2014)
819
#489 (partial): TypeFactory cache prevents garbage collection of custom ClassLoader
920
(reported by sftwrengnr@github)
1021

11-
------------------------------------------------------------------------
12-
=== History: ===
13-
------------------------------------------------------------------------
14-
1522
2.4.0 (02-Jun-2014)
1623

1724
#81: Allow use of @JsonUnwrapped with typed (@JsonTypeInfo) classes, provided

src/main/java/com/fasterxml/jackson/databind/deser/DefaultDeserializationContext.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,10 @@ public ReadableObjectId findObjectId(Object id, ObjectIdGenerator<?> gen, Object
9191

9292
if (resolver == null) {
9393
resolver = resolverType.newForDeserialization(this);
94-
// Temporary fix for 490 until 4.2
95-
if(resolverType instanceof SimpleObjectIdResolver) {
94+
/* !!! 18-Jun-2014, pgelinas: Temporary fix for [#490] until real
95+
* fix (for jackson-annotations, SimpleObjectIdResolver) can be added.
96+
*/
97+
if (resolverType instanceof SimpleObjectIdResolver) {
9698
resolver = new SimpleObjectIdResolver();
9799
}
98100
_objectIdResolvers.add(resolver);

0 commit comments

Comments
 (0)