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

File Contents

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