graphql 1.12.2 → 1.12.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.

Potentially problematic release.


This version of graphql might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6af72a84f88b98df67d9b5497ad882cf802c10ebebdf98659680e4506d8f1ace
4
- data.tar.gz: 394f6c964e8a0dea5b8675ca4a8188d14851fb77cd4220d61d2ff9fd2d701bc7
3
+ metadata.gz: 62556f55d1ce711780044cff00313dedc21f9c07ff69538127f3f96c52c1921c
4
+ data.tar.gz: 66f0329f3a61cdddd758159e344d1cf9781b5e21e6adf1c37380188c60c73025
5
5
  SHA512:
6
- metadata.gz: '0938a34d796c956d2a51a937a30e12110f89560e6c4bf35aa33a79ff955753bec492b86bc77b6c011cb34635231b3bd8bab52238c780bb9301fbb6f4612c26b8'
7
- data.tar.gz: 1c29d0e2554ec54ae931a08cad3e552465bea9bc62b6fd11d40701d0dea3c15b7310d6d850780cb22d48db913cc71ee21ac15345b6cff86a38b964ac7b458e39
6
+ metadata.gz: f5365accd8e35b1b016de61d9e5c2cf5605d0cb26c0d4baa4d31a4f479b6e91e7d49875fd9837bd426236a23ac52eb3dbb6a57f392ae0ebf25dc191c0e36786f
7
+ data.tar.gz: 228843044ed696075f3daa6e43a51a518607007417c47f1da3690d2d8e5c5dce0233c702c4101f9d7b94159499d0251fc27a164dc0f5105d6e9674dd4c1565f0
@@ -4,7 +4,7 @@ module GraphQL
4
4
  module AssignGlobalIdField
5
5
  def self.call(type_defn, field_name, **field_kwargs)
6
6
  resolve = GraphQL::Relay::GlobalIdResolve.new(type: type_defn)
7
- GraphQL::Define::AssignObjectField.call(type_defn, field_name, **field_kwargs, type: GraphQL::Deprecation_ID_TYPE.to_non_null_type, resolve: resolve)
7
+ GraphQL::Define::AssignObjectField.call(type_defn, field_name, **field_kwargs, type: GraphQL::DEPRECATED_ID_TYPE.to_non_null_type, resolve: resolve)
8
8
  end
9
9
  end
10
10
  end
@@ -7,11 +7,11 @@ module GraphQL
7
7
  class TypeDefiner
8
8
  include Singleton
9
9
  # rubocop:disable Naming/MethodName
10
- def Int; GraphQL::Deprecation_INT_TYPE; end
11
- def String; GraphQL::Deprecation_STRING_TYPE; end
12
- def Float; GraphQL::Deprecation_FLOAT_TYPE; end
13
- def Boolean; GraphQL::Deprecation_BOOLEAN_TYPE; end
14
- def ID; GraphQL::Deprecation_ID_TYPE; end
10
+ def Int; GraphQL::DEPRECATED_INT_TYPE; end
11
+ def String; GraphQL::DEPRECATED_STRING_TYPE; end
12
+ def Float; GraphQL::DEPRECATED_FLOAT_TYPE; end
13
+ def Boolean; GraphQL::DEPRECATED_BOOLEAN_TYPE; end
14
+ def ID; GraphQL::DEPRECATED_ID_TYPE; end
15
15
  # rubocop:enable Naming/MethodName
16
16
 
17
17
  # Make a {ListType} which wraps the input type
@@ -10,10 +10,10 @@ module GraphQL
10
10
  def self.default_arguments
11
11
  @default_arguments ||= begin
12
12
  argument_definitions = [
13
- ["first", GraphQL::Deprecation_INT_TYPE, "Returns the first _n_ elements from the list."],
14
- ["after", GraphQL::Deprecation_STRING_TYPE, "Returns the elements in the list that come after the specified cursor."],
15
- ["last", GraphQL::Deprecation_INT_TYPE, "Returns the last _n_ elements from the list."],
16
- ["before", GraphQL::Deprecation_STRING_TYPE, "Returns the elements in the list that come before the specified cursor."],
13
+ ["first", GraphQL::DEPRECATED_INT_TYPE, "Returns the first _n_ elements from the list."],
14
+ ["after", GraphQL::DEPRECATED_STRING_TYPE, "Returns the elements in the list that come after the specified cursor."],
15
+ ["last", GraphQL::DEPRECATED_INT_TYPE, "Returns the last _n_ elements from the list."],
16
+ ["before", GraphQL::DEPRECATED_STRING_TYPE, "Returns the elements in the list that come before the specified cursor."],
17
17
  ]
18
18
 
19
19
  argument_definitions.reduce({}) do |memo, arg_defn|
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module GraphQL
3
- VERSION = "1.12.2"
3
+ VERSION = "1.12.3"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: graphql
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.12.2
4
+ version: 1.12.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Mosolgo
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-01-26 00:00:00.000000000 Z
11
+ date: 2021-01-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: benchmark-ips
@@ -781,7 +781,7 @@ metadata:
781
781
  source_code_uri: https://github.com/rmosolgo/graphql-ruby
782
782
  bug_tracker_uri: https://github.com/rmosolgo/graphql-ruby/issues
783
783
  mailing_list_uri: https://tinyletter.com/graphql-ruby
784
- post_install_message:
784
+ post_install_message:
785
785
  rdoc_options: []
786
786
  require_paths:
787
787
  - lib
@@ -796,8 +796,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
796
796
  - !ruby/object:Gem::Version
797
797
  version: '0'
798
798
  requirements: []
799
- rubygems_version: 3.0.3
800
- signing_key:
799
+ rubygems_version: 3.2.3
800
+ signing_key:
801
801
  specification_version: 4
802
802
  summary: A GraphQL language and runtime for Ruby
803
803
  test_files: []