forked from klaussfreire/python-cjson
-
Notifications
You must be signed in to change notification settings - Fork 3
/
ChangeLog
65 lines (49 loc) · 2.29 KB
/
ChangeLog
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
Changes in version 1.2.1
------------------------
* Updated project homepage
Changes in version 1.2.0
------------------------
* Implemented recursion limit check for encoding/decoding arrays and objects
* Updated copyright years and stripped licensing info from source code
Changes in version 1.1.0
------------------------
* Use repr instead of str when encoding floats to preserve full preicision
* Fixed windows compilation problem introduced in 1.0.5
* Fixed float write test to work with latest high precision float encoding
* Fixed some list/dict decoding bugs. Use a state machine for decoding them.
* Improved decoding speed by using PyString_GET_SIZE instead of strlen
* Integrate modified 0001-fix-for-CVE-2010-1666 patch from Debian
Changes in version 1.0.5
------------------------
* Check if module initialization failed.
* Removed useless checks on module initialization.
* Added __version__ attribute to the cjson module.
* Call Py_INCREF before calling PyModule_AddObject.
Changes in version 1.0.4
------------------------
* Added licensing information.
* Fixed issue with decrementing a string reference too early
(Edouard Hinard <[email protected]>).
* Fixed 64-bit portability problems (based on a modified version of a
patch by David Rushby <[email protected]>).
* Fixed issue with not returning NULL after setting the OverflowError
when encoded strings would be too big.
* Fixed 2 potential buffer overflow errors when encoding string/unicode
(thanks to Ofer Faigon <[email protected]> for pointing them out).
* About 10% speed improvement when encoding/decoding string/unicode.
Changes in version 1.0.3
------------------------
* Updated the function docstrings to include information about the
available optional arguments and their meaning.
Changes in version 1.0.2
------------------------
* Define INFINITY and NAN if missing as they are not available on all
platforms.
* Define Py_IS_NAN if missing as python2.3 doesn't have it.
* Removed min and max macros as they were no used.
* Remove cjson.so and the build directory on debuild clean.
Changes in version 1.0.1
------------------------
* Clean some more leftovers on debuild clean.
* Removed unused import in setup.py
* Fixed function comment.