blob: 1678f74d79f29d426117916f80f8b2ea38acc031 [file] [log] [blame]
Tatu Saloranta703bf4a2012-01-11 22:14:37 -08001Version: 2.0.0
2
3Release date:
4 xx-Feb-2012
5
6Description:
7 The son of Jackson! Behold...
8
9Fixes:
10
Tatu3af61ff2012-01-19 15:58:41 -080011* [JACKSON-711]: Delegating @JsonCreator did not work with Injectable values
Tatu9e6c28f2012-01-19 15:58:08 -080012
Tatu Saloranta703bf4a2012-01-11 22:14:37 -080013Improvements
14
Tatu Saloranta28ff1a92012-01-17 17:54:51 -080015* [JACKSON-546]: Indicate end-of-input with JsonMappingException instead
16 of EOFException, when there is no parsing exception
Tatu Salorantaee6e3d12012-01-17 17:28:39 -080017* [JACKSON-664]: Reduce overhead of type resolution by adding caching
18 in TypeFactory
Tatu Saloranta7555fa22012-01-14 23:03:04 -080019* [JACKSON-690]: Pass DeserializationContext through ValueInstantiator
Tatu418a2392012-01-12 21:52:07 -080020* [JACKSON-695]: Add 'isEmpty(value)' in JsonSerializer to allow
21 customizing handling of serialization of empty values
Tatu Saloranta15fb6ff2012-01-14 10:31:35 -080022* [JACKSON-710]: 'ObjectMapper.convertValue()' should ignore root value
23 wrapping/unwrapping settings
Tatu60668262012-01-19 14:21:12 -080024* [JACKSON-730] Split various features (JsonParser, JsonGenerator,
25 SerializationConfig, DeserializationConfig) into per-factory
26 features (MapperConfig.Feature, JsonFactory.Feature) an per
27 instance features (existing ones)
Tatu Salorantaa03e0eb2012-01-14 14:01:39 -080028* [JACKSON-732]: Allow 'AnnotationIntrospector.findContentDeserializer()'
29 (and similar) to return instance, not just Class<?> for instance
30 (requested by James R)
Tatu Saloranta4b02e9e2012-02-03 18:41:29 -080031* [JACKSON-736]: Add (more) access to array, container and map serializers
Tatu Salorantac166fa32012-02-03 19:42:41 -080032* [JACKSON-737]: Allow accessing of "creator properties" for BeanDeserializer
Tatucbbfbd32012-01-20 16:07:51 -080033* [JACKSON-748]: Add 'registerSubtypes' to 'Module.setupContext' (and SimpleModule)
Tatu Saloranta703bf4a2012-01-11 22:14:37 -080034* [JACKSON-749]: Make @JsonValue work for Enum deserialization
Tatub471a042012-01-27 11:51:39 -080035* [JACKSON-769]: ObjectNode/ArrayNode: change 'put', 'insert', 'add' to return
36 'this node' (unless already returning something)
Tatu Salorantae5d77692012-01-29 11:20:26 -080037* [JACKSON-770]: Simplify method naming for JsonNode, drop unnecessary 'get' prefix
38 from methods like 'getTextValue()' (becomes 'textValue()')
Tatu9610aff2012-02-02 11:30:08 -080039* [JACKSON-777]: Rename 'SerializationConfig.Feature' as 'SerializationFeature',
Tatu Saloranta28808722012-02-24 18:35:50 -080040 'DeserializationConfig.Feature' as 'DeserializationFeature'
Tatu Salorantadfc4c882012-02-11 13:54:27 -080041* [JACKSON-780]: MissingNode, NullNode should return 'defaultValue' from 'asXxx' methods,
Tatu Saloranta28808722012-02-24 18:35:50 -080042 (not 0 for numbers), as they are not numeric types
43* [JACKSON-787]: @JsonIgnoredProperties can be used on properties too
44* [JACKSON-795]: @JsonValue was not working for Maps, Collections
Tatu Saloranta703bf4a2012-01-11 22:14:37 -080045
46New features:
47
Tatu Salorantac99a7842012-02-22 18:09:00 -080048* [JACKSON-107]: Add support for Object Identity (to handled cycles, shared refs),
49 with @JsonIdentityInfo.
Tatu Saloranta26b2e1b2012-02-22 22:50:21 -080050* [JACKSON-435]: Allow per-property Date formatting using @JsonFormat.
Tatu Saloranta89580482012-01-20 22:08:56 -080051* [JACKSON-437]: Allow injecting of type id as POJO property, by setting
52 new '@JsonTypeInfo.visible' property to true.
Tatu Saloranta17ad21f2012-02-19 10:01:31 -080053* [JACKSON-469]: Support "Builder pattern" for deserialiation; that is, allow
54 use of separate Builder object for data binding, creating actual value
Tatu Saloranta7324b9b2012-02-02 21:51:16 -080055* [JACKSON-608]: Allow use of JSON Views for deserialization
Tatu Saloranta2aa64842012-01-14 22:25:08 -080056* [JACKSON-669]: Allow prefix/suffix for @JsonUnwrapped properties
57 (requested by Aner P)
Tatu Salorantaf0e232d2012-01-29 16:44:28 -080058* [JACKSON-707]: Add 'JsonNode.deepCopy()', to create safe deep copies
59 of ObjectNodes, ArrayNodes.
Tatu Salorantaff8c08c2012-02-21 22:21:21 -080060* [JACKSON-714]: Add general-purpose @JsonFormat annotation
Tatubc4153e2012-01-18 15:05:44 -080061* [JACKSON-718]: Added 'JsonNode.canConvertToInt()', 'JsonNode.canConvertToLong()'
Tatu2ebd69a2012-01-20 11:12:12 -080062* [JACKSON-747]: Allow changing of 'SerializationConfig.Feature' for ObjectWriter,
63 'DeserializationConfig.Feature' for ObjectReader.
Tatu Saloranta2aa64842012-01-14 22:25:08 -080064* [JACKSON-752]: Add @JsonInclude (replacement of @JsonSerialize.include)
Tatu Salorantaf7c45bf2012-01-16 18:26:47 -080065* [JACKSON-754]: Add @JacksonAnnotationsInside for creating "annotation
66 bundles" (also: AnnotationIntrospector.isAnnotationBundle())
Tatubbebf462012-02-03 17:44:31 -080067* [JACKSON-762]: Allow using @JsonTypeId to specify property to use as
68 type id, instead of using separate type id resolver.
Tatu Salorantae1961742012-01-22 16:03:47 -080069* [JACKSON-764]: Allow specifying "root name" to use for root wrapping
70 via ObjectReader, ObjectWriter.
Tatu Saloranta361c0a82012-02-24 18:16:29 -080071* [JACKSON-772]: Add 'JsonNode.withArray()' to use for traversing Array nodes.
72* [JACKSON-793]: Add support for configurable Locale, TimeZone to use
73 (via SerializationConfig, DeserializationConfig)
Tatu Saloranta2aa64842012-01-14 22:25:08 -080074
Tatu Saloranta703bf4a2012-01-11 22:14:37 -080075------------------------------------------------------------------------
76=== History: ===
77------------------------------------------------------------------------
78
79[entries for versions 1.x and earlier not retained; refer to earlier releases)