groonga-client 0.6.8 → 0.6.9

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: 5eff655174ca6884d2bfb486f8bbdf482f1eb01f9cccc0340670cce03a6233ea
4
- data.tar.gz: 3b98a877d32035990fa3f955fbd540b9e20ad9b5757c86dcdc855114c82713eb
3
+ metadata.gz: e6da9f45867a1b6ba3343309e8935b8efdc8b9d3c8d35d7dec702738b38829a7
4
+ data.tar.gz: 29178875a3d700f8b17c2c1cfab67c37baf86a811af258e5bb2069916d90de24
5
5
  SHA512:
6
- metadata.gz: 0ab452bca052b4258c0271960c7ff9689cea77cbb2b642f224195809361bdf6d7e18ec1347d01bb558aed0496f0e970f97d1df9ef0b5743a8d861a9e4dcd1639
7
- data.tar.gz: 186fa2f3260fe48bc56295fed075fc9617f9b9f559390f63a2a3ca7f37cd75e9db07ab0aae63959ed605c44656cdb878896381068fad6d81c96d15715caf3aab
6
+ metadata.gz: b351339a18628c2230cdc20714cbc82517cbc46618860a3cac0f31d3a75ffaae2181771affbe17a9a61575cecbc071a284f040436fa59efe30450b82f12d8cc3
7
+ data.tar.gz: a8c6326cbfb48225dc799915867c3757c05d824f02ec79fa510407d306431fba0745c5aba7a1ad1c8ba5382e58b97c0e469299ea8c5e8c855ef9e211f2538021
data/doc/text/news.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # NEWS
2
2
 
3
+ ## 0.6.9 - 2024-04-10
4
+
5
+ ### Improvements
6
+
7
+ * HTTP: Added support for request cancel.
8
+
3
9
  ## 0.6.8 - 2023-11-07
4
10
 
5
11
  ### Improvements
@@ -66,15 +66,19 @@ module Groonga
66
66
  http.start do
67
67
  http.read_timeout = read_timeout
68
68
  response = send_request(http, command)
69
+ body = response.body
69
70
  case response
70
- when Net::HTTPSuccess, Net::HTTPBadRequest
71
- yield(response.body)
71
+ when Net::HTTPSuccess,
72
+ Net::HTTPBadRequest, # for invalid request
73
+ Net::HTTPRequestTimeOut # for canceled request
74
+ yield(body)
72
75
  else
73
- if response.body.start_with?("[[")
74
- yield(response.body)
76
+ # "[[" is for command_version=1
77
+ # "{" is for command_version=3
78
+ if body.start_with?("[[") or body.start_with?("{")
79
+ yield(body)
75
80
  else
76
- message =
77
- "#{response.code} #{response.message}: #{response.body}"
81
+ message = "#{response.code} #{response.message}: #{body}"
78
82
  raise Error.new(message)
79
83
  end
80
84
  end
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2013-2022 Sutou Kouhei <kou@clear-code.com>
1
+ # Copyright (C) 2013-2023 Sutou Kouhei <kou@clear-code.com>
2
2
  #
3
3
  # This library is free software; you can redistribute it and/or
4
4
  # modify it under the terms of the GNU Lesser General Public
@@ -16,6 +16,6 @@
16
16
 
17
17
  module Groonga
18
18
  class Client
19
- VERSION = "0.6.8"
19
+ VERSION = "0.6.9"
20
20
  end
21
21
  end
metadata CHANGED
@@ -1,16 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: groonga-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.8
4
+ version: 0.6.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Haruka Yoshihara
8
8
  - Kouhei Sutou
9
9
  - Kosuke Asami
10
- autorequire:
11
10
  bindir: bin
12
11
  cert_chain: []
13
- date: 2023-11-07 00:00:00.000000000 Z
12
+ date: 2024-04-10 00:00:00.000000000 Z
14
13
  dependencies:
15
14
  - !ruby/object:Gem::Dependency
16
15
  name: gqtp
@@ -286,7 +285,6 @@ homepage: https://github.com/ranguba/groonga-client
286
285
  licenses:
287
286
  - LGPLv2.1+
288
287
  metadata: {}
289
- post_install_message:
290
288
  rdoc_options: []
291
289
  require_paths:
292
290
  - lib
@@ -301,8 +299,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
301
299
  - !ruby/object:Gem::Version
302
300
  version: '0'
303
301
  requirements: []
304
- rubygems_version: 3.5.0.dev
305
- signing_key:
302
+ rubygems_version: 3.6.0.dev
306
303
  specification_version: 4
307
304
  summary: Groonga-client is a client for Groonga (http://groonga.org/) implemented
308
305
  with pure Ruby. You can use it without Groonga.