rack-graphql 3.2.0.beta → 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: d181d6f6e61e30ab59e24ebf776221a8b16661d3cc9158c6f4deba1aae6c47c7
4
- data.tar.gz: 8349b7c0482973a061772f648ad0195086cf39c923700a19cabe3a48031ec56f
3
+ metadata.gz: 532f0f16301ca51cb072332f905ab255514d771fbf45e78b4841843acd4dc11e
4
+ data.tar.gz: 595f33e14ca13493367d7c6bd956fff2f43f1202ab698e1f7641220e46cf8cc0
5
5
  SHA512:
6
- metadata.gz: 94536086d1cdf9ee9b447fdd124fb67b7332f20b40d938a15533c6f0065ed3dc711c48733083315c4e64064cae0b9cf12038176948bd0af2b527bf54ce3ad9bd
7
- data.tar.gz: b18ad2acdc63a2d22a534548d06fe9a0489213ed8292025393a7e6ebfaa14bf290dfec00e6b6839fd1518b60712ac6c7ebd14f9f2f1ae92d31d1df1b98b53535
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.beta)
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.beta'.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.beta
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