graphql-pagination 2.0.0.rc → 2.0.0

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: 4481440a6f4abc6e4c8a4698404712b26445567036d889a776fbc8f4ebf0c728
4
- data.tar.gz: 2161f01f80cab505cbea3a2f5728a7a19c9b1353c0bfc7089fa4f2a8f6649c20
3
+ metadata.gz: 66ee4e073251b59ae351cabd16e4122d2b9aca8ad2bf666b6a7d7f24004d2d60
4
+ data.tar.gz: ca7ab1e6a8612d16a80296b50158073e42d160dc4ef9487d6926968153847e93
5
5
  SHA512:
6
- metadata.gz: 6867a1340bf4ff4429489ee5d9dafcd2eef354b524ad76b9abcf397a67c6e482e6360cb2a1e69effb1abe5ba368cfb1d00ffa05a14808977a4b4f565a65c7423
7
- data.tar.gz: cc613654cb5178ba60f903d21505100193499319658a28032c19197656e574b7f0ea4f4e81ec56a5b45b5c67f93fb29b4a9f4099cf71019920c684476dc6f0f7
6
+ metadata.gz: f281e3304279f6f02dfde1c682a94ad3fe2771c41052ab97982200a17257b9a2650ab858fc70834bcef0a0651b61e34190765fcc121c0c4c71a8adb93e072a1f
7
+ data.tar.gz: ddd6dd8edb076763cb918abb30187bd67d6b62999f89eb08abd39b5324794a0fcbafb1ca4c16f95809e14959941c5720d8eaedc7036d83f4cf1ca9d4047f59ff
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/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- graphql-pagination (2.0.0.rc)
4
+ graphql-pagination (2.0.0)
5
5
  graphql (~> 2.0)
6
6
 
7
7
  GEM
@@ -19,9 +19,9 @@ GEM
19
19
  tzinfo (~> 2.0)
20
20
  ast (2.4.2)
21
21
  coderay (1.1.3)
22
- concurrent-ruby (1.1.9)
22
+ concurrent-ruby (1.1.10)
23
23
  diff-lcs (1.5.0)
24
- graphql (2.0.2)
24
+ graphql (2.0.5)
25
25
  i18n (1.10.0)
26
26
  concurrent-ruby (~> 1.0)
27
27
  kaminari-activerecord (1.2.2)
@@ -30,7 +30,7 @@ GEM
30
30
  kaminari-core (1.2.2)
31
31
  method_source (1.0.0)
32
32
  minitest (5.15.0)
33
- parallel (1.21.0)
33
+ parallel (1.22.1)
34
34
  parser (3.1.1.0)
35
35
  ast (~> 2.4.1)
36
36
  pry (0.14.1)
@@ -49,11 +49,11 @@ GEM
49
49
  rspec-expectations (3.11.0)
50
50
  diff-lcs (>= 1.2.0, < 2.0)
51
51
  rspec-support (~> 3.11.0)
52
- rspec-mocks (3.11.0)
52
+ rspec-mocks (3.11.1)
53
53
  diff-lcs (>= 1.2.0, < 2.0)
54
54
  rspec-support (~> 3.11.0)
55
55
  rspec-support (3.11.0)
56
- rubocop (1.26.0)
56
+ rubocop (1.26.1)
57
57
  parallel (~> 1.10)
58
58
  parser (>= 3.1.0.0)
59
59
  rainbow (>= 2.2.2, < 4.0)
@@ -93,4 +93,4 @@ DEPENDENCIES
93
93
  rubocop-rspec
94
94
 
95
95
  BUNDLED WITH
96
- 2.3.9
96
+ 2.3.10
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
24
24
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
25
25
  spec.require_paths = ['lib']
26
26
 
27
- spec.required_ruby_version = '>= 2.7'
27
+ spec.required_ruby_version = '>= 3.0'
28
28
 
29
29
  spec.add_dependency 'graphql', '~> 2.0'
30
30
 
@@ -1,3 +1,3 @@
1
1
  module GraphqlPagination
2
- VERSION = '2.0.0.rc'.freeze
2
+ VERSION = '2.0.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: graphql-pagination
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.rc
4
+ version: 2.0.0
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
@@ -183,14 +183,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
183
183
  requirements:
184
184
  - - ">="
185
185
  - !ruby/object:Gem::Version
186
- version: '2.7'
186
+ version: '3.0'
187
187
  required_rubygems_version: !ruby/object:Gem::Requirement
188
188
  requirements:
189
- - - ">"
189
+ - - ">="
190
190
  - !ruby/object:Gem::Version
191
- version: 1.3.1
191
+ version: '0'
192
192
  requirements: []
193
- rubygems_version: 3.2.32
193
+ rubygems_version: 3.3.7
194
194
  signing_key:
195
195
  specification_version: 4
196
196
  summary: Page-based kaminari pagination for graphql.