1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
|
0.62 2022-07-16
* Bug fix for tokenize with backslash-double quote
0.61 2021-02-11
* Add upgrade_utf8 method
0.60 2021-01-26
* Add "read" method to read a file from an object
* Rename "run" to "parse" (old name is still OK)
* "tokenize_child" no longer returns parent on failure
* Add JSON::Whitespace (manipulate JSON whitespace) to the module
0.59 2021-01-26
* "json_file_to_perl" renamed "read_json"
* Documentation work
-- Benchmarks section updated with latest versions, add Cpanel::JSON::XS
-- Add Metacpan vote ratings to other CPAN modules section
-- Sections reordered to put methods above parsing details
0.58 2021-01-01
* Protect against stack overflows by having maximum parsing depth
-- set_max_depth, get_max_depth methods added
* Documentation updated
-- JSON RFC changed to 8259
-- Discussion of Unicode tests in JSON Test Suite
0.57 2020-07-09
* Bug fix for long strings
0.56 2020-02-06
* Allow build on Solaris and SunOS
0.55_02 2019-01-24
* For testing of Daxim segfault through CPAN testers
0.55 2017-10-21
* Versions synchronised
* Memory problem on Cygwin addressed
0.54 2017-10-20
* Refuse to support Solaris
0.53 2017-10-18
* Windows build fix
0.52 2017-10-18
* Removed unnecessary test
0.50 2017-10-18
* tokenize_text method added to JSON::Tokenize
0.49 2016-11-26
* Behaviour for undefined, whitespace-only inputs was altered
* JSON Parsing Test Suite compliance
0.48 2016-11-20
* Add "check" method for the benefit of JSON::Repair
0.47 2016-11-16
* Bug fixes for Perl 12 and earlier regarding diagnostics_hash method
0.46 2016-11-16
* Remove experimental feature $json_diagnostics
* Add diagnostics_hash method as a replacement for $json_diagnostics
* Better warnings for parse_json_safe
* Add the examples directory files to the CPAN distribution
* Documentation rewrites
0.45 2016-11-15
* Remove non-functioning JSON::Whitespace module from CPAN distribution
0.44 2016-11-13
* Add a primitive interface to JSON::Tokenize
* Document the JSON::Tokenize interface
0.43 2016-11-05
* Remove validjson dependence on Path::Tiny.
* Produce better outputs from validjson script
0.42 2016-08-22
* Long string copying bug fixed.
0.41 2016-06-14
* Implement "warn_only"
* Documentation clarifications
0.40 2016-05-22
* Compilation warning, possible memory leaks (SHLOMIF)
0.39 2015-11-18
* Fix for 64 bit
* Changed error message documentation to machine-readable
0.38 2015-10-30
* Add object interface for more flexible parsing.
* Add "parse_json_safe" with no exceptions and hash collision detection.
* Add choice to copy literals.
* Better documentation of changes and examples
0.37 2015-10-29
* Remove $JSON::Parse::true and false, use &PL_sv_yes and &PL_sv_no instead.
0.36 2015-10-24
* Document and install "validjson" script.
* Document the "$JSON::Parse::json_diagnostics" global variable.
0.35 2015-10-19
* Minor documentation changes
0.34 2015-10-19
* Document key collisions
* Extend SEE ALSO section on other JSON modules on CPAN.
0.33 2015-10-09
* Memory leak plug
* Small speed improvements
* Minor bug about commas after bare values
* Documentation rewritten to clarify changes in 0.32 and testing.
0.32 2015-07-29
* Update to accept bare values, per RFC 7159.
0.31 2014-12-07
* Make sure to cast to STRLEN in newSVpv(n) calls.
* Remove reference to deleted Google Group from documentation.
0.30 2014-03-23
* Prototypes removed from functions
* Documentation rewrites
* Changes to compile on Darwin OS
* Use "assert_valid_json" in DIAGNOSTICS section of pod.
0.29 2013-12-25
* UTF-8 validation in strings
* Number, object, array parsing improvements
* Fewer error messages & documented (see DIAGNOSTICS in pod)
* Testing done with random input to root out problems (see TESTING in pod)
0.28 2013-12-12
* Change function name from "validate_json" to "assert_valid_json"
(old name is still accepted).
* More tests
* Style of error messages changed for "end of input" errors.
* More error checking for invalid \u escapes.
0.27 2013-12-11
* More thorough checking of input for format errors (missing commas etc.)
* Check for bytes 0x00 - 0x1F in strings and throw error if present
* Don't upgrade \u0000 - \u0080 to character strings
* Documentation rewrites
0.26 2013-12-10
* Remove core file from distribution.
0.25 2013-12-10
* Fix bug where missing commas were not detected.
* Now parses \uXXXX constructions.
* "valid_json" now back to being a fast validator.
* Add new "validate_json", a fast, exception throwing validator.
* Surrogate pairs now handled (tentative)
* Upgrade \uXXXX to character string.
0.24 2013-11-27
* Update "Changes" to conform to CPAN::Changes::Spec
0.23 2013-09-15
0.22 2013-08-26
* Typos and minor details in documentation.
* Changes to compile on Microsoft C compiler.
0.21 2013-08-07
* Changes documented.
0.20 2013-08-06
* From-scratch rewrite of module.
0.19 2013-03-15
0.18 2013-03-12
0.17 2013-03-10
0.16 2013-03-08
0.15 2013-03-08
0.14 2012-06-12
0.13 2012-06-12
0.12 2012-06-12
0.11 2012-04-13
0.10 2012-03-17
0.09 2012-03-16
0.07 2011-06-09
0.06 2011-06-02
0.05 2011-05-31
* Changed name from JSON::Argo to JSON::Parse
0.04 2011-05-29
0.03 2011-05-25
0.02 2011-05-25
0.01 2011-05-23
|