This repository has been archived by the owner on Feb 29, 2024. It is now read-only.
Releases: Krinkle/jquery-json
Releases · Krinkle/jquery-json
jQuery JSON plugin v2.6.0
jQuery JSON plugin v2.5.1
- (#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.
jQuery JSON plugin v2.4.0
- (#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.
jQuery JSON plugin v2.3.0
- (#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!).