blob: 18a109d0c87fd4cdaeee4b8658a6afbd8f96d62f [file] [log] [blame]
Tatu Saloranta637b73c2013-02-13 10:17:51 -08001Project: jackson-core
Tatu Saloranta1c9e1452014-11-24 18:08:01 -08002
3Contains core streaming reader (`JsonParser`) and writer (`JsonGenerator`) abstractions,
Tatu Saloranta3dcedd22015-01-10 20:15:06 -08004factory for constructing readers/writers (JsonFactory), as well as a minimal set
Tatu Saloranta1c9e1452014-11-24 18:08:01 -08005of interfaces needed for streaming level to make callbacks and call-throughs,
6via `ObjectCodec` and `TreeNode`.
7
Tatu Saloranta3dcedd22015-01-10 20:15:06 -08008Also includes implementation of this API for JSON.
Tatu Saloranta1c9e1452014-11-24 18:08:01 -08009Forms the base for other data formats as well, despite naming that suggests
Tatu Saloranta3dcedd22015-01-10 20:15:06 -080010JSON-specificity: naming is due to history, as Jackson started out as pure
11JSON library.
Tatu Saloranta1c9e1452014-11-24 18:08:01 -080012
13------------------------------------------------------------------------
14=== Releases ===
15------------------------------------------------------------------------
16
Cowtowncodercfeaed02015-09-08 15:49:09 -0700172.6.2 (not yet released)
18
19#213: Parser is sometimes wrong when using CANONICALIZE_FIELD_NAMES
20 (reported by ichernev@github)
Cowtowncoderbe438672015-09-09 10:59:56 -070021#216: ArrayIndexOutOfBoundsException: 128 when repeatedly serializing to a byte array
22 (reported by geekbeast@github)
Cowtowncodercfeaed02015-09-08 15:49:09 -070023
Tatu Saloranta7fd29162015-08-09 22:22:14 -0700242.6.1 (09-Aug-2015)
Cowtowncoderc2823b42015-07-31 19:43:48 -070025
26#207: `ArrayIndexOutOfBoundsException` in `ByteQuadsCanonicalizer`
27 (reported by Florian S, fschopp@github)
28
Cowtowncoder80b83192015-07-16 17:12:09 -0700292.6.0 (17-Jul-2015)
Cowtowncoder5cddffa2015-01-15 16:10:26 -080030
Tatu Saloranta66e604f2015-05-25 20:02:40 -070031#137: Allow filtering content read via `JsonParser` by specifying `JsonPointer`;
32 uses new class `com.fasterxml.jackson.core.filter.FilteringParserDelegate`
33 (and related, `TokenFilter`)
Cowtowncoder5cddffa2015-01-15 16:10:26 -080034#177: Add a check so `JsonGenerator.writeString()` won't work if `writeFieldName()` expected.
Cowtowncoder7f5065a2015-02-23 15:51:38 -080035#182: Inconsistent TextBuffer#getTextBuffer behavior
36 (contributed by Masaru H)
Tatu Salorantab895aaf2015-04-23 22:15:48 -070037#185: Allow filtering content written via `JsonGenerator` by specifying `JsonPointer`;
38 uses new class `com.fasterxml.jackson.core.filter.FilteringGeneratorDelegate`
39 (and related, `TokenFilter`)
Cowtowncoder698f3a72015-03-30 17:26:08 -070040#188: `JsonParser.getValueAsString()` should return field name for `JsonToken.FIELD_NAME`, not `null`
Tatu Saloranta8891c0c2015-04-23 22:47:05 -070041#189: Add `JsonFactory.Feature.USE_THREAD_LOCAL_FOR_BUFFER_RECYCLING` (default: true), which may
42 be disabled to prevent use of ThreadLocal-based buffer recyling.
43 (suggested by soldierkam@github)
Cowtowncoderff2a73a2015-05-27 10:01:22 -070044#195: Add `JsonGenerator.getOutputBuffered()` to find out amount of content buffered,
45 not yet flushed.
46 (requested by Ruediger M)
Cowtowncoder97345f72015-06-09 11:33:42 -070047#196: Add support for `FormatFeature` extension, for format-specifc Enum-backed
48 parser/generator options
Cowtowncoderefc42952015-02-05 10:18:04 -080049- Minor improvement to construction of "default PrettyPrinter": now overridable by data format
50 modules
Tatu Saloranta2967c232015-02-05 20:46:53 -080051- Implement a new yet more optimized symbol table for byte-backed parsers
Cowtowncoder4eeba792015-02-13 16:17:17 -080052- Add `JsonParser.Feature.IGNORE_UNDEFINED`, useful for data formats like protobuf
Tatu Salorantaad3a43e2015-03-30 19:29:05 -070053- Optimize writing of String names (remove intermediate copy; with JDK7 no speed benefit)
Cowtowncoder5cddffa2015-01-15 16:10:26 -080054
Cowtowncodercec04792015-04-24 10:08:26 -0700552.5.3 (24-Apr-2015)
Tatu Saloranta6a637522015-04-22 21:33:47 -070056
57#191: Longest collision chain in symbol table now exceeds maximum -- suspect a DoS attack
58 (reported by Paul D)
59
Tatu Saloranta8f64a152015-03-29 16:46:40 -0700602.5.2 (29-Mar-2015)
Cowtowncoder29a364a2015-02-16 13:55:24 -080061
62#181: Failure parsing -Infinity on buffer boundary
63 (reported by brharrington@github)
Tatu Salorantae0a02272015-03-26 21:05:39 -070064#187: Longest collision chain in symbol table exceeds maximum length routinely
65 in non-malicious code
66 (reported by mazzaferri@github)
Cowtowncoder29a364a2015-02-16 13:55:24 -080067
Tatu Saloranta725b7972015-02-06 16:03:50 -0800682.5.1 (06-Feb-2015)
Tatu Saloranta3dcedd22015-01-10 20:15:06 -080069
70#178: Add `Lf2SpacesIndenter.withLinefeed` back to keep binary-compatibility with 2.4.x
71 (reported by ansell@github)
Tatu Saloranta9bdda3f2015-02-02 21:35:52 -080072- Minor fix to alignment of null bytes in the last 4 bytes of name, in case where name
73 may cross the input boundary
Tatu Saloranta3dcedd22015-01-10 20:15:06 -080074
Tatu Saloranta41ee3042015-01-01 15:34:50 -0800752.5.0 (01-Jan-2015)
Tatu Salorantaca94baf2014-08-07 20:44:41 -070076
Tatue9972872014-08-13 13:00:57 -070077#148: BytesToNameCanonicalizer can mishandle leading null byte(s).
78 (reported by rjmac@github)
Cowtowncoder27eb3c12014-11-07 15:16:45 -080079#164: Add `JsonGenerator.Feature.IGNORE_UNKNOWN` (but support via individual
80 data format modules)
Tatu Saloranta55cfa312014-11-28 20:54:50 -080081#166: Allow to configure line endings and indentation
82 (contributed by Aaron D)
Cowtowncoder7b1d4112014-11-24 11:41:16 -080083#167: `JsonGenerator` not catching problem of writing field name twice in a row
Tatu Saloranta44f42e82014-11-26 20:38:27 -080084#168: Add methods in `JsonStreamContext` for keeping track of "current value"
Cowtowncoderd2c60232014-12-09 14:39:17 -080085#169: Add `JsonPointer.head()`
Cowtowncoderfa0b5232014-12-05 14:01:27 -080086 (contributed by Alex S, lordofthejars@github)
Cowtowncoderf4087952014-09-29 14:23:37 -070087- Added `ResolvedType.getParameterSource()` to support better resolution
88 of generic types.
Cowtowncoder7df7c572014-11-07 17:06:29 -080089- Added `JsonGenerator.writeRawValue(SerializableString)`
Tatu Saloranta39170c02014-12-12 20:17:13 -080090- Added `JsonParser.hasExpectedStartObjectToken()` convenience method
Tatu Salorantaaae53972014-12-09 20:05:04 -080091- Added `JsonParser.hasTokenId(id)` convenience method
Cowtowncoder2ec34032014-12-11 10:50:57 -080092- Added `JsonParser.nextFieldName()` (no args)
Tatue9972872014-08-13 13:00:57 -070093
Cowtowncoder44dc4292015-09-11 10:05:02 -0700942.4.6 (23-Apr-2015)
Cowtowncoderfca10e32015-02-19 16:39:04 -080095
96#184: WRITE_NUMBERS_AS_STRINGS disables WRITE_BIGDECIMAL_AS_PLAIN
97 (reported by Derek C)
98
Tatu Saloranta36c91eb2015-01-13 20:20:08 -0800992.4.5 (13-Jan-2015)
100
101No changes since 2.4.4.
102
Tatu Saloranta1c9e1452014-11-24 18:08:01 -08001032.4.4 (24-Nov-2014)
Tatu Salorantad533f292014-09-24 20:14:39 -0700104
Cowtowncoder290799a2014-10-08 16:06:40 -0700105#157: ArrayIndexOutOfBoundsException: 200 on numbers with more than 200 digits.
106 (reported by Lars P, larsp@github)
Tatu Saloranta0d9cd9f2014-12-07 10:16:55 -0800107#173: An exception is thrown for a valid JsonPointer expression
108 (reported by Alex S)
Cowtowncoderd9995142014-12-30 17:09:51 -0800109#176: `JsonPointer` should not consider "00" to be valid index
110 (reported by fge@gitub)
Tatu Salorantaffd16b72014-11-09 12:48:32 -0800111- Fix `JsonGenerator.setFeatureMask()` to better handle dynamic changes.
Tatu Salorantad533f292014-09-24 20:14:39 -0700112
Cowtowncoderd860a8c2014-10-09 11:35:33 -07001132.4.3 (02-Oct-2014)
Tatu544904d2014-08-13 12:31:11 -0700114
Cowtowncoderd860a8c2014-10-09 11:35:33 -0700115#152: Exception for property names longer than 256k
116 (reported by CrendKing@github)
Tatu544904d2014-08-13 12:31:11 -0700117
Tatu Salorantad533f292014-09-24 20:14:39 -07001182.4.2 (13-Aug-2014)
Tatu4ceaba82014-06-06 13:44:41 -0700119
Tatu Saloranta5027dc52014-07-08 20:27:00 -0700120#145: NPE at BytesToNameCanonicalizer
121 (reported by Shay B)
Tatu Saloranta1f6e1fb2012-01-17 22:29:27 -0800122#146: Error while parsing negative floats at the end of the input buffer
123 (reported by rjmac@github)
Tatu4ceaba82014-06-06 13:44:41 -0700124
Tatu Saloranta5027dc52014-07-08 20:27:00 -07001252.4.1 (16-Jun-2014)
126
127#143: Flaw in `BufferRecycler.allocByteBuffer(int,int)` that results in
128 performance regression
129
1302.4.0 (29-May-2014)
Tatu Saloranta1f6e1fb2012-01-17 22:29:27 -0800131
Tatu Saloranta175a97b2014-01-09 21:49:24 -0800132#121: Increase size of low-level byte[]/char[] input/output buffers
133 (from 4k->8k for bytes, 2k->4k for chars)
Tatu Saloranta1d076012014-03-24 18:29:33 -0700134#127: Add `JsonGenerator.writeStartArray(int size)` for binary formats
Tatu64aa9d22014-04-18 14:07:38 -0700135#138: Add support for using `char[]` as input source; optimize handling
136 of `String` input as well.
Tatu Salorantaf633f102013-12-13 21:15:24 -0800137- Refactor `BufferRecycler` to eliminate helper enums
Tatu Saloranta6f91dcf2013-12-01 13:16:45 -0800138
Cowtowncoder44dc4292015-09-11 10:05:02 -07001392.3.5 (13-Jan-2015)
140
141#152: Exception for property names longer than 256k
142#173: An exception is thrown for a valid JsonPointer expression
143#176: `JsonPointer` should not consider "00" to be valid index
144
1452.3.4 (17-Jul-2014)
Tatu Saloranta9e2d7372014-05-07 08:23:32 -07001462.3.3 (10-Apr-2014)
147
148No changes since 2.3.2.
149
1502.3.2 (01-Mar-2014)
Tatu Salorantaa50f62c2014-03-06 20:24:04 -0800151
152#126: Revert some 1.6 back to make core lib work with Android 2.2 (FroYo)
153 (contributed by Goncalo S)
154#129: Missing delegation method, `JsonParserDelegate.isExpectedStartArrayToken()`
155 (Pascal G)
Tatu Saloranta9e2d7372014-05-07 08:23:32 -0700156#133: Prevent error on JsonPointer expressions for properties that have numeric
157 ids above 32-bit range
158 (reported by mrstlee@github)
Tatu Salorantaa50f62c2014-03-06 20:24:04 -0800159
Tatu141c08b2014-02-28 14:04:39 -08001602.3.1 (28-Dec-2013)
161
162No functional changes.
163
Tatu Salorantaf633f102013-12-13 21:15:24 -08001642.3.0 (13-Nov-2013)
165
Tatu Salorantaf9593612013-08-07 19:24:25 -0700166#8: Add methods in `JsonParser`/`JsonGenerator` for reading/writing Object Ids
Tatu Saloranta098ece82013-09-19 12:12:22 -0700167#47: Support YAML-style comments with `JsonParser.Feature.ALLOW_YAML_COMMENTS`
Tatu Saloranta880ba762013-09-24 21:32:15 -0700168#60: Add a feature (`JsonParser.Feature.STRICT_DUPLICATE_DETECTION`) to verify
169 that input does not contain duplicate filed names
Tatu Salorantaad28e352013-07-04 16:40:18 -0700170#77: Improve error reporting for unrecognized tokens
171 (requested by cowwoc@github)
Tatu Saloranta0dba7142013-07-04 21:17:31 -0700172#85: Add `JsonGenerator.Feature.WRITE_BIGDECIMAL_AS_PLAIN`
Tatu Saloranta08f918c2013-07-27 19:26:51 -0700173#91: Add methods in `JsonGenerator` for writing native Type Ids
Tatu Saloranta567257f2013-08-02 22:20:17 -0700174#92: Add methods in `JsonParser` for reading native Type Ids
Tatu Salorantacaefc682013-08-07 19:20:50 -0700175#93: Add `getFeatureMask()`, `setFeatureMask()` in `JsonGenerator`/`JsonParser`
Tatu Saloranta98c86a92013-08-10 19:25:43 -0700176#94: Allow coercion of String value "null" (similar to handling of null token)
Tatu Saloranta1734a3a2013-08-28 19:06:20 -0700177#96: Add `JsonFactory.requiresPropertyOrdering()` introspection method
Tatu Saloranta7dc9de62013-08-30 19:01:20 -0700178#97: JsonGenerator's `JsonWriteContext` not maintained properly, loses
179 current field name
180 (reported by Sam R)
Tatu Salorantab40ac812013-08-28 21:04:32 -0700181#98: Improve handling of failures for `BigDecimal`, for "NaN" (and infinity)
Tatu Salorantaeaa2b0c2013-09-21 11:39:53 -0700182#102: Unquoted field names can not start with a digit
Tatu Salorantab8835442013-09-14 12:12:57 -0700183#103: Add `JsonFactory.canHandleBinaryNatively`, `JsonGenerator.canWriteBinaryNatively`
184 to let databind module detect level of support for binary data.
Tatu Saloranta38d6e352013-09-21 11:26:42 -0700185#105: Parser parsers numbers eagerly; does not report error with missing space
Tatu Salorantaf9ad80f2013-09-24 21:31:16 -0700186#106: Add `JsonGenerator.Feature.STRICT_DUPLICATE_DETECTION` for preventing dup names
Tatu Saloranta0e10fd52013-11-02 21:12:49 -0700187#110: Improve overridability of `JsonGeneratorDelegate`
188 (suggested by qpliu@github)
Tatu Saloranta911cca02013-10-08 10:03:44 -0700189#111: _currInputRowStart isn't initialized in UTF8StreamJsonParser() constructor
190 (reported by dreamershl@github)
Tatu Saloranta5e14c462013-11-08 19:30:54 -0800191#115: JsonGenerator writeRawValue problem with surrogate UTF-8 characters
192 (reported by Marcin Z)
Tatu Salorantabc540622013-11-11 16:08:15 -0800193#116: WriterBasedJsonGenerator produces truncated Unicode escape sequences
194 (reported by Steve L-S)
Tatu Saloranta45cc26c2013-08-07 23:24:04 -0700195- Improve `DefaultPrettyPrinter`, `Lf2SpacesIndenter` (from databind #276)
Tatu Saloranta98cb9a72013-08-10 15:05:33 -0700196- Add `JsonGenerator.canOmitFields()` method to support discovery of
197 positional formats, needed for handling of filtering for CSV
Tatu Saloranta8475c8b2013-09-18 16:21:22 -0700198- Rewrite `InternCache` to use `ConcurrentHashMap`, to work more efficiently both
199 for common case of few misses (no block on access), and slowest cases (lots of
200 misses).
Tatu879b7cd2013-09-24 11:51:37 -0700201- Add `JsonPointer` implementation, to be used by tree model, streaming
Tatu Saloranta7ee38782013-10-03 10:51:06 -0700202- Make `UTF8StreamJsonParser` non-final, for potential sub-classing
Tatu Salorantaad28e352013-07-04 16:40:18 -0700203
Tatu Saloranta3da5c042013-10-08 10:08:24 -07002042.2.3 (23-Aug-2013)
205
206#78: ArrayIndexOutOfBoundsException for very long numbers (>500 digits)
207 (reported by boothen@github)
208#81: CharTypes.appendQuoted misencodes first 32 Unicode values as '\0000'
209 (reported by githubaff0@github)
210#84: Support for parsing 'Infinity' when feature ALLOW_NON_NUMERIC_NUMBERS is on
211 (contributed by ebrevdo@github)
212- Add `Base64Variant.decode()` convenience methods
213
Tatu Saloranta0ec6bac2013-06-06 13:26:26 -07002142.2.2 (26-May-2013)
215
216No changes since previous version.
217
Tatu Salorantad940b452013-05-26 22:16:00 -07002182.2.1 (03-May-2013)
Tatu Saloranta7a9d1d32013-04-26 16:42:40 -0700219
Tatu Saloranta7b796a82013-04-27 10:18:30 -0700220#72: JsonFactory.copy() was not copying settings properly
221 (reported by Christian S (squiddle@github))
Tatu Saloranta7a9d1d32013-04-26 16:42:40 -0700222- Moved VERSION/LICENSE contained in jars under META-INF/, to resolve
223 Android packaging (APK) issues
224
Tatu Saloranta7a9d1d32013-04-26 16:42:40 -07002252.2.0 (22-Apr-2013)
Tatu Saloranta306524f2012-11-12 14:33:10 -0800226
227Fixes:
228
Tatu Saloranta5b7bbe12013-04-16 19:08:21 -0700229#51: JsonLocation had non-serializable field, mark as transient
Tatu Saloranta61d5bdd2013-01-11 19:02:01 -0800230
Tatu Saloranta45466132013-01-11 10:20:48 -0800231Improvements
232
Tatu Saloranta5b7bbe12013-04-16 19:08:21 -0700233#46, #49: Improve VersionUtil to generate PackageVersion, instead of
Tatu Saloranta45466132013-01-11 10:20:48 -0800234 reading VERSION.txt from jar -- improves startup perf on Android significantly
235 (contributed by Ben G)
Tatu Saloranta5b7bbe12013-04-16 19:08:21 -0700236#59: Add more functionality in `TreeNode` interface, to allow some
Tatu Saloranta12525982013-02-12 22:56:57 -0800237 level of traversal over any and all Tree Model implementations
Tatu Saloranta5b7bbe12013-04-16 19:08:21 -0700238#69: Add support for writing `short` values in JsonGenerator
Tatu Saloranta45466132013-01-11 10:20:48 -0800239
Tatu Salorantac3ef9f32013-02-04 20:35:22 -08002402.1.3 (19-Jan-2013)
Tatu Saloranta1e1bfb62012-11-15 17:39:03 -0800241
Tatu Salorantac3ef9f32013-02-04 20:35:22 -0800242* [JACKSON-884]: JsonStringEncoder.quoteAsStringValue() fails to encode
243 ctrl chars correctly.
244* [Issue#48] Problems with spaces in URLs
245 (reported by KlausBrunner)
246
2472.1.2 (04-Dec-2012)
248
249* [Issue#42] Problems with UTF32Reader
250 (reported by James R [jroper@github])
251* Added missing methods (like 'setPrettyPrinter()' in JsonGeneratorDelegate
252
2532.1.1 (11-Nov-2012)
Tatu Salorantadc2e72f2012-10-05 13:04:07 -0700254
Tatu Salorantaab0269c2012-10-20 13:19:10 -0700255* [Issue#34] `JsonParser.nextFieldName()` fails on buffer boundary
256 (reported by gsson@github)
Tatu Saloranta9c386442012-11-08 14:40:26 -0800257* [Issue#38] `JsonParser.nextFieldName()` problems when handling
258 names with trailing spaces
259 (reported by matjazs@github)
Tatu Salorantadc2e72f2012-10-05 13:04:07 -0700260
Tatu Salorantaab0269c2012-10-20 13:19:10 -07002612.1.0 (08-Oct-2012)
262
263A new minor version for 2.x.
Tatu Saloranta1adc8982012-03-30 16:47:59 -0700264
Tatu Saloranta84101d72012-05-14 22:16:28 -0700265New features:
266
Tatu Salorantae6dfc692012-09-28 15:34:05 -0700267* [Issue#14]: add 'readBinaryValue(...)' method in JsonParser
268* [Issue#16]: add 'writeBinary(InputStream, int)' method in JsonGenerator
Tatu Salorantad80a2d02012-06-11 20:37:35 -0700269 (and implement for JSON backend)
Tatu Salorantae6dfc692012-09-28 15:34:05 -0700270* [Issue#26]: Allow overriding "root value separator"
271 (suggested by Henning S)
Tatu Salorantae53c3a92012-05-23 20:07:23 -0700272
Tatu Salorantadc2e72f2012-10-05 13:04:07 -0700273Improvements:
274
275* [JACKSON-837]: Made JsonGenerator implement Flushable.
276 (suggested by Matt G)
277* [Issue#10]: add 'JsonProcessingException.getOriginalMessage()' for accessing
278 message without location info
279* [Issue#31]: make `JsonFactory` java.io.Serializable (via JDK)
280
Tatu Salorantaeeb2fbd2012-05-28 22:00:08 -0700281Other:
282
Tatu Salorantafeaabd12012-07-22 23:03:41 -0700283* [Issue-25]: Add 'createParser' and 'createGenerator' (as eventual replacements
Tatu Salorantaeeb2fbd2012-05-28 22:00:08 -0700284 for 'createJsonParser'/'createJsonGenerator') in 'JsonFactory'
Tatu Saloranta9c9622d2012-07-24 18:37:03 -0700285* Try to improve locking aspects of symbol tables, by reducing scope of
286 synchronized sections when creating, merging table contents.
Tatu Saloranta378ecdc2012-08-04 16:27:27 -0700287* Added 'JsonFactory.copy()' method to support databinding's 'ObjectMapper.copy()'
Tatu Salorantaad2df5f2012-08-22 20:55:49 -0700288* Added method 'requiresCustomCodec()' for JsonFactory and JsonParser
Tatu Saloranta5ad18ff2012-09-22 16:00:57 -0700289* Added 'JsonParser.getValueAsString()' method (to support flexible conversions)
Tatu Saloranta1344de92012-10-05 21:13:21 -0700290* Added META-INF/services/com.fasterxml.jackson.core.JsonFactory SPI to register
291 `JsonFactory` for even more automatic format discovery in future.
Tatu Salorantaeeb2fbd2012-05-28 22:00:08 -0700292
Tatu Saloranta34098342012-07-15 11:02:23 -07002932.0.4 (26-Jun-2012)
294
295Fixes:
296
297* [Issue-6] PrettyPrinter, count wrong for end-object case
298* 1.9.x fixes up to 1.9.8
299
3002.0.3: skipped; only some modules use this version
301
Tatu Saloranta9a362442012-05-14 19:42:15 -07003022.0.2 (14-May-2012)
303
Tatu Saloranta34098342012-07-15 11:02:23 -0700304* 1.9.x fixes up to 1.9.7
Tatu Saloranta9a362442012-05-14 19:42:15 -0700305
Tatu Saloranta93402042012-04-30 18:41:17 -07003062.0.1 (22-Apr-2012)
307
308Fixes:
309
310* [JACKSON-827] Fix incompatibilities with JDK 1.5 (2.0.0 accidentally
311 required 1.6)
312 (reported Pascal G)
313
Tatu Saloranta1adc8982012-03-30 16:47:59 -07003142.0.0 (25-Mar-2012)
Tatu Saloranta1f6e1fb2012-01-17 22:29:27 -0800315
316Fixes:
317
Tatu Saloranta5e69eec2012-03-25 11:52:34 -0700318(all fixes up until 1.9.6)
319
Tatu Saloranta1f6e1fb2012-01-17 22:29:27 -0800320Improvements
321
Tatu Saloranta9fc55aa2012-01-18 17:26:28 -0800322* [JACKSON-730]: Add checks to ensure that Features are applicable for
323 instances (parsers, generators), or if not, throw IllegalArgumentException
Tatu Saloranta1f6e1fb2012-01-17 22:29:27 -0800324* [JACKSON-742]: Add append-methods in SerializableString
325
326New features:
327
Tatu Saloranta487fe102012-02-20 17:53:26 -0800328* [JACKSON-782]: Add 'JsonParser.overrideCurrentName()', needed as a workaround
329 for some exotic data binding cases (and/or formats)
330
Tatu Saloranta1f6e1fb2012-01-17 22:29:27 -0800331[entries for versions 1.x and earlier not retained; refer to earlier releases)