ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/JSON-XS/Changes
Revision: 1.21
Committed: Sun Mar 25 21:19:13 2007 UTC (17 years, 1 month ago) by root
Branch: MAIN
Changes since 1.20: +3 -1 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 Revision history for Perl extension JSON::XS
2
3 TODO: maybe simply use \0 and \1 as true/false when encoding (and overloaded/blessed versions thereof on
4 decoding?)
5
6 - fix a memleak when decoding hashes.
7 - export jsonToBj and objToJson as aliases
8 to to_json and from_json, to reduce incompatibilities
9 between JSON/JSON::PC and JSON::XS. (experimental).
10 - implement a maximum nesting depth for both en- and de-coding.
11 - added a security considerations sections.
12
13 0.7 Sun Mar 25 01:46:30 CET 2007
14 - code cleanup.
15 - fix a memory overflow bug when indenting.
16 - pretty-printing now up to 15% faster.
17 - improve decoding speed of strings by
18 up to 50% by specialcasing short strings.
19 - further decoding speedups for strings using
20 lots of \u escapes.
21 - improve utf8 decoding speed for U+80 .. U+7FF.
22
23 0.5 Sat Mar 24 20:41:51 CET 2007
24 - added the UTF-16 encoding example hinted at in previous
25 versions.
26 - minor documentation fixes.
27 - fix a bug in and optimise canonicalising fastpath
28 (reported by Craig Manley).
29 - remove a subtest that breaks with bleadperl (reported
30 by Andreas König).
31
32 0.31 Sat Mar 24 02:14:34 CET 2007
33 - documentation updates.
34 - do some casting to hopefully fix Andreas' problem.
35 - nuke bogus json rpc stuff.
36
37 0.3 Fri Mar 23 19:33:21 CET 2007
38 - remove spurious PApp::Util reference (John McNamara).
39 - adapted lots of tests from other json modules
40 (idea by Chris Carline).
41 - documented mapping from json to perl and vice versa.
42 - improved the documentation by adding more examples.
43 - added short escaping forms, reducing the created
44 json texts a bit.
45 - added shrink flag.
46 - when flag methods are called without enable argument
47 they will by default enable their flag.
48 - considerably improved string encoding speed (at least
49 with gcc 4).
50 - added a test that covers lots of different characters.
51 - clarified some error messages.
52 - error messages now use correct character offset
53 with F_UTF8.
54 - improve the "no bytes" and "no warnings" hacks in
55 case the called functions do... stuff.
56 - croak when encoding to ascii and an out-of-range
57 (non-unicode) codepoint is encountered.
58
59 0.2 Fri Mar 23 00:23:34 CET 2007
60 - the "could not sleep without debuggign release".
61 it should basically work now, with many bugs as
62 no production tests have been run yet.
63 - added more testcases.
64 - the expected shitload of bugfixes.
65 - handle utf8 flag correctly in decode.
66 - fix segfault in decoder.
67 - utf8n_to_uvuni sets retlen to -1, but retlen is an
68 unsigned types (argh).
69 - fix decoding of utf-8 strings.
70 - improved error diagnostics.
71 - fix decoding of 'null'.
72 - fix parsing of empty array/hashes
73 - silence warnings when we prepare the croak message.
74
75 0.1 Thu Mar 22 22:13:43 CET 2007
76 - first release, very untested, basically just to claim
77 the namespace.
78
79 0.01 Thu Mar 22 06:08:12 CET 2007
80 - original version; cloned from Convert-Scalar
81