blob: 16082c8cedde876367f7299352546d26b3f2c213 [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]
cowtowncoder4e0f1ca2009-03-09 05:00:32 +000064 * Suggested [JACKSON-45]: adding convenience methods to simplify writing
65 custom serializers
66 [1.0.0]
cowtowncodere7179c32009-02-16 21:39:51 +000067
68Justin Friedl:
cowtowncoder65148ec2009-02-25 23:16:28 +000069 * Requested [JACKSON-52]: ability to disable getter method auto-detection
70 [0.9.9]
cowtowncoderbe4efa32009-02-19 06:26:45 +000071 * Reported [JACKSON-53] (and suggested way to fix it): problem serializing
72 iBatis bean classes generated (or wrapped) by CGLib. Probably would also
73 have caused problems with Hibernate and other frameworks.
cowtowncoder3f1dee82009-02-19 20:11:55 +000074 [0.9.8]
cowtowncoder2dcb3f42009-03-20 06:23:00 +000075 * Requested [JACKSON-61]: Allow suppressing writing of bean properties
76 with null values
77 [0.9.9-3]
cowtowncoder65148ec2009-02-25 23:16:28 +000078 * Reported [JACKSON-62]: NPE with JsonMappingException
cowtowncoder3f1dee82009-02-19 20:11:55 +000079 [0.9.9]
cowtowncoder5ec15452009-02-17 05:56:37 +000080
81Scott Anderson:
82 * Suggested [JACKSON-48]: Integrate ObjectMapper with JsonGenerator,
83 JsonParser; add MappingJsonFactory.
cowtowncoder3f1dee82009-02-19 20:11:55 +000084 [0.9.9]
cowtowncoder49593ad2009-03-25 19:41:40 +000085 * Requested [JACKSON-84]: Add JsonGenerator.writeRawValue method(s).
86 [0.9.9-3]
cowtowncoderbe4efa32009-02-19 06:26:45 +000087
88Kevin Grained:
89 * Reported [JACKSON-58] (and suggested a fix): NPE with String[]
90 serialization
cowtowncoder3f1dee82009-02-19 20:11:55 +000091 [0.9.9]
cowtowncodere7179c32009-02-16 21:39:51 +000092
cowtowncoder29bf2512009-03-03 00:57:00 +000093Ryan Heaton:
94 * Helped with [JACKSON-67]: Json content type provider for JAX-RS
95 [0.9.9]