rack-graphql 2.9.0 → 2.9.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
  SHA256:
3
- metadata.gz: 0fa34c46d4c206474d4c53cbb76e0333d7c3f8ccfc6e043ef50dcde76f4b0986
4
- data.tar.gz: 4c88746ab21186b8970d16d0a420914330add933ad538efe6c245e6f48e2e451
3
+ metadata.gz: 251002131237d4b74b73b4d5883777dc6137ea5380503f7484d9b98b33b1a5a7
4
+ data.tar.gz: c972bb57b9ceef6f3d20fbe57f6031913b9ae1713b4195c50d58146b1164a332
5
5
  SHA512:
6
- metadata.gz: 8bde586226fd204181dff6d644b7f001078ab97276c7b4dc0764030f10b5c1594c919f5e9a190cd12ed50e35029deed52c93c57943e71a64d56f36f5359f8e0f
7
- data.tar.gz: ce8cf8f09698795487eb11df9ba9b6f562fd38e6e871d907485cb5f8d08a5e71f45415683498e61889615bf6a91ed7dcee9fd058b3f13553b38f89c6326ec98a
6
+ metadata.gz: b3ab99b76e86c7d051210883cf05b35a503c1b27b1770adad2863c42cc55add4111e00542ced9b2cc47c1416f86e283563d104054507919d3d1276901828b19b
7
+ data.tar.gz: 41d0b7e70efe5f7c0f4b7b38ca3236ece29cfccbdb36111784c40c8d97ed6f0f062e5277c2ae7e910948d9446463f8932e8105404735fd809311353ceb967cc9
data/.bundler-version CHANGED
@@ -1 +1 @@
1
- 2.3.9
1
+ 2.3.10
@@ -11,7 +11,7 @@ jobs:
11
11
  runs-on: ubuntu-latest
12
12
  strategy:
13
13
  matrix:
14
- ruby-version: ['3.0']
14
+ ruby-version: ['3.0', 3.1]
15
15
 
16
16
  steps:
17
17
  - uses: actions/checkout@v2
@@ -19,7 +19,7 @@ jobs:
19
19
  # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
20
20
  # change this to (see https://github.com/ruby/setup-ruby#versioning):
21
21
  # uses: ruby/setup-ruby@v1
22
- uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
22
+ uses: ruby/setup-ruby@bd94d6a504586da892a5753afdd1480096ed30df
23
23
  with:
24
24
  ruby-version: ${{ matrix.ruby-version }}
25
25
  bundler-cache: true # runs 'bundle install' and caches installed gems automatically
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 2.9.1 - 2022-04-02
4
+
5
+ - Test against ruby 3.1
6
+
3
7
  ## 2.9.0 - 2022-03-14
4
8
 
5
9
  - Drop graphql 1.x support
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rack-graphql (2.9.0)
4
+ rack-graphql (2.9.1)
5
5
  graphql (~> 2.0)
6
6
  oj
7
7
  rack (~> 2.2)
@@ -13,10 +13,10 @@ GEM
13
13
  awesome_print (1.9.2)
14
14
  coderay (1.1.3)
15
15
  diff-lcs (1.5.0)
16
- graphql (2.0.2)
16
+ graphql (2.0.5)
17
17
  method_source (1.0.0)
18
18
  oj (3.13.11)
19
- parallel (1.21.0)
19
+ parallel (1.22.1)
20
20
  parser (3.1.1.0)
21
21
  ast (~> 2.4.1)
22
22
  pry (0.14.1)
@@ -38,11 +38,11 @@ GEM
38
38
  rspec-expectations (3.11.0)
39
39
  diff-lcs (>= 1.2.0, < 2.0)
40
40
  rspec-support (~> 3.11.0)
41
- rspec-mocks (3.11.0)
41
+ rspec-mocks (3.11.1)
42
42
  diff-lcs (>= 1.2.0, < 2.0)
43
43
  rspec-support (~> 3.11.0)
44
44
  rspec-support (3.11.0)
45
- rubocop (1.26.0)
45
+ rubocop (1.26.1)
46
46
  parallel (~> 1.10)
47
47
  parser (>= 3.1.0.0)
48
48
  rainbow (>= 2.2.2, < 4.0)
@@ -81,4 +81,4 @@ DEPENDENCIES
81
81
  rubocop-rspec
82
82
 
83
83
  BUNDLED WITH
84
- 2.3.5
84
+ 2.3.10
@@ -1,3 +1,3 @@
1
1
  module RackGraphql
2
- VERSION = '2.9.0'.freeze
2
+ VERSION = '2.9.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack-graphql
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.9.0
4
+ version: 2.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Krzysztof Knapik
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2022-03-14 00:00:00.000000000 Z
12
+ date: 2022-04-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: graphql