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

Comparing JSON-XS/Changes (file contents):
Revision 1.58 by root, Mon Jun 25 06:57:42 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 2
3TODO: blessed object tests + maxsize 32.23 Mon Sep 29 05:08:29 CEST 2008
41.4 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).
77
781.52 Mon Oct 15 03:22:06 CEST 2007
79 - remove =encoding pod directive again, it confuses too many pod
80 parsers :/.
81
821.51 Sat Oct 13 03:55:56 CEST 2007
83 - encode empty arrays/hashes in a compact way when pretty is enabled.
84 - apparently JSON::XS was used to find some bugs in the
85 JSON_checker testsuite, so add (the corrected) JSON_checker tests to
86 the testsuite.
87 - quite a bit of doc updates/extension.
88 - require 5.8.2, as this seems to be the first unicode-stable version.
89
901.5 Tue Aug 28 04:05:38 CEST 2007
91 - add support for tied hashes, based on ideas and testcase by
92 Marcus Holland-Moritz.
93 - implemented relaxed parsing mode where some extensions are being
94 accepted. generation is still JSON-only.
95
961.44 Wed Aug 22 01:02:44 CEST 2007
97 - very experimental process-emulation support, slowing everything down.
98 the horribly broken perl threads are still not supported - YMMV.
99
1001.43 Thu Jul 26 13:26:37 CEST 2007
101 - convert big json numbers exclusively consisting of digits to NV
102 only when there is no loss of precision, otherwise to string.
103
1041.42 Tue Jul 24 00:51:18 CEST 2007
105 - fix a crash caused by not handling missing array elements
106 (report and testcase by Jay Kuri).
107
1081.41 Tue Jul 10 18:21:44 CEST 2007
109 - fix compilation with NDEBUG (assert side-effect),
110 affects convert_blessed only.
111 - fix a bug in decode filters calling ENTER; SAVETMPS;
112 one time too often.
113 - catch a typical error in TO_JSON methods.
114 - antique-ised XS.xs again to work with outdated
115 C compilers (windows...).
116
1171.4 Mon Jul 2 10:06:30 CEST 2007
5 - add convert_blessed option. 118 - add convert_blessed setting.
6 - encode did not catch all blessed objects, encoding their 119 - encode did not catch all blessed objects, encoding their
7 contents in most cases. This has been fixed by introducing 120 contents in most cases. This has been fixed by introducing
8 the allow_blessed setting. 121 the allow_blessed setting.
122 - added filter_json_object and filter_json_single_key_object
123 settings that specify a callback to be called when
124 all/specific json objects are encountered.
125 - assume that most object keys are simple ascii words and
126 optimise this case, penalising the general case. This can
127 speed up decoding by 30% in typical cases and gives
128 a smaller and faster perl hash.
9 - implemented simpleminded, optional resource size checking 129 - implemented simpleminded, optional resource size checking
10 in decode_json. 130 in decode_json.
131 - remove objToJson/jsonToObj aliases, as the next version
132 of JSON will not have them either.
133 - bit the bullet and converted the very simple json object
134 into a more complex one.
135 - work around a bug where perl wrongly claims an integer
136 is not an integer.
137 - unbundle JSON::XS::Boolean into own pm file so Storable
138 and similar modules can resolve the overloading when thawing.
11 139
121.3 Sun Jun 24 01:55:02 CEST 2007 1401.3 Sun Jun 24 01:55:02 CEST 2007
13 - make JSON::XS::true and false special overloaded objects 141 - make JSON::XS::true and false special overloaded objects
14 and return those instead of 1 and 0 for those json atoms 142 and return those instead of 1 and 0 for those json atoms
15 (JSON::PP compatibility is NOT achieved yet). 143 (JSON::PP compatibility is NOT achieved yet).
16 - add JSON::XS::is_bool predicate to test for those special 144 - add JSON::XS::is_bool predicate to test for those special
17 values. 145 values.
18 - add a reference to 146 - add a reference to
19 http://jpsykes.com/47/practical-csrf-and-json-security. 147 http://jpsykes.com/47/practical-csrf-and-json-security.
20 - removed require 5.8.8 again, it just not very expert-friendly, 148 - removed require 5.8.8 again, it is just not very expert-friendly.
21 and try to be more compatible with slightly older versions, 149 Also try to be more compatible with slightly older versions,
22 which are not recommended (because they are buggy). 150 which are not recommended (because they are buggy).
23 151
241.24 Mon Jun 11 05:40:49 CEST 2007 1521.24 Mon Jun 11 05:40:49 CEST 2007
25 - added informative section on JSON-as-YAML. 153 - added informative section on JSON-as-YAML.
26 - get rid of some c99-isms again. 154 - get rid of some c99-isms again.
142 case the called functions do... stuff. 270 case the called functions do... stuff.
143 - croak when encoding to ascii and an out-of-range 271 - croak when encoding to ascii and an out-of-range
144 (non-unicode) codepoint is encountered. 272 (non-unicode) codepoint is encountered.
145 273
1460.2 Fri Mar 23 00:23:34 CET 2007 2740.2 Fri Mar 23 00:23:34 CET 2007
147 - the "could not sleep without debuggign release". 275 - the "could not sleep without debugging release".
148 it should basically work now, with many bugs as 276 it should basically work now, with many bugs as
149 no production tests have been run yet. 277 no production tests have been run yet.
150 - added more testcases. 278 - added more testcases.
151 - the expected shitload of bugfixes. 279 - the expected shitload of bugfixes.
152 - handle utf8 flag correctly in decode. 280 - handle utf8 flag correctly in decode.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines