rack-graphql 3.2.0 → 3.3.0.beta

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1dadb267c8ff9335ea2509782e862a43a4baf20e30fd8b98c0106ac69864a21f
4
- data.tar.gz: 0735c228c451e039c3464278f509c792dd28275e165b82ea70d262bd5f3b38f6
3
+ metadata.gz: 532f0f16301ca51cb072332f905ab255514d771fbf45e78b4841843acd4dc11e
4
+ data.tar.gz: 595f33e14ca13493367d7c6bd956fff2f43f1202ab698e1f7641220e46cf8cc0
5
5
  SHA512:
6
- metadata.gz: 0040707da5153a109f9d8b5247251a55750006aa92445d2710251015e1420024ac1cbc5fbc6698e87fc2d96f06209737738106b5fb93d2147d9b5c4796ac5911
7
- data.tar.gz: 750abe3e69e19a5e7e6dae568b7dcdddda0d6e85b913308327d03cd7f4cc9e85b7919a5f9193a7fd1a891715c5f27ed2662266aa2c3fb032104aefd5218bda5a
6
+ metadata.gz: 7a59eacd519ad77e4848090c18bd823889ed7d7e1edb51004739b83caadf9ea4d91bdd9f4d275c639b3165564160130e1762ab32820de67e0abc7ef3ce57cea7
7
+ data.tar.gz: 27624f4f2e3b79f71520ee41bb9455493a4d64b01cfabd402a9db9141a6551fbf7a76613a0bfccf81698080f82d30fa473997304e62c726c7274b51d6fddd47e
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rack-graphql (3.2.0)
4
+ rack-graphql (3.3.0.beta)
5
5
  graphql (~> 2.0)
6
6
  oj
7
7
  rack (>= 2.2.6)
@@ -11,10 +11,10 @@ GEM
11
11
  specs:
12
12
  ast (2.4.2)
13
13
  awesome_print (1.9.2)
14
- base64 (0.1.1)
15
14
  coderay (1.1.3)
16
15
  diff-lcs (1.5.0)
17
- graphql (2.1.1)
16
+ graphql (2.1.6)
17
+ racc (~> 1.4)
18
18
  json (2.6.3)
19
19
  language_server-protocol (3.17.0.3)
20
20
  method_source (1.0.0)
@@ -26,13 +26,13 @@ GEM
26
26
  pry (0.14.2)
27
27
  coderay (~> 1.1)
28
28
  method_source (~> 1.0)
29
- racc (1.7.1)
29
+ racc (1.7.3)
30
30
  rack (3.0.8)
31
31
  rack-test (2.1.0)
32
32
  rack (>= 1.3)
33
33
  rainbow (3.1.1)
34
- rake (13.0.6)
35
- regexp_parser (2.8.1)
34
+ rake (13.1.0)
35
+ regexp_parser (2.8.2)
36
36
  rexml (3.2.6)
37
37
  rspec (3.12.0)
38
38
  rspec-core (~> 3.12.0)
@@ -47,19 +47,18 @@ GEM
47
47
  diff-lcs (>= 1.2.0, < 2.0)
48
48
  rspec-support (~> 3.12.0)
49
49
  rspec-support (3.12.1)
50
- rubocop (1.56.4)
51
- base64 (~> 0.1.1)
50
+ rubocop (1.57.2)
52
51
  json (~> 2.3)
53
52
  language_server-protocol (>= 3.17.0)
54
53
  parallel (~> 1.10)
55
- parser (>= 3.2.2.3)
54
+ parser (>= 3.2.2.4)
56
55
  rainbow (>= 2.2.2, < 4.0)
57
56
  regexp_parser (>= 1.8, < 3.0)
58
57
  rexml (>= 3.2.5, < 4.0)
59
58
  rubocop-ast (>= 1.28.1, < 2.0)
60
59
  ruby-progressbar (~> 1.7)
61
60
  unicode-display_width (>= 2.4.0, < 3.0)
62
- rubocop-ast (1.29.0)
61
+ rubocop-ast (1.30.0)
63
62
  parser (>= 3.2.1.0)
64
63
  rubocop-capybara (2.19.0)
65
64
  rubocop (~> 1.41)
@@ -67,8 +66,8 @@ GEM
67
66
  rubocop (~> 1.33)
68
67
  rubocop-rake (0.6.0)
69
68
  rubocop (~> 1.0)
70
- rubocop-rspec (2.24.1)
71
- rubocop (~> 1.33)
69
+ rubocop-rspec (2.25.0)
70
+ rubocop (~> 1.40)
72
71
  rubocop-capybara (~> 2.17)
73
72
  rubocop-factory_bot (~> 2.22)
74
73
  ruby-progressbar (1.13.0)
@@ -74,6 +74,9 @@ module RackGraphql
74
74
  { 'Content-Type' => 'application/json', STATUS_CODE_HEADER_NAME => status_code },
75
75
  [Oj.dump('errors' => [exception_hash(e)])]
76
76
  ]
77
+ ensure
78
+ ActiveRecord::Base.connection_handler.flush_idle_connections!(:all) if defined?(ActiveRecord::Base)
79
+ ActiveRecord::Base.connection_handler.clear_active_connections!(:all) if defined?(ActiveRecord::Base)
77
80
  end
78
81
 
79
82
  private
@@ -1,3 +1,3 @@
1
1
  module RackGraphql
2
- VERSION = '3.2.0'.freeze
2
+ VERSION = '3.3.0.beta'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack-graphql
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.0
4
+ version: 3.3.0.beta
5
5
  platform: ruby
6
6
  authors:
7
7
  - Krzysztof Knapik
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-11-09 00:00:00.000000000 Z
11
+ date: 2023-11-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphql
@@ -104,9 +104,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
104
104
  version: '3.0'
105
105
  required_rubygems_version: !ruby/object:Gem::Requirement
106
106
  requirements:
107
- - - ">="
107
+ - - ">"
108
108
  - !ruby/object:Gem::Version
109
- version: '0'
109
+ version: 1.3.1
110
110
  requirements: []
111
111
  rubygems_version: 3.4.21
112
112
  signing_key: