blob: 7bd5df79b49ed940060afd81594ce18eeadf3609 [file] [log] [blame]
cowtowncoderba364612008-03-24 05:59:43 +00001Here are people who have contributed to Jackson JSON process development:
2(version numbers in brackets indicate release in which the problem was fixed)
3
4Tatu Saloranta, tatu.saloranta@iki.fi: Author
5
6Alain Penders:
7 * Reported problem with JavaTypeMapper, where floating point numbers were
8 accidentally converted to Booleans.
9 [0.8]
10
11Mike Eastey:
12 * Reported problem with JavaTypeMapper had a bug which prevented custom
13 mappers (as well as slower interface-based introspection) from working,
14 provided path to specific underlying bugs.
15 [0.8.2]
16
17Augusto Callejas
18 * Reported problem with JavaTypeMapper (and JsonTypeMapper), which
19 caused read operation not to handle EOF appropriately but instead
20 cause a NullPointerException.
21 [0.9]
22
23Maciej Pestka:
24 * JavaTypeMapper did not implicitly flush generator after mapping
25 objects: it should, and now will (note: JsonTypeMapper not directly
26 affected, flushing still needed)
27 [0.9]
cowtowncoder569b5e82008-07-25 06:35:49 +000028
29Tudor Bosman:
30 * Symbol table handling not thread-safe
31 [0.9.3]
32
33Michael Mangeng:
34 * Suggested [JACKSON-1]: make JsonNode implement Iterable<JsonNode> to
35 allow use of Java 5 foreach loop with container nodes.
cowtowncoder822b4752008-07-26 03:57:32 +000036 [0.9.3]
cowtowncoder569b5e82008-07-25 06:35:49 +000037
cowtowncoder822b4752008-07-26 03:57:32 +000038Johannes Link:
39 * Reported [JACKSON-8]: Serialization of BigDecimal broken with JavaTypeMapper
40 [0.9.3]
cowtowncoder314c4832008-09-07 17:39:33 +000041
42Stanislaw Osinski:
43 * Reported [JACKSON-14], contributed code to resolve it and improve
44 generics-handling significantly.
45 [0.9.4]
cowtowncoder5cbf9062008-10-21 06:31:58 +000046
47Michael Descher:
48 * Reported [JACKSON-18], ArrayIndexOutOfBounds on IntNode, due to
49 off-by-one problem with comparisons used for caching common values.
50 [0.9.4]
cowtowncodere6e65b42008-11-27 05:45:46 +000051
52Mike Goodwin:
53 * Suggested [JACKSON-9]: Add support for (non-standard) Json comments.
54 [0.9.4]
cowtowncoder9ec956e2008-12-03 17:40:31 +000055
56Ray Racine:
57 * Pointed out [JACKSON-25]: Problems with Maven pom for lgpl version
58 [0.9.4-backport]
cowtowncodere79a6a42009-01-05 20:48:47 +000059
60Scott Dixon:
61 * Contributed unit test (TestComplexJavaType) for verifying functioning
62 of object serialization
63 [0.9.5]
cowtowncodere7179c32009-02-16 21:39:51 +000064
65Justin Friedl:
66 * Reported [JACKSON-53]: problem serializing iBatis bean classes generated
67 (or wrapped) by CGLib. Probably would also have caused problems with
68 Hibernate and a few other frameworks.
cowtowncoder5ec15452009-02-17 05:56:37 +000069 [0.9.8]
70
71Scott Anderson:
72 * Suggested [JACKSON-48]: Integrate ObjectMapper with JsonGenerator,
73 JsonParser; add MappingJsonFactory.
cowtowncodere7179c32009-02-16 21:39:51 +000074