groonga-query-log 1.2.0 → 1.2.1

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
  SHA1:
3
- metadata.gz: ef3fb91d35e9b109dbe0ed81c97ecb0c375bd2a0
4
- data.tar.gz: 11e6b3884e5562bd6c48a43d00ad7412b70c110b
3
+ metadata.gz: 5d76c466c0afc38392bb3dec3b4822deb3d8d7ee
4
+ data.tar.gz: 2d5f7478e94178b392fe78c75e9fdbcd9e09ba32
5
5
  SHA512:
6
- metadata.gz: 58de76b440c6422371b5d7c07af81739761326d31de648bcb305635e7d8a7a9b96efac1c43b29875fb89e1602641e49b51412712cf59a024e277071fcd75ec2d
7
- data.tar.gz: b666945ee6ca3c20222af9289b95f5b18afe0671164d35479c70c5253fcd32f9aaa422ef9506726cc43c15ac6cf594a56fd601fa6a0cc634c71a3d553424acdc
6
+ metadata.gz: 99182055f76da93c0a2384ad0a01e4719ed672eebbbcf46fa67dd89d3ad3ddefd3042dfecfc75513a34f81e99f87eb6c0928d8029c3b112173e37fa0d8daf686
7
+ data.tar.gz: 1e030de8949c5f1e3a31ae354b350f221f2ec3d79ee64157a3684313dec9872661d52db002fd835ea03207451937f2638a351cf7530a3ce662854d51207dd6e5
@@ -1,5 +1,12 @@
1
1
  # News
2
2
 
3
+ ## 1.2.1: 2016-05-27
4
+
5
+ ### Fixes
6
+
7
+ * groonga-query-log-verify-server: Fixed a bug that responses aren't
8
+ saved as JSON.
9
+
3
10
  ## 1.2.0: 2016-05-27
4
11
 
5
12
  ### Improvements
@@ -121,8 +121,8 @@ module Groonga
121
121
  def report_result(output, result)
122
122
  command, response1, response2 = result
123
123
  output.puts("command: #{command.original_source}")
124
- output.puts("response1: #{response1.body}")
125
- output.puts("response2: #{response2.body}")
124
+ output.puts("response1: #{response1.body.to_json}")
125
+ output.puts("response2: #{response2.body.to_json}")
126
126
  end
127
127
 
128
128
  def log_client_error(error)
@@ -16,6 +16,6 @@
16
16
 
17
17
  module Groonga
18
18
  module QueryLog
19
- VERSION = "1.2.0"
19
+ VERSION = "1.2.1"
20
20
  end
21
21
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: groonga-query-log
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kouhei Sutou