- (#57) Added support for AMD and CommonJS loading.
- (#66) build: Switch to UglifyJS for better minification (2.3kb -> 1.9kb).
- Published to npm.
- Compatible with jQuery 1.11.
- Moved project from Google Code to GitHub: https://github.com/Krinkle/jquery-json/releases.
- (#50) Inherited properties should be left out.
- (#51) Use
hasOwnProperty
from the Object prototype to guard against objects with a property by the name "hasOwnProperty". - (#59) Array detection should not use
.constructor
(broken in IE9). Also fixed for Date object detection. - (#60) Constructed/Instantiated primitives should be stringified like their primitive equivalents.
- (#56) Fixed spelling errors in documentation comments.
- Improved build and unit test process.
- (#49) Improved performance by use direct reference to the native API.
Methods
$.toJSON
,$.evalJSON
and$.secureEvalJSON
will link directly to the nativeJSON.stringify
andJSON.parse
, no longer checks on every call. - (#48) Minor performance improvements by not executing a typeof check if the result is not used.
- (#27) Object members with value of type "undefined" should be omitted.
- Reorganized testing environment (now using QUnit).
- Code clean up and JSHint validation (Yay!).
- Fixed exception thrown in WebKit browsers.
- Fixed a problem in how it was representing arrays and undefined values.
- Fixed a bug where dates weren't converting correctly.
- The code has been re-written. It is now easier to read and follow; less of a mish-mash.
- Support for native JSON has been included. This means that if you are using a browser that supports JSON.stringify, it will be used. Also evalJSON and secureEvalJSON will use JSON.parse if available.
- Changes were made in the JSON output to match the JSON specification. This means 2.0 is not backwards compatible with the previous versions.
-
$.toJSON now renders like $ .compactJSON used to and$.compactJSON has been removed. As per the JSON specification, needless spaces are now removed. This makes it less readable; patches for a $ .prettyJSON are welcome! - Differences between output when JSON.stringify is available and when it is not could exist. I am unable to test all strings. Be aware of this when testing your application.