ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/JSON-XS/Changes
(Generate patch)

Comparing JSON-XS/Changes (file contents):
Revision 1.84 by root, Mon Oct 15 01:22:34 2007 UTC vs.
Revision 1.120 by root, Mon Sep 29 03:09:27 2008 UTC

1Revision history for Perl extension JSON::XS 1Revision history for Perl extension JSON::XS
2
32.23 Mon Sep 29 05:08:29 CEST 2008
4 - fix a compilation problem when perl is not using char * as, well,
5 char *.
6 - use PL_hexdigit in favour of rolling our own.
7
82.2222 Sun Jul 20 18:49:00 CEST 2008
9 - same game again, broken 5.10 finds yet another assertion
10 failure, and the workaround causes additional runtime warnings.
11 Work around the next assertion AND the warning. 5.10 seriously
12 needs to adjust it's attitude against working code.
13
142.222 Sat Jul 19 06:15:34 CEST 2008
15 - you work around one -DDEBUGGING assertion bug in perl 5.10
16 just to hit the next one. work around this one, too.
17
182.22 Tue Jul 15 13:26:51 CEST 2008
19 - allow higher nesting levels in incremental parser.
20 - error out earlier in some cases in the incremental parser
21 (as suggested by Yuval Kogman).
22 - improve incr-parser test (Yuval Kogman).
23
242.21 Tue Jun 3 08:43:23 CEST 2008
25 - (hopefully) work around a perl 5.10 bug with -DDEBUGGING.
26 - remove the experimental status of the incremental parser interface.
27 - move =encoding around again, to avoid bugs with search.cpan.org.
28 when can we finally have utf-8 in pod???
29 - add ->incr_reset method.
30
312.2 Wed Apr 16 20:37:25 CEST 2008
32 - lifted the log2 rounding restriction of max_depth and max_size.
33 - make booleans mutable by creating a copy instead of handing out
34 the same scalar (reported by pasha sadri).
35 - added support for incremental json parsing (still EXPERIMENTAL).
36 - implemented and added a json_xs command line utility that can convert
37 from/to a number of serialisation formats - tell me if you need more.
38 - implement allow_unknown/get_allow_unknown methods.
39 - fixed documentation of max_depth w.r.t. higher and equal.
40 - moved down =encoding directive a bit, too much breaks if it's the first
41 pod directive :/.
42 - removed documentation section on other modules, it became somewhat
43 outdated and is nowadays mostly of historical interest.
44
452.1 Wed Mar 19 23:23:18 CET 2008
46 - update documentation here and there: add a large section
47 about utf8/latin1/ascii flags, add a security consideration
48 and extend and clarify the JSON and YAML section.
49 - medium speed enhancements when encoding/decoding non-ascii chars.
50 - minor speedup in number encoding case.
51 - extend and clarify the section on incompatibilities
52 between YAML and JSON.
53 - switch to static inline from just inline when using gcc.
54 - add =encoding utf-8 to the manpage, now that perl 5.10 supports it.
55 - fix some issues with UV to JSON conversion of unknown impact.
56 - published the yahoo locals search result used in benchmarks as the
57 original url changes so comparison is impossible.
58
592.01 Wed Dec 5 11:40:28 CET 2007
60 - INCOMPATIBLE API CHANGE: to_json and from_json have been
61 renamed to encode_json/decode_json for JSON.pm compatibility.
62 The old functions croak and might be replaced by JSON.pm
63 comaptible versions in some later release.
64
652.0 Tue Dec 4 11:30:46 CET 2007
66 - this is supposed to be the first version of JSON::XS
67 compatible with version 2.0+ of the JSON module.
68 Using the JSON module as frontend to JSON::XS should be
69 as fast as using JSON::XS directly, so consider using it
70 instead.
71 - added get_* methods for all "simple" options.
72 - make JSON::XS subclassable.
73
741.53 Tue Nov 13 23:58:33 CET 2007
75 - minor doc clarifications.
76 - fixed many doc typos (patch by Thomas L. Shinnick).
2 77
31.52 Mon Oct 15 03:22:06 CEST 2007 781.52 Mon Oct 15 03:22:06 CEST 2007
4 - remove =encoding pod directive again, it confuses too many pod 79 - remove =encoding pod directive again, it confuses too many pod
5 parsers :/. 80 parsers :/.
6 81
71.51 Sat Oct 13 03:55:56 CEST 2007 821.51 Sat Oct 13 03:55:56 CEST 2007
8 - encode empty arrays/hashes in a compact way when pretty is enabled. 83 - encode empty arrays/hashes in a compact way when pretty is enabled.
9 - apperently JSON::XS was used to find some bugs in the 84 - apparently JSON::XS was used to find some bugs in the
10 JSON_checker testsuite, so add (the corrected) JSON_checker tests to 85 JSON_checker testsuite, so add (the corrected) JSON_checker tests to
11 the testsuite. 86 the testsuite.
12 - quite a bit of doc updates/extension. 87 - quite a bit of doc updates/extension.
13 - require 5.8.2, as this seems to be the first unicode-stable version. 88 - require 5.8.2, as this seems to be the first unicode-stable version.
14 89
195 case the called functions do... stuff. 270 case the called functions do... stuff.
196 - croak when encoding to ascii and an out-of-range 271 - croak when encoding to ascii and an out-of-range
197 (non-unicode) codepoint is encountered. 272 (non-unicode) codepoint is encountered.
198 273
1990.2 Fri Mar 23 00:23:34 CET 2007 2740.2 Fri Mar 23 00:23:34 CET 2007
200 - the "could not sleep without debuggign release". 275 - the "could not sleep without debugging release".
201 it should basically work now, with many bugs as 276 it should basically work now, with many bugs as
202 no production tests have been run yet. 277 no production tests have been run yet.
203 - added more testcases. 278 - added more testcases.
204 - the expected shitload of bugfixes. 279 - the expected shitload of bugfixes.
205 - handle utf8 flag correctly in decode. 280 - handle utf8 flag correctly in decode.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines