This repository was archived by the owner on Nov 5, 2019. It is now read-only.
File tree 4 files changed +9
-3
lines changed
src/test/java/com/fasterxml/jackson/module/afterburner/deser
4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ used to enhance access functionality using bytecode generation.
24
24
<properties >
25
25
<!-- annotations more stable, no patch versions -->
26
26
<jackson .annotation.version>2.6.0</jackson .annotation.version>
27
- <jackson .core.version>2.6.2 </jackson .core.version>
27
+ <jackson .core.version>2.6.3-SNAPSHOT </jackson .core.version>
28
28
29
29
<!-- Generate PackageVersion.java into this directory. -->
30
30
<packageVersion .dir>com/fasterxml/jackson/module/afterburner</packageVersion .dir>
Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ Project: jackson-module-afterburner
4
4
=== Releases ===
5
5
------------------------------------------------------------------------
6
6
7
+ 2.6.3 (not yet released)
8
+
9
+ #60: Cannot read some "pretty" documents (NOTE: actually fixed by [jackson-core#220] in 2.6.3)
10
+ (reported by lehcim@github)
11
+
7
12
2.6.2 (15-Sep-2015)
8
13
9
14
#56: Afterburner does not respect DeserializationFeature.UNWRAP_SINGLE_VALUE_ARRAYS
Original file line number Diff line number Diff line change @@ -303,7 +303,7 @@ public void testBooleans() throws Exception
303
303
assertEquals (Boolean .TRUE , bean ._b );
304
304
}
305
305
306
- // for [module-afterburner#60]
306
+ // for [module-afterburner#60] (caused by a bug in jackson-core up to 2.6.2, fixed in 2.6.3)
307
307
public void testProblemWithIndentation () throws Exception {
308
308
final String JSON = "{\n "
309
309
+" \" foos\" :\n "
Original file line number Diff line number Diff line change 3
3
import java .io .IOException ;
4
4
5
5
import com .fasterxml .jackson .core .*;
6
+
6
7
import com .fasterxml .jackson .databind .*;
7
8
import com .fasterxml .jackson .databind .annotation .JsonDeserialize ;
8
9
import com .fasterxml .jackson .databind .deser .std .StdDeserializer ;
9
- import com . fasterxml . jackson . databind . module . SimpleModule ;
10
+
10
11
import com .fasterxml .jackson .module .afterburner .AfterburnerTestBase ;
11
12
12
13
@ SuppressWarnings ("serial" )
You can’t perform that action at this time.
0 commit comments