graphql-sources 1.5.2 → 1.5.3

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: fea99d5034323ff95b35a9d8e8d9ef4f549c36972c66f2958767c804a733c34a
4
- data.tar.gz: db5ccdc4cabf4d10118e9572ebc88ccff7acf6837f333356db49a2ae5d626ddb
3
+ metadata.gz: d66d75b5ecf94cd4df2b896016991ce5773af761f40a70d2812044ed5cf4575d
4
+ data.tar.gz: 2e31db5a99fad4a718c806423b1b129f5ba5295038c297e6e6dfc2a1ab8fbdf9
5
5
  SHA512:
6
- metadata.gz: 17b6e588ca2f514000c7ee9e3d1ace997b44bdb8ef43049611bf86d86711f1619bf65aa9c26305b33e00a05883a6873ed68902e7e06fcf8c223adad54787caa5
7
- data.tar.gz: a66bd4b062d28915d1df9e904877a317ea5cc80f9cac6cbb7a3104503575220d2fce6730551c05f6421dfeb34ee62f8853824379f000d689b88d908a54f86f8f
6
+ metadata.gz: 34af5991aef6c59b5951425acfab21a4f0f8f646308d730102a066bc3f3ea40e674925524ab762d6400a632cec2623f3c7536021484e44a2e67ee4677a09dee8
7
+ data.tar.gz: 053c8e0fa78ddf062933f15e833e753cb02214ac65420bcd7df8ea8943781b2ca615abe43161f86b7161f76fff99a8e45d529a6b35d6683e3b1c91b444759c53
data/README.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # GraphQL::Sources
2
2
 
3
+ [![LICENSE](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/ksylvest/graphql-sources/blob/main/LICENSE)
4
+ [![RubyGems](https://img.shields.io/gem/v/graphql-sources)](https://rubygems.org/gems/graphql-sources)
5
+ [![GitHub](https://img.shields.io/badge/github-repo-blue.svg)](https://github.com/ksylvest/graphql-sources)
6
+ [![Yard](https://img.shields.io/badge/docs-site-blue.svg)](https://graphql-sources.ksylvest.com)
7
+ [![CircleCI](https://img.shields.io/circleci/build/github/ksylvest/graphql-sources)](https://circleci.com/gh/ksylvest/graphql-sources)
8
+ [![Maintainability](https://api.codeclimate.com/v1/badges/bc301cb72712637e67dd/maintainability)](https://codeclimate.com/github/ksylvest/graphql-sources/maintainability)
9
+ [![Test Coverage](https://api.codeclimate.com/v1/badges/bc301cb72712637e67dd/test_coverage)](https://codeclimate.com/github/ksylvest/graphql-sources/test_coverage)
10
+
11
+ `GraphQL::Sources` is a set of predefined dataloader classes build to avoid common n-plus-one issues in a GraphQL schema with Ruby. It supports loading `has_one`, `has_many`, `belongs_to`, `has_and_belongs_to_many`, `has_one_attached` and `has_many_attached` associations.
12
+
3
13
  ## Installation
4
14
 
5
15
  Install the gem and add to the application's Gemfile by executing:
@@ -321,12 +331,6 @@ class UserType < GraphQL::Schema::Object
321
331
  end
322
332
  ```
323
333
 
324
- ## Status
325
-
326
- [![CircleCI](https://circleci.com/gh/ksylvest/graphql-sources.svg?style=svg)](https://circleci.com/gh/ksylvest/graphql-sources)
327
- [![Maintainability](https://api.codeclimate.com/v1/badges/bc301cb72712637e67dd/maintainability)](https://codeclimate.com/github/ksylvest/graphql-sources/maintainability)
328
- [![Test Coverage](https://api.codeclimate.com/v1/badges/bc301cb72712637e67dd/test_coverage)](https://codeclimate.com/github/ksylvest/graphql-sources/test_coverage)
329
-
330
334
  ## License
331
335
 
332
336
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -2,6 +2,6 @@
2
2
 
3
3
  module GraphQL
4
4
  module Sources
5
- VERSION = '1.5.2'
5
+ VERSION = '1.5.3'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: graphql-sources
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.2
4
+ version: 1.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Sylvestre
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-10-27 00:00:00.000000000 Z
10
+ date: 2025-02-06 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: graphql
@@ -233,9 +232,9 @@ licenses:
233
232
  - MIT
234
233
  metadata:
235
234
  homepage_uri: https://github.com/ksylvest/graphql-sources
236
- source_code_uri: https://github.com/ksylvest/graphql-sources
237
- changelog_uri: https://github.com/ksylvest/graphql-sources/blob/main/CHANGELOG.md
238
- post_install_message:
235
+ source_code_uri: https://github.com/ksylvest/graphql-sources/tree/v1.5.3
236
+ changelog_uri: https://github.com/ksylvest/graphql-sources/releases/tag/v1.5.3
237
+ documentation_uri: https://graphql-sources.ksylvest.com/
239
238
  rdoc_options: []
240
239
  require_paths:
241
240
  - lib
@@ -250,8 +249,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
250
249
  - !ruby/object:Gem::Version
251
250
  version: '0'
252
251
  requirements: []
253
- rubygems_version: 3.5.18
254
- signing_key:
252
+ rubygems_version: 3.6.2
255
253
  specification_version: 4
256
254
  summary: A set of common GraphQL DataLoader sources.
257
255
  test_files: []