graphql-pagination 2.6.0 → 2.6.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: ddabfc6725a633f995134cdc0355e8c8a763b7db51110e8785c6b9e149b45de6
4
- data.tar.gz: 579d0201b9f6727fd2be05e72924e2ff8b022b2b64a2f925c7a8ff098e83a1f6
3
+ metadata.gz: ac285de80e7ce829af8cde768b1b48ee20b050ac2692323c2eac8fbad735c5d9
4
+ data.tar.gz: 3f506c1c052fc3ff22b0adedebf88efd75ac269bf1b5eff3793e8ad72f0cd984
5
5
  SHA512:
6
- metadata.gz: 6ea6fbe0d6398a9cb2cc22ffad816e5d028748419101b99a7964c9d121647f720cc3d654d42e1efd874421aa236ff29e9563867c4be07a2030374cb293208551
7
- data.tar.gz: 2c46b5580886696aca39701c5e010f1649b257a43e0bc1e4791ae8f87176c55bf1d0739f9c1cd06de74ab98c22c4c92c202f241685f51ff6faa764c40c3a5f3b
6
+ metadata.gz: 610459159c73779ec4ecfbe81eb7c3fc4bf3772f1334ac9e3b3cdae0f197b7cfdf9001b35a8ca919c21c33da4735888a27e1b6095bea2276b1ef1e7be43257ac
7
+ data.tar.gz: 3e30b245b1095f63c5fec115a82c3ccddf86a4a94f59a19faa24ea0e491b508ae1fcc490bc4a89d7618ec66a639fe1c47faf62cf84a453f638fb548fb4e656ed
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [2.6.1] - 2026-04-28
4
+
5
+ ### Fixed
6
+ - Defer `CollectionMetadataType` load so the Federation 2 `@shareable` conditional fires correctly (#254)
7
+
3
8
  ## [2.6.0] - 2026-04-28
4
9
 
5
10
  ### Changed
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- graphql-pagination (2.6.0)
4
+ graphql-pagination (2.6.1)
5
5
  graphql (>= 2.4.7)
6
6
 
7
7
  GEM
@@ -1,3 +1,3 @@
1
1
  module GraphqlPagination
2
- VERSION = "2.6.0".freeze
2
+ VERSION = "2.6.1".freeze
3
3
  end
@@ -3,11 +3,11 @@ require "graphql"
3
3
  require "graphql/schema"
4
4
 
5
5
  module GraphqlPagination
6
+ autoload :CollectionMetadataType, "graphql_pagination/collection_metadata_type"
6
7
  end
7
8
 
8
9
  require "graphql_pagination/collection_base_error"
9
10
  require "graphql_pagination/collection_type"
10
- require "graphql_pagination/collection_metadata_type"
11
11
  require "graphql_pagination/collection_field"
12
12
  require "graphql_pagination/paginated_field"
13
13
 
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.6.0
4
+ version: 2.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Krzysztof Knapik
@@ -83,7 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
83
83
  - !ruby/object:Gem::Version
84
84
  version: '0'
85
85
  requirements: []
86
- rubygems_version: 4.0.10
86
+ rubygems_version: 4.0.3
87
87
  specification_version: 4
88
88
  summary: Page-based kaminari pagination for graphql.
89
89
  test_files: []