groonga-command-parser 1.1.7 → 1.1.8

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d1c7ab070f9742299d45da97516fb76767ce62259830b13d8a73ce0ccdcc25cb
4
- data.tar.gz: 5aef3400a00b4b77a91705e1293874a33ad838b81823f9308a30a0edb73aa754
3
+ metadata.gz: 7b772c0bdc19dddaeec259e4eb0f2ff9689413ecb590cd923329925925ed24b0
4
+ data.tar.gz: d20e607a816786a98a8311361e4286d4123affa4b4340eb220e8c2449219688c
5
5
  SHA512:
6
- metadata.gz: 18f975cff3610220604ffea180db48324daad2d46d55943b727e91ba44fa4438077d0bcc25f810b9fe4f820d9f47312dc28cb9042bdcd7edc243db46ae8cdaa7
7
- data.tar.gz: cec4a3661c62a357642be784c5050ed042a56be5805b9d6dc23aa178b61ca6bf111777eef702ded1dce44c637fa21f55f13cd6f1e5a3b7afc8c0626d425dc220
6
+ metadata.gz: 8d4ade7b9f4be66ebf85926f9f2f02d0beb123d585715755bddace5a4e05c77b77db03f35e7b3c8eb6a8ac7742f5fab1dddf86bed380c9926242605f48468cb9
7
+ data.tar.gz: 51aa25d5523d488247104ac697e29e0b89a06161e97ed63f1df8aa523c3ddb1251cc97fdd36884b8e2e5e3b908886f82b296cd0a3b6a375b222d4ecc8214ade5
data/doc/text/news.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # News
2
2
 
3
+ ## 1.1.8: 2026-09-09
4
+
5
+ ### Improvements
6
+
7
+ * Added support for json 3.0.0 or later.
8
+
3
9
  ## 1.1.7: 2026-06-26
4
10
 
5
11
  ### Fixes
@@ -53,6 +53,6 @@ Gem::Specification.new do |spec|
53
53
  spec.require_paths = ["lib"]
54
54
 
55
55
  spec.add_runtime_dependency("groonga-command", ">= 1.4.0")
56
- spec.add_runtime_dependency("json", ">= 2.20.0")
56
+ spec.add_runtime_dependency("json", ">= 3.0.0")
57
57
  end
58
58
 
@@ -24,7 +24,7 @@ module Groonga
24
24
  attr_writer :on_consumed
25
25
  attr_writer :on_end
26
26
  def initialize
27
- @parser = JSON::ResumableParser.new
27
+ @parser = JSON::ResumableParser.new(allow_duplicate_key: true)
28
28
  @on_value = nil
29
29
  @on_consumed = nil
30
30
  @on_end = nil
@@ -17,7 +17,7 @@
17
17
  module Groonga
18
18
  module Command
19
19
  class Parser
20
- VERSION = "1.1.7"
20
+ VERSION = "1.1.8"
21
21
  end
22
22
  end
23
23
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: groonga-command-parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.7
4
+ version: 1.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kouhei Sutou
@@ -29,14 +29,14 @@ dependencies:
29
29
  requirements:
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 2.20.0
32
+ version: 3.0.0
33
33
  type: :runtime
34
34
  prerelease: false
35
35
  version_requirements: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - ">="
38
38
  - !ruby/object:Gem::Version
39
- version: 2.20.0
39
+ version: 3.0.0
40
40
  description: ''
41
41
  email:
42
42
  - kou@clear-code.com
@@ -88,7 +88,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
88
88
  - !ruby/object:Gem::Version
89
89
  version: '0'
90
90
  requirements: []
91
- rubygems_version: 4.0.10
91
+ rubygems_version: 4.0.16
92
92
  specification_version: 4
93
93
  summary: Groonga-command-parser is a Ruby library to parses [groonga](http://groonga.org/)'s
94
94
  command syntax. You can write a program to process groonga's command by using groonga-command-parser.