~ubuntu-branches/ubuntu/saucy/sope/saucy

« back to all changes in this revision

Viewing changes to sope-json/SBJson/Changes.markdown

  • Committer: Package Import Robot
  • Author(s): Jeroen Dekkers
  • Date: 2012-05-09 15:39:17 UTC
  • Revision ID: package-import@ubuntu.com-20120509153917-nr4jlm8mktma1yv3
Tags: upstream-1.3.14
Import upstream version 1.3.14

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# JSON Framework Changes
 
2
 
 
3
## Version 2.3.1 (September 25th, 2010)
 
4
 
 
5
### Changes
 
6
 
 
7
* Renamed .md files to .markdown.
 
8
* Removed bench target--use [Sam Soffes's benchmarks][json-benchmark] instead.
 
9
 
 
10
[json-benchmark]: http://github.com/samsoffes/json-benchmark
 
11
 
 
12
### Bug fixes
 
13
 
 
14
* [Issue 2][issue#2]: Linkage not supported by default distribution.
 
15
* [Issue 4][issue#4]: Writer reported to occasionally fail infinity check.
 
16
* [Issue 8][issue#8]: Installation.markdown refers to missing JSON folder.
 
17
 
 
18
[issue#2]: http://github.com/stig/json-framework/issues/closed/#issue/2
 
19
[issue#4]: http://github.com/stig/json-framework/issues/closed/#issue/4
 
20
[issue#8]: http://github.com/stig/json-framework/issues/closed/#issue/8
 
21
 
 
22
## Version 2.3 (August 7, 2010)
 
23
 
 
24
* Renamed README.md to Readme.md
 
25
* Updated version number
 
26
 
 
27
## Version 2.3beta1 (July 31, 2010)
 
28
 
 
29
### Changes
 
30
 
 
31
* **Parsing performance improvements.**  
 
32
[Issue 56][issue-56]: Dewvinci & Tobias Hoehmann came up with a patch to improve parsing of short JSON texts with lots of numbers by over 60%.
 
33
* **Refactored tests to be more data-driven.**  
 
34
This should make the source leaner and easier to maintain.
 
35
* **Removed problematic SDK**  
 
36
[Issue 33][issue-33], [58][issue-58], [63][issue-63], and [64][issue-64]: The vast majority of the issues people are having with this framework were related to the somewhat mystical Custom SDK. This has been removed in this version. 
 
37
* **Removed the deprecated SBJSON facade**  
 
38
[Issue 71][issue-71]: You should use the SBJsonParser or SBJsonWriter classes, or the category methods, instead. This also let us remove the SBJsonParser and SBJsonWriter categories; these were only there to support the facade, but made the code less transparent.
 
39
* **Removed the deprecated fragment support**  
 
40
[Issue 70][issue-70]: Fragments were a bad idea from the start, but deceptively useful while writing the framework's test suite. This has now been rectified. 
 
41
 
 
42
[issue-56]: http://code.google.com/p/json-framework/issues/detail?id=56
 
43
[issue-33]: http://code.google.com/p/json-framework/issues/detail?id=33
 
44
[issue-58]: http://code.google.com/p/json-framework/issues/detail?id=58
 
45
[issue-63]: http://code.google.com/p/json-framework/issues/detail?id=63
 
46
[issue-64]: http://code.google.com/p/json-framework/issues/detail?id=64
 
47
[issue-70]: http://code.google.com/p/json-framework/issues/detail?id=70
 
48
[issue-71]: http://code.google.com/p/json-framework/issues/detail?id=71
 
49
 
 
50
 
 
51
### Bug Fixes
 
52
 
 
53
* [Issue 38][issue-38]: Fixed header-inclusion issue.
 
54
* [Issue 74][issue-74]: Fix bug in handling of Infinity, -Infinity & NaN.
 
55
* [Issue 68][issue-68]: Fixed documentation bug
 
56
 
 
57
[issue-38]: http://code.google.com/p/json-framework/issues/detail?id=39
 
58
[issue-74]: http://code.google.com/p/json-framework/issues/detail?id=74
 
59
[issue-68]: http://code.google.com/p/json-framework/issues/detail?id=68
 
60
 
 
61
 
 
62
## Version 2.2.3 (March 7, 2010)
 
63
 
 
64
* **Added -all_load to libjsontests linker flags.**  
 
65
This allows the tests to run with more recent versions of GCC.
 
66
* **Unable to do a JSONRepresentation for a first-level proxy object.**  
 
67
[Issue 54][issue-54] & [60][issue-60]: Allow the -proxyForJson method to be called for first-level proxy objects, in addition to objects that are embedded in other objects. 
 
68
 
 
69
[issue-54]: http://code.google.com/p/json-framework/issues/detail?id=54
 
70
[issue-60]: http://code.google.com/p/json-framework/issues/detail?id=60
 
71
 
 
72
## Version 2.2.2 (September 12, 2009)
 
73
 
 
74
* **Fixed error-reporting logic in category methods.**  
 
75
Reported by Mike Monaco.
 
76
* **iPhone SDK built against iPhoneOS 3.0.**  
 
77
This has been updated from 2.2.1.
 
78
 
 
79
## Version 2.2.1 (August 1st, 2009)
 
80
 
 
81
* **Added svn:ignore property to build directory.**  
 
82
Requested by Rony Kubat.
 
83
* **Fixed potential corruption in category methods.**  
 
84
If category methods were used in multiple threads they could potentially cause a crash. Reported by dprotaso / Relium.
 
85
 
 
86
## Version 2.2 (June 6th, 2009)
 
87
 
 
88
No changes since 2.2beta1.
 
89
 
 
90
## Version 2.2beta1 (May 30th, 2009)
 
91
 
 
92
* **Renamed method for custom object support**  
 
93
Renamed the -jsonRepresentationProxy method to -proxyForJson.
 
94
 
 
95
## Version 2.2alpha5 (May 25th, 2009)
 
96
 
 
97
* **Added support for custom objects (generation only)**  
 
98
Added an optional -jsonRepresentationProxy method that you can implement (either directly or as category) to enable JSON.framework to create a JSON representation of any object type. See the Tests/ProxyTest.m file for more information on how this works.
 
99
* **Moved maxDepth to SBJsonBase**  
 
100
Throw errors when the input is nested too deep for writing json as well as parsing. This allows us to exit cleanly rather than break the stack if someone accidentally creates a recursive structure.
 
101
 
 
102
## Version 2.2alpha4 (May 21st, 2009)
 
103
 
 
104
* **Renamed protocols and moved method declarations**  
 
105
Renamed SBJsonWriterOptions and SBJsonParserOptions protocols to be the same as their primary implementations and moved their one public method there.
 
106
* **Implemented proxy methods in SBJSON**  
 
107
This facade now implements the same methods as the SBJsonWriter and SBJsonParser objects, and simply forwards to them.
 
108
* **Extracted private methods to private protocol**  
 
109
Don't use these please.
 
110
* **Improved documentation generation**  
 
111
Classes now inherit documentation from their superclasses and protocols they implement.
 
112
 
 
113
## Version 2.2alpha3 (May 16th, 2009)
 
114
 
 
115
* **Reintroduced the iPhone Custom SDK**  
 
116
For the benefit of users who prefer not to copy the JSON source files into their project. Also updated it to be based on iPhoneOS v2.2.1.
 
117
* **Deprecated methods for dealing with fragments**  
 
118
Tweaked the new interface classes to support the old fragment-methods one more version.
 
119
 
 
120
## Version 2.2alpha2 (May 11th, 2009)
 
121
 
 
122
* **Added a Changes file.**  
 
123
So people can see what the changes are for each version without having to go to the project home page.
 
124
* **Updated Credits.**  
 
125
Some people that have provided patches (or other valuable contributions) had been left out. I've done my best to add those in. (If you feel that you or someone else are still missing, please let me know.)
 
126
* **Removed .svn folders from distribution.**  
 
127
The JSON source folder had a .svn folder in it, which could have caused problems when dragging it into your project.
 
128
 
 
129
## Version 2.2alpha1 (May 10th, 2009)
 
130
 
 
131
* **Improved installation instructions, particularly for the iPhone.**  
 
132
Getting the SDK to work properly in all configurations has proved to be a headache. Therefore the SDK has been removed in favour of instructions for simply copying the source files into your project.
 
133
* **Split the SBJSON class into a writer and parser class.**  
 
134
SBJSON remains as a facade for backwards compatibility. This refactoring also quashed warnings reported by the Clang static analyser.
 
135
* **Improved interface for dealing with errors.**  
 
136
Rather than having to pass in a pointer to an NSError object, you can now simply call a method to get the error stack back if there was an error. (The NSError-based API remains in the SBJSON facade, but is not present in the new classes.)
 
137
* **Documentation updates.**  
 
138
Minor updates to the documentation.
 
139
 
 
140
Release notes for earlier releases can be found here:
 
141
http://code.google.com/p/json-framework/wiki/ReleaseNotes
 
142