2014-03-14 19:11:45 by Takahiro Kambe | Files touched by this commit (5) |
Log message:
Update ruby-json and ruby-json-pure package to 1.8.1.
2013-05-13 (1.8.1)
* Remove Rubinius exception since transcoding should be working now.
|
2014-03-13 12:08:54 by Jonathan Perkin | Files touched by this commit (67) |
Log message:
Set USE_GCC_RUNTIME=yes for packages which build shared libraries but do
not use libtool to do so. This is required to correctly depend upon a
gcc runtime package (e.g. gcc47-libs) when using USE_PKGSRC_GCC_RUNTIME.
|
2013-06-13 15:15:49 by OBATA Akio | Files touched by this commit (2) |
Log message:
Update ruby-json to 1.8.0.
2013-05-13 (1.8.0)
* Fix https://github.com/flori/json/issues/162 reported by Marc-Andre
Lafortune <github_rocks@marc-andre.ca>. Thanks!
* Applied patches by Yui NARUSE <naruse@airemix.jp> to suppress warning with
-Wchar-subscripts and better validate UTF-8 strings.
* Applied patch by ginriki@github to remove unnecessary if.
* Add load/dump interface to JSON::GenericObject to make
serialize :some_attribute, JSON::GenericObject
work in Rails active models for convenient SomeModel#some_attribute.foo.bar
access to serialised JSON data.
|
2013-02-12 14:13:08 by Takahiro Kambe | Files touched by this commit (4) |
Log message:
Update ruby-json and ruby-json-pure to 1.7.7.
2013-02-04 (1.7.7)
* Security fix for JSON create_additions default value and
JSON::GenericObject. It should not be possible to create additions unless
explicitely requested by setting the create_additions argument to true or
using the JSON.load/dump interface. If JSON::GenericObject is supposed to
be automatically deserialised, this has to be explicitely enabled by
setting
JSON::GenericObject.json_createble = true
as well.
* Remove useless assert in fbuffer implementation.
* Apply patch attached to https://github.com/flori/json/issues#issue/155
provided by John Shahid <jvshahid@gmail.com>, Thx!
* Add license information to rubygems spec data, reported by Jordi Massaguer
Pla <jmassaguerpla@suse.de>.
* Improve documentation, thx to Zachary Scott <zachary@zacharyscott.net>.
|
2013-02-11 03:43:26 by Takahiro Kambe | Files touched by this commit (4) |
Log message:
Update ruby-json and ruby-json-pure to 1.7.6.
2012-11-29 (1.7.6)
* Add GeneratorState#merge alias for JRuby, fix state accessor methods. Thx to
jvshahid@github.
* Increase hash likeness of state objects.
|
2012-09-16 16:25:48 by Takahiro Kambe | Files touched by this commit (4) |
Log message:
Update ruby-json and ruby-json-pure to 1.7.5.
2012-08-17 (1.7.5)
* Fix compilation of extension on older rubies.
|
2012-09-16 11:28:02 by Takahiro Kambe | Files touched by this commit (4) |
Log message:
Update ruby-json and ruby-json-pure package to 1.7.4.
2012-07-26 (1.7.4)
* Fix compilation problem on AIX, see https://github.com/flori/json/issues/142
|
2012-06-02 03:09:02 by Takahiro Kambe | Files touched by this commit (6) |
Log message:
Update ruby-json and ruby-json-pure to 1.7.3.
2012-05-12 (1.7.3)
* Work around Rubinius encoding issues using iconv for conversion instead.
2012-05-11 (1.7.2)
* Fix some encoding issues, that cause problems for the pure and the
extension variant in jruby 1.9 mode.
2012-04-28 (1.7.1)
* Some small fixes for building
|
2012-04-29 07:42:46 by Takahiro Kambe | Files touched by this commit (6) |
Log message:
Update ruby-json and ruby-json-pure to 1.7.0
2012-04-28 (1.7.0)
* Add JSON::GenericObject for method access to objects transmitted via JSON.
2012-04-27 (1.6.7)
* Fix possible crash when trying to parse nil value.
|
2012-04-28 17:48:17 by Takahiro Kambe | Files touched by this commit (6) |
Log message:
Update ruby-json and ruby-json-pure pacakge to 1.6.6.
2012-02-11 (1.6.6)
* Propagate src encoding to values made from it (fixes 1.9 mode converting
everything to ascii-8bit; harmless for 1.8 mode too) (Thomas E. Enebo
<tom.enebo@gmail.com>), should fix
https://github.com/flori/json/issues#issue/119.
* Fix https://github.com/flori/json/issues#issue/124 Thx to Jason Hutchens.
* Fix https://github.com/flori/json/issues#issue/117
|