1. a7168c6 minor javadoc fix by Tatu Saloranta · 9 years ago
  2. 17498b8 Merge branch '2.6' by Tatu Saloranta · 9 years ago
  3. d302ae0 Add deprecation markers for parse, generation exception constructors obsoleted in 2.6 by Tatu Saloranta · 9 years ago
  4. b4067f1 minor reordering of code by Tatu Saloranta · 9 years ago
  5. b4567ca Add a new method in read/write contexts, to allow cleaning up of current value by Tatu Saloranta · 9 years ago
  6. aa73ab7 Merge pull request #237 from DevFactory/release/static-final-arrays-should-be-private-fix-1 by Tatu Saloranta · 9 years ago
  7. 12b3c2b minor cleanup by Tatu Saloranta · 9 years ago
  8. 393052d Merge pull request #236 from DevFactory/release/constructor-calling-overridable-methods-fix-1 by Tatu Saloranta · 9 years ago
  9. 73662a5 Fixing squid:S1873 static final arrays should be "private" by Faisal Hameed · 9 years ago
  10. b18e388 Fixing pmd:RedundantFieldInitializer Redundant Field Initializer by Faisal Hameed · 9 years ago
  11. a5e4f76 Fixing squid:S1699 Constructors should only call non-overridable methods by Faisal Hameed · 9 years ago
  12. 5590fcf Clarified javadocs about charset auto-detection for issue #222 by Dmitry Spikhalskiy · 9 years ago
  13. a77c3de bit more tweaking with location handling code by Tatu Saloranta · 9 years ago
  14. e6f6179 ... by Tatu Saloranta · 9 years ago
  15. bae8621 ... by Tatu Saloranta · 9 years ago
  16. fede6c9 Fix #37 by Tatu Saloranta · 9 years ago
  17. 8d200d4 Fix location handling for byte-backed parser by Tatu Saloranta · 9 years ago
  18. c390e92 work on location update code cleanup by Tatu Saloranta · 9 years ago
  19. ec560f3 Add a failing test for #223 by Tatu Saloranta · 9 years ago
  20. 4195e6e Fix #229 by Tatu Saloranta · 9 years ago
  21. 329756d ... by Tatu Saloranta · 9 years ago
  22. da7f2b7 ... by Tatu Saloranta · 9 years ago
  23. 7c56b00 fix some typos by esanchez · 9 years ago
  24. 294f761 Merge branch '2.6' by Cowtowncoder · 9 years ago
  25. f554808 Merge branch '2.5' into 2.6 by Cowtowncoder · 9 years ago
  26. 5f04c20 Fix #221 (for 2.5) by Cowtowncoder · 9 years ago
  27. 6cbca3d add explicit javac level defs to keep streaming at JDK 1.6 / Java 6 by Cowtowncoder · 9 years ago
  28. 98df182 Backport #220 fix for 2.5(.5) by Tatu Saloranta · 9 years ago
  29. df00f77 Merge branch '2.6' by Cowtowncoder · 9 years ago
  30. 186a639 Fix #220 by Cowtowncoder · 9 years ago
  31. d3f0320 Improve support for std/format feature setting by Tatu Saloranta · 9 years ago
  32. 0d9ca16 Merge branch '2.6' by Cowtowncoder · 9 years ago
  33. be43867 Fix #216: need to retain or recalculate need for rehashing (chose to recalc when unsharing) by Cowtowncoder · 9 years ago
  34. 0a3d1c3 Merge branch '2.6' by Cowtowncoder · 9 years ago
  35. cfeaed0 Fix #213 (name collision for long names, 12+ characters) by Cowtowncoder · 9 years ago
  36. adb9e68 ... by Cowtowncoder · 9 years ago
  37. 2246541 Add Version.isUnknownVersion(), as per #211 by Cowtowncoder · 9 years ago
  38. 77be53c Implement #198: Add back-reference to `JsonParser` (from `JsonParseException`), `JsonGenerator` (from `JsonGenerationException`) by Tatu Saloranta · 9 years ago
  39. f8d8856 Code streamlining; removing internal (non-public) deprecated methods up to 2.5 level by Tatu Saloranta · 9 years ago
  40. 76a4ecc git branch Merge branch 'master' of github.com:FasterXML/jackson-core by Cowtowncoder · 9 years ago
  41. 8fa79a2 minor simplification by Tatu Saloranta · 9 years ago
  42. d445101 undo previous minor change; no perf benefit, and suggestion it might lead to slight degradation (1-2%) by Tatu Saloranta · 9 years ago
  43. 1d170d7 minor fix to make it possible to pre-parse numbers by Cowtowncoder · 9 years ago
  44. 62702d6 Minor change to byte-backed parser, to make reader/byte variants identical wrt name parsing calls by Cowtowncoder · 9 years ago
  45. 8dc1284 Implement `nextFieldName(SerializableString)` efficiently for ReaderBasedJsonParser by Cowtowncoder · 9 years ago
  46. 5f4b48c Javadoc improvement to try to indicate that "getCurrentValue()" is not usable when using pure Streaming API by Cowtowncoder · 9 years ago
  47. c2823b4 Fix #207 by Cowtowncoder · 9 years ago
  48. a71a00e Add the failing test for #207 by Cowtowncoder · 9 years ago
  49. 6f41628 Prepare for 2.6.0-rc4 by Tatu Saloranta · 9 years ago
  50. e8b3b8b minor clean up by Tatu Saloranta · 9 years ago
  51. 76b4c59 Improve reader-based impl JsonParser.nextFieldName() implementation by Tatu Saloranta · 9 years ago
  52. 000e59c Improved test coverage for JsonParser.nextXxx() methods; a related fix to UTF8StreamJsonParser.nextBooleanValue() by Tatu Saloranta · 9 years ago
  53. 35f740f Make JsonGenerator.getOutputBuffered() non-abstract (was accidentally left as abstract after testing) by Tatu Saloranta · 9 years ago
  54. 2e262b9 Baseline work for #196, generic support for format-specific features by Cowtowncoder · 9 years ago
  55. 88c296c Unit test coverage improvements, to get to 70%/60% level (line/branch) for 2.6 by Cowtowncoder · 9 years ago
  56. 46b4f02 Implement #195: Add `JsonGenerator.getOuputBuffered()` by Cowtowncoder · 9 years ago
  57. f93c9c8 Fix #194 by Tatu Saloranta · 9 years ago
  58. e763023 Prepare for 2.6.0-rc1 by Tatu Saloranta · 9 years ago
  59. 4931687 Merge branch 'master' of github.com:FasterXML/jackson-core by Cowtowncoder · 9 years ago
  60. cbdf650 remove `final` from `ParserMinimalBase` implementations by Tatu Saloranta · 9 years ago
  61. 7f7d10a Fix a newly found issue with parser filtering by Cowtowncoder · 9 years ago
  62. 0aa9cae ... by Tatu Saloranta · 9 years ago
  63. 3d0b3a9 Add ResolvedType.getReferencedType() by Tatu Saloranta · 9 years ago
  64. 25aebcc Merge branch 'master' of github.com:FasterXML/jackson-core by Cowtowncoder · 9 years ago
  65. 8891c0c Fix #189: add `JsonFactory.Feature.USE_THREAD_LOCAL_FOR_BUFFER_RECYCLING` (default: enabled) by Tatu Saloranta · 9 years ago
  66. b808f26 more fixes to parser filtering by Cowtowncoder · 9 years ago
  67. ac4b449 fix to parser filtering, arrays by Cowtowncoder · 9 years ago
  68. 5e3d980 Merge branch '2.5' by Tatu Saloranta · 9 years ago
  69. 6a63752 Fixed #191 by Tatu Saloranta · 9 years ago
  70. cfe32d0 Cleaning up filtering, to disable use of "include immediate parent" for properties; not useful, complicates things. by Tatu Saloranta · 9 years ago
  71. 81ca3ce Remove accidentally expanded static imports by Cowtowncoder · 9 years ago
  72. 3222428 Further fixes to parser filtering by Cowtowncoder · 9 years ago
  73. df52157 More fixing, testing, for parser-filtering by Cowtowncoder · 9 years ago
  74. c17c356 and another fix to make second test pass as well by Cowtowncoder · 9 years ago
  75. 654acf0 Fixes to parser-filtering, first test now passes by Cowtowncoder · 9 years ago
  76. f6d583d Bit more work on filtering parser, getting close to working for the simplest use case by Tatu Saloranta · 9 years ago
  77. b1ac057 Incremental work for parser-filtering by Tatu Saloranta · 9 years ago
  78. 404aebc more work on parsing-filter side; not complete. by Tatu Saloranta · 9 years ago
  79. b46e037 another small fix to generator-side filteirng by Tatu Saloranta · 9 years ago
  80. c9a3e86 minor fix to generator-side filtering by Tatu Saloranta · 9 years ago
  81. ce077d4 ... by Tatu Saloranta · 9 years ago
  82. 37d0d6e ... more on filtering by Cowtowncoder · 9 years ago
  83. 9a797fb Merge branch 'master' of github.com:FasterXML/jackson-core by Cowtowncoder · 9 years ago
  84. 0090031 more work on filtering by Cowtowncoder · 9 years ago
  85. 5a5d119 Minor clean up for filtering by Tatu Saloranta · 9 years ago
  86. ac9fa8d Fixes to array filtering with generator by Tatu Saloranta · 9 years ago
  87. 8332213 Add more testing, fix a problem with array checks by Tatu Saloranta · 9 years ago
  88. dfd6909 Add skeletal FilteringParserDelegate, to (eventually) add filtering on parser too by Tatu Saloranta · 9 years ago
  89. 990a909 javadoc improvemtns for generator filtering by Tatu Saloranta · 9 years ago
  90. b4b7a7e add impl, tests for JsonPointer-based generator filter by Cowtowncoder · 9 years ago
  91. 10ac263 More tests, fixes, for inclusion of array elements. by Cowtowncoder · 9 years ago
  92. 0e53535 Remaining fixes to make initial tests work 100% by Cowtowncoder · 9 years ago
  93. 65df442 another minor (but important) fix for output filtering by Cowtowncoder · 9 years ago
  94. d1ec5b7 Fix a problem with filtering by Cowtowncoder · 9 years ago
  95. d04bea9 improving filering tests by Tatu Saloranta · 9 years ago
  96. 29e8dc3 Incremental work for filtering generation by Tatu Saloranta · 9 years ago
  97. c77847e Rewrite filtering to use filters themselves instead of value tokens. by Tatu Saloranta · 9 years ago
  98. 467daea Incremental work, getting closer by Tatu Saloranta · 9 years ago
  99. 9f7cc68 getting closer to working filtering by Tatu Saloranta · 9 years ago
  100. 1eb7e2a ... working on generator filtering, close to first full version by Tatu Saloranta · 9 years ago