json 2.10.0-java → 2.10.2-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGES.md +11 -0
- data/lib/json/common.rb +6 -12
- data/lib/json/ext/generator.jar +0 -0
- data/lib/json/ext/parser.jar +0 -0
- data/lib/json/truffle_ruby/generator.rb +1 -1
- data/lib/json/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a839ce5be2a39badc5eb1c512d032dcb9402138151258340d046e8746d14cfc7
|
4
|
+
data.tar.gz: 22f933f2b61b194450122fea1f47ff1c4b751bd5bae5a2287671b2ce8e19c918
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1149fd42e204edd71da3d522b1eb566de1e7ae9042818145ebe3c9faa477552172b94c64794c9077acfc5350d594ab847a59a9da4f36090aa265036ad1821b35
|
7
|
+
data.tar.gz: 74faa39ea081f6fa952aabfd330f16d29a68be4a6354dcfa6091fa90d98491215502a9bf91bef35a3e2be8d998981ac2e83ea990dd611407ef42971be90ed5d6
|
data/CHANGES.md
CHANGED
@@ -1,10 +1,21 @@
|
|
1
1
|
# Changes
|
2
2
|
|
3
|
+
### 2025-03-12 (2.10.2)
|
4
|
+
|
5
|
+
* Fix a potential crash in the C extension parser.
|
6
|
+
* Raise a ParserError on all incomplete unicode escape sequence. This was the behavior until `2.10.0` unadvertently changed it.
|
7
|
+
* Ensure document snippets that are included in parser errors don't include truncated multibyte characters.
|
8
|
+
|
9
|
+
### 2025-02-10 (2.10.1)
|
10
|
+
|
11
|
+
* Fix a compatibility issue with `MultiJson.dump(obj, pretty: true)`: `no implicit conversion of false into Proc (TypeError)`.
|
12
|
+
|
3
13
|
### 2025-02-10 (2.10.0)
|
4
14
|
|
5
15
|
* `strict: true` now accept symbols as values. Previously they'd only be accepted as hash keys.
|
6
16
|
* The C extension Parser has been entirely reimplemented from scratch.
|
7
17
|
* Introduced `JSON::Coder` as a new API allowing to customize how non native types are serialized in a non-global way.
|
18
|
+
* Introduced `JSON::Fragment` to allow assembling cached fragments in a safe way.
|
8
19
|
* The Java implementation of the generator received many optimizations.
|
9
20
|
|
10
21
|
### 2024-12-18 (2.9.1)
|
data/lib/json/common.rb
CHANGED
@@ -152,10 +152,13 @@ module JSON
|
|
152
152
|
end
|
153
153
|
|
154
154
|
def detailed_message(...)
|
155
|
+
# Exception#detailed_message doesn't exist until Ruby 3.2
|
156
|
+
super_message = defined?(super) ? super : message
|
157
|
+
|
155
158
|
if @invalid_object.nil?
|
156
|
-
|
159
|
+
super_message
|
157
160
|
else
|
158
|
-
"#{
|
161
|
+
"#{super_message}\nInvalid object: #{@invalid_object.inspect}"
|
159
162
|
end
|
160
163
|
end
|
161
164
|
end
|
@@ -840,7 +843,7 @@ module JSON
|
|
840
843
|
|
841
844
|
opts = JSON.dump_default_options
|
842
845
|
opts = opts.merge(:max_nesting => limit) if limit
|
843
|
-
opts =
|
846
|
+
opts = opts.merge(kwargs) if kwargs
|
844
847
|
|
845
848
|
begin
|
846
849
|
State.generate(obj, opts, anIO)
|
@@ -854,15 +857,6 @@ module JSON
|
|
854
857
|
string.encode(to, from)
|
855
858
|
end
|
856
859
|
|
857
|
-
def merge_dump_options(opts, strict: NOT_SET)
|
858
|
-
opts = opts.merge(strict: strict) if NOT_SET != strict
|
859
|
-
opts
|
860
|
-
end
|
861
|
-
|
862
|
-
class << self
|
863
|
-
private :merge_dump_options
|
864
|
-
end
|
865
|
-
|
866
860
|
# JSON::Coder holds a parser and generator configuration.
|
867
861
|
#
|
868
862
|
# module MyApp
|
data/lib/json/ext/generator.jar
CHANGED
Binary file
|
data/lib/json/ext/parser.jar
CHANGED
Binary file
|
@@ -258,7 +258,7 @@ module JSON
|
|
258
258
|
@object_nl = opts[:object_nl] || '' if opts.key?(:object_nl)
|
259
259
|
@array_nl = opts[:array_nl] || '' if opts.key?(:array_nl)
|
260
260
|
@allow_nan = !!opts[:allow_nan] if opts.key?(:allow_nan)
|
261
|
-
@as_json = opts[:as_json].to_proc if opts
|
261
|
+
@as_json = opts[:as_json].to_proc if opts[:as_json]
|
262
262
|
@ascii_only = opts[:ascii_only] if opts.key?(:ascii_only)
|
263
263
|
@depth = opts[:depth] || 0
|
264
264
|
@buffer_initial_length ||= opts[:buffer_initial_length]
|
data/lib/json/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: json
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.10.
|
4
|
+
version: 2.10.2
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Daniel Luz
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-03-12 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: A JSON implementation as a JRuby extension.
|
14
14
|
email: dev+ruby@mernen.com
|