graphql_devise 0.18.2 → 1.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.
Files changed (91) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +7 -2
  3. data/.gitignore +3 -0
  4. data/.rubocop.yml +9 -10
  5. data/Appraisals +70 -18
  6. data/CHANGELOG.md +53 -0
  7. data/README.md +71 -142
  8. data/app/controllers/graphql_devise/graphql_controller.rb +3 -3
  9. data/app/views/graphql_devise/mailer/confirmation_instructions.html.erb +1 -5
  10. data/config/routes.rb +0 -2
  11. data/graphql_devise.gemspec +7 -5
  12. data/lib/graphql_devise/concerns/additional_controller_methods.rb +48 -0
  13. data/lib/graphql_devise/concerns/additional_model_methods.rb +17 -0
  14. data/lib/graphql_devise/concerns/authenticatable.rb +1 -1
  15. data/lib/graphql_devise/concerns/controller_methods.rb +70 -93
  16. data/lib/graphql_devise/concerns/field_authentication.rb +14 -0
  17. data/lib/graphql_devise/concerns/set_user_by_token.rb +1 -1
  18. data/lib/graphql_devise/default_operations.rb +16 -0
  19. data/lib/graphql_devise/engine.rb +0 -2
  20. data/lib/graphql_devise/model/with_email_updater.rb +5 -30
  21. data/lib/graphql_devise/mount_method/operation_preparer.rb +0 -7
  22. data/lib/graphql_devise/mount_method/operation_preparers/custom_operation_preparer.rb +1 -1
  23. data/lib/graphql_devise/mount_method/operation_preparers/default_operation_preparer.rb +1 -1
  24. data/lib/graphql_devise/mount_method/operation_sanitizer.rb +0 -12
  25. data/lib/graphql_devise/mount_method/option_sanitizer.rb +0 -2
  26. data/lib/graphql_devise/mount_method/option_sanitizers/array_checker.rb +2 -2
  27. data/lib/graphql_devise/mount_method/option_sanitizers/class_checker.rb +2 -2
  28. data/lib/graphql_devise/mount_method/option_sanitizers/hash_checker.rb +1 -1
  29. data/lib/graphql_devise/mount_method/option_sanitizers/string_checker.rb +1 -1
  30. data/lib/graphql_devise/mount_method/option_validators/provided_operations_validator.rb +0 -2
  31. data/lib/graphql_devise/mount_method/option_validators/skip_only_validator.rb +1 -1
  32. data/lib/graphql_devise/mount_method/option_validators/supported_operations_validator.rb +1 -1
  33. data/lib/graphql_devise/mount_method/options_validator.rb +0 -3
  34. data/lib/graphql_devise/mount_method/supported_options.rb +0 -5
  35. data/lib/graphql_devise/mutations/base.rb +1 -1
  36. data/lib/graphql_devise/mutations/confirm_registration_with_token.rb +1 -1
  37. data/lib/graphql_devise/mutations/login.rb +1 -1
  38. data/lib/graphql_devise/mutations/register.rb +1 -1
  39. data/lib/graphql_devise/mutations/update_password_with_token.rb +1 -1
  40. data/lib/graphql_devise/resolvers/base.rb +1 -1
  41. data/lib/graphql_devise/resource_loader.rb +71 -39
  42. data/lib/graphql_devise/route_mounter.rb +13 -0
  43. data/lib/graphql_devise/schema_plugin.rb +7 -40
  44. data/lib/graphql_devise/types/authenticatable_type.rb +1 -1
  45. data/lib/graphql_devise/types/base_field.rb +9 -0
  46. data/lib/graphql_devise/types/base_type.rb +8 -0
  47. data/lib/graphql_devise/types/credential_type.rb +1 -1
  48. data/lib/graphql_devise/types/mutation_type.rb +1 -0
  49. data/lib/graphql_devise/types/query_type.rb +1 -0
  50. data/lib/graphql_devise/version.rb +1 -1
  51. data/lib/graphql_devise.rb +21 -29
  52. data/spec/dummy/app/controllers/api/v1/graphql_controller.rb +1 -16
  53. data/spec/dummy/app/graphql/dummy_schema.rb +1 -5
  54. data/spec/dummy/app/graphql/interpreter_schema.rb +6 -2
  55. data/spec/dummy/app/graphql/mutations/base_mutation.rb +6 -0
  56. data/spec/dummy/app/graphql/mutations/update_user.rb +2 -4
  57. data/spec/dummy/app/graphql/types/admin_type.rb +1 -1
  58. data/spec/dummy/app/graphql/types/custom_admin_type.rb +1 -1
  59. data/spec/dummy/app/graphql/types/mutation_type.rb +3 -1
  60. data/spec/dummy/app/graphql/types/query_type.rb +3 -1
  61. data/spec/dummy/app/graphql/types/user_type.rb +1 -1
  62. data/spec/dummy/config/environments/test.rb +1 -1
  63. data/spec/dummy/config/routes.rb +5 -9
  64. data/spec/graphql_devise/model/with_email_updater_spec.rb +17 -35
  65. data/spec/rails_helper.rb +5 -5
  66. data/spec/requests/mutations/resend_confirmation_with_token_spec.rb +2 -3
  67. data/spec/requests/user_controller_spec.rb +1 -33
  68. data/spec/services/resource_loader_spec.rb +14 -3
  69. metadata +55 -48
  70. data/app/controllers/graphql_devise/concerns/additional_controller_methods.rb +0 -72
  71. data/app/controllers/graphql_devise/concerns/set_user_by_token.rb +0 -21
  72. data/app/helpers/graphql_devise/mailer_helper.rb +0 -37
  73. data/app/models/graphql_devise/concerns/additional_model_methods.rb +0 -21
  74. data/app/models/graphql_devise/concerns/model.rb +0 -25
  75. data/lib/graphql_devise/default_operations/mutations.rb +0 -32
  76. data/lib/graphql_devise/default_operations/resolvers.rb +0 -14
  77. data/lib/graphql_devise/mutations/resend_confirmation.rb +0 -45
  78. data/lib/graphql_devise/mutations/send_password_reset.rb +0 -38
  79. data/lib/graphql_devise/mutations/sign_up.rb +0 -61
  80. data/lib/graphql_devise/mutations/update_password.rb +0 -46
  81. data/lib/graphql_devise/rails/routes.rb +0 -15
  82. data/lib/graphql_devise/resolvers/check_password_token.rb +0 -43
  83. data/lib/graphql_devise/resolvers/confirm_account.rb +0 -42
  84. data/spec/dummy/app/graphql/mutations/sign_up.rb +0 -14
  85. data/spec/dummy/app/graphql/resolvers/confirm_admin_account.rb +0 -13
  86. data/spec/requests/mutations/resend_confirmation_spec.rb +0 -153
  87. data/spec/requests/mutations/send_password_reset_spec.rb +0 -103
  88. data/spec/requests/mutations/sign_up_spec.rb +0 -170
  89. data/spec/requests/mutations/update_password_spec.rb +0 -116
  90. data/spec/requests/queries/check_password_token_spec.rb +0 -149
  91. data/spec/requests/queries/confirm_account_spec.rb +0 -137
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 04d9716e77c081e74caaf93d0808f45ded94630c40b5cca5b8bd6cd8fc3ed09a
4
- data.tar.gz: 03b1543236bda0a52055bab779c7b58f33f022c64a5a32641a0e3ddc300b88ca
3
+ metadata.gz: 79fc4729464c8acabdfc399a6ad2ea777bc411ed1dcbac7e5996c3ea196f603f
4
+ data.tar.gz: c45854aec9f2658288170df3ca84aac3910ba3b37a0ecc05c153bd5430e76739
5
5
  SHA512:
6
- metadata.gz: b02fc314f7e8581a7b5bc5b77cae1fdc5c1b9bf7b5bdb0f2d8a45a323d6cec009633dc5c43a7309eb8d653808173f004d7c8ac0fa3bdabad8814e284209066b1
7
- data.tar.gz: 302d052a6ac63d66ce32c54b84501069205f42dd13d71d9fafe8872f615b9deb12d59813dcfa75fda7720bd51a1a947471eca9442013ca5deb9bbcbaa10b85f4
6
+ metadata.gz: e7a89e959b02190ac0fd70b0baaa325cbe62e87581b7eed837d95ad5352ab3f8da8c1b5fb165cc0127cdb3e968ec3f9b3634542e511d8ac7f6cde7b81a4b93d5
7
+ data.tar.gz: be3ddeedfa069474790a8625478fff36084760c4f00a0810de0c87bc80c67704ed5db0fb8fe293c74a4c16a5a9124cebe75dd61b314d455aec59fa39bed8fd91
data/.circleci/config.yml CHANGED
@@ -47,8 +47,6 @@ workflows:
47
47
  matrix:
48
48
  parameters:
49
49
  ruby-version:
50
- - '2.2'
51
- - '2.3'
52
50
  - '2.4'
53
51
  - '2.5'
54
52
  - '2.6'
@@ -70,6 +68,7 @@ workflows:
70
68
  - gemfiles/rails6.1_graphql1.11.gemfile
71
69
  - gemfiles/rails6.1_graphql1.12.gemfile
72
70
  - gemfiles/rails6.1_graphql1.13.gemfile
71
+ - gemfiles/rails6.1_graphql2.0.gemfile
73
72
  exclude:
74
73
  - ruby-version: '2.2'
75
74
  gemfile: gemfiles/rails6.0_graphql1.11.gemfile
@@ -83,6 +82,8 @@ workflows:
83
82
  gemfile: gemfiles/rails6.1_graphql1.12.gemfile
84
83
  - ruby-version: '2.2'
85
84
  gemfile: gemfiles/rails6.1_graphql1.13.gemfile
85
+ - ruby-version: '2.2'
86
+ gemfile: gemfiles/rails6.1_graphql2.0.gemfile
86
87
  - ruby-version: '2.3'
87
88
  gemfile: gemfiles/rails6.0_graphql1.11.gemfile
88
89
  - ruby-version: '2.3'
@@ -95,6 +96,8 @@ workflows:
95
96
  gemfile: gemfiles/rails6.1_graphql1.12.gemfile
96
97
  - ruby-version: '2.3'
97
98
  gemfile: gemfiles/rails6.1_graphql1.13.gemfile
99
+ - ruby-version: '2.3'
100
+ gemfile: gemfiles/rails6.1_graphql2.0.gemfile
98
101
  - ruby-version: '2.4'
99
102
  gemfile: gemfiles/rails6.0_graphql1.11.gemfile
100
103
  - ruby-version: '2.4'
@@ -107,6 +110,8 @@ workflows:
107
110
  gemfile: gemfiles/rails6.1_graphql1.12.gemfile
108
111
  - ruby-version: '2.4'
109
112
  gemfile: gemfiles/rails6.1_graphql1.13.gemfile
113
+ - ruby-version: '2.4'
114
+ gemfile: gemfiles/rails6.1_graphql2.0.gemfile
110
115
  - ruby-version: '2.5'
111
116
  gemfile: gemfiles/rails6.0_graphql1.13.gemfile
112
117
  - ruby-version: '2.5'
data/.gitignore CHANGED
@@ -1,3 +1,5 @@
1
+ .DS_Store
2
+
1
3
  /.bundle/
2
4
  /.yardoc
3
5
  /_yardoc/
@@ -28,3 +30,4 @@ README.md.*
28
30
 
29
31
  .env
30
32
  /spec/tmp/config/routes.rb
33
+ /.byebug_history
data/.rubocop.yml CHANGED
@@ -1,11 +1,10 @@
1
- require: rubocop-rspec
2
- require: rubocop-performance
3
-
4
- Rails:
5
- Enabled: true
1
+ require:
2
+ - rubocop-rspec
3
+ - rubocop-performance
4
+ - rubocop-rails
6
5
 
7
6
  AllCops:
8
- TargetRubyVersion: 2.2
7
+ TargetRubyVersion: 2.3
9
8
  DisplayCopNames: true
10
9
  Exclude:
11
10
  - bin/**/*
@@ -82,7 +81,7 @@ Style/FrozenStringLiteralComment:
82
81
  Style/StringMethods:
83
82
  Enabled: true
84
83
 
85
- Metrics/LineLength:
84
+ Layout/LineLength:
86
85
  Max: 120
87
86
 
88
87
  Metrics/MethodLength:
@@ -91,16 +90,16 @@ Metrics/MethodLength:
91
90
  Metrics/BlockLength:
92
91
  Enabled: false
93
92
 
94
- Layout/AlignHash:
93
+ Layout/HashAlignment:
95
94
  EnforcedColonStyle: table
96
95
 
97
- Layout/AlignParameters:
96
+ Layout/ParameterAlignment:
98
97
  EnforcedStyle: with_fixed_indentation
99
98
  SupportedStyles:
100
99
  - with_first_parameter
101
100
  - with_fixed_indentation
102
101
 
103
- Lint/EndAlignment:
102
+ Layout/EndAlignment:
104
103
  EnforcedStyleAlignWith: variable
105
104
  SupportedStylesAlignWith:
106
105
  - keyword
data/Appraisals CHANGED
@@ -1,7 +1,7 @@
1
1
  appraise 'rails4.2-graphql1.8' do
2
2
  gem 'sqlite3', '~> 1.3.6'
3
3
  gem 'bundler', '~> 1.17'
4
- gem 'rails', github: 'rails/rails', branch: '4-2-stable'
4
+ gem 'rails', git: 'https://github.com/rails/rails', branch: '4-2-stable'
5
5
  gem 'graphql', '~> 1.8.0'
6
6
  gem 'devise_token_auth', '< 1.2'
7
7
  gem 'rspec-rails', '< 4.0'
@@ -9,7 +9,7 @@ end
9
9
 
10
10
  appraise 'rails5.0-graphql1.8' do
11
11
  gem 'sqlite3', '~> 1.3.6'
12
- gem 'rails', github: 'rails/rails', branch: '5-0-stable'
12
+ gem 'rails', git: 'https://github.com/rails/rails', branch: '5-0-stable'
13
13
  gem 'graphql', '~> 1.8.0'
14
14
  gem 'devise_token_auth', '0.1.43'
15
15
  gem 'devise', '>= 4.0'
@@ -18,7 +18,7 @@ end
18
18
 
19
19
  appraise 'rails5.0-graphql1.9' do
20
20
  gem 'sqlite3', '~> 1.3.6'
21
- gem 'rails', github: 'rails/rails', branch: '5-0-stable'
21
+ gem 'rails', git: 'https://github.com/rails/rails', branch: '5-0-stable'
22
22
  gem 'graphql', '~> 1.9.0'
23
23
  gem 'devise_token_auth', '< 1.2'
24
24
  gem 'rspec-rails', '< 4.0'
@@ -26,7 +26,7 @@ end
26
26
 
27
27
  appraise 'rails5.1-graphql1.8' do
28
28
  gem 'sqlite3', '~> 1.3.6'
29
- gem 'rails', github: 'rails/rails', branch: '5-1-stable'
29
+ gem 'rails', git: 'https://github.com/rails/rails', branch: '5-1-stable'
30
30
  gem 'graphql', '~> 1.8.0'
31
31
  gem 'devise_token_auth', '0.1.43'
32
32
  gem 'devise', '>= 4.3'
@@ -35,7 +35,7 @@ end
35
35
 
36
36
  appraise 'rails5.1-graphql1.9' do
37
37
  gem 'sqlite3', '~> 1.3.6'
38
- gem 'rails', github: 'rails/rails', branch: '5-1-stable'
38
+ gem 'rails', git: 'https://github.com/rails/rails', branch: '5-1-stable'
39
39
  gem 'graphql', '~> 1.9.0'
40
40
  gem 'devise_token_auth', '< 1.2'
41
41
  gem 'rspec-rails', '< 4.0'
@@ -43,7 +43,7 @@ end
43
43
 
44
44
  appraise 'rails5.2-graphql1.8' do
45
45
  gem 'sqlite3', '~> 1.3.6'
46
- gem 'rails', github: 'rails/rails', branch: '5-2-stable'
46
+ gem 'rails', git: 'https://github.com/rails/rails', branch: '5-2-stable'
47
47
  gem 'graphql', '~> 1.8.0'
48
48
  gem 'devise_token_auth', '0.1.43'
49
49
  gem 'devise', '>= 4.4.2'
@@ -52,7 +52,7 @@ end
52
52
 
53
53
  appraise 'rails5.2-graphql1.9' do
54
54
  gem 'sqlite3', '~> 1.3.6'
55
- gem 'rails', github: 'rails/rails', branch: '5-2-stable'
55
+ gem 'rails', git: 'https://github.com/rails/rails', branch: '5-2-stable'
56
56
  gem 'graphql', '~> 1.9.0'
57
57
  gem 'devise_token_auth', '< 1.2'
58
58
  gem 'rspec-rails', '< 4.0'
@@ -60,7 +60,7 @@ end
60
60
 
61
61
  appraise 'rails5.2-graphql1.10' do
62
62
  gem 'sqlite3', '~> 1.3.6'
63
- gem 'rails', github: 'rails/rails', branch: '5-2-stable'
63
+ gem 'rails', git: 'https://github.com/rails/rails', branch: '5-2-stable'
64
64
  gem 'graphql', '~> 1.10.0'
65
65
  gem 'devise_token_auth', '< 1.2'
66
66
  gem 'rspec-rails', '< 4.0'
@@ -68,7 +68,7 @@ end
68
68
 
69
69
  appraise 'rails5.2-graphql1.11' do
70
70
  gem 'sqlite3', '~> 1.3.6'
71
- gem 'rails', github: 'rails/rails', branch: '5-2-stable'
71
+ gem 'rails', git: 'https://github.com/rails/rails', branch: '5-2-stable'
72
72
  gem 'graphql', '~> 1.11.0'
73
73
  gem 'devise_token_auth', '< 1.2'
74
74
  gem 'rspec-rails', '< 4.0'
@@ -76,7 +76,7 @@ end
76
76
 
77
77
  appraise 'rails5.2-graphql1.12' do
78
78
  gem 'sqlite3', '~> 1.3.6'
79
- gem 'rails', github: 'rails/rails', branch: '5-2-stable'
79
+ gem 'rails', git: 'https://github.com/rails/rails', branch: '5-2-stable'
80
80
  gem 'graphql', '~> 1.12.0'
81
81
  gem 'devise_token_auth', '< 1.2'
82
82
  gem 'rspec-rails', '< 4.0'
@@ -85,55 +85,107 @@ end
85
85
  appraise 'rails6.0-graphql1.10' do
86
86
  gem 'sqlite3', '~> 1.4'
87
87
  gem 'devise', '>= 4.7'
88
- gem 'rails', github: 'rails/rails', branch: '6-0-stable'
88
+ gem 'rails', git: 'https://github.com/rails/rails', branch: '6-0-stable'
89
89
  gem 'graphql', '~> 1.10.0'
90
90
  end
91
91
 
92
92
  appraise 'rails6.0-graphql1.11' do
93
93
  gem 'sqlite3', '~> 1.4'
94
94
  gem 'devise', '>= 4.7'
95
- gem 'rails', github: 'rails/rails', branch: '6-0-stable'
95
+ gem 'rails', git: 'https://github.com/rails/rails', branch: '6-0-stable'
96
96
  gem 'graphql', '~> 1.11.0'
97
97
  end
98
98
 
99
99
  appraise 'rails6.0-graphql1.12' do
100
100
  gem 'sqlite3', '~> 1.4'
101
101
  gem 'devise', '>= 4.7'
102
- gem 'rails', github: 'rails/rails', branch: '6-0-stable'
102
+ gem 'rails', git: 'https://github.com/rails/rails', branch: '6-0-stable'
103
103
  gem 'graphql', '~> 1.12.0'
104
104
  end
105
105
 
106
106
  appraise 'rails6.0-graphql1.13' do
107
107
  gem 'sqlite3', '~> 1.4'
108
108
  gem 'devise', '>= 4.7'
109
- gem 'rails', github: 'rails/rails', branch: '6-0-stable'
109
+ gem 'rails', git: 'https://github.com/rails/rails', branch: '6-0-stable'
110
110
  gem 'graphql', '~> 1.13.0'
111
111
  end
112
112
 
113
113
  appraise 'rails6.1-graphql1.10' do
114
114
  gem 'sqlite3', '~> 1.4'
115
115
  gem 'devise', '>= 4.7'
116
- gem 'rails', github: 'rails/rails', branch: '6-1-stable'
116
+ gem 'rails', git: 'https://github.com/rails/rails', branch: '6-1-stable'
117
117
  gem 'graphql', '~> 1.10.0'
118
118
  end
119
119
 
120
120
  appraise 'rails6.1-graphql1.11' do
121
121
  gem 'sqlite3', '~> 1.4'
122
122
  gem 'devise', '>= 4.7'
123
- gem 'rails', github: 'rails/rails', branch: '6-1-stable'
123
+ gem 'rails', git: 'https://github.com/rails/rails', branch: '6-1-stable'
124
124
  gem 'graphql', '~> 1.11.0'
125
125
  end
126
126
 
127
127
  appraise 'rails6.1-graphql1.12' do
128
128
  gem 'sqlite3', '~> 1.4'
129
129
  gem 'devise', '>= 4.7'
130
- gem 'rails', github: 'rails/rails', branch: '6-1-stable'
130
+ gem 'rails', git: 'https://github.com/rails/rails', branch: '6-1-stable'
131
131
  gem 'graphql', '~> 1.12.0'
132
132
  end
133
133
 
134
134
  appraise 'rails6.1-graphql1.13' do
135
135
  gem 'sqlite3', '~> 1.4'
136
136
  gem 'devise', '>= 4.7'
137
- gem 'rails', github: 'rails/rails', branch: '6-1-stable'
137
+ gem 'rails', git: 'https://github.com/rails/rails', branch: '6-1-stable'
138
138
  gem 'graphql', '~> 1.13.0'
139
139
  end
140
+
141
+ appraise 'rails6.1-graphql2.0' do
142
+ gem 'sqlite3', '~> 1.4'
143
+ gem 'devise', '>= 4.7'
144
+ gem 'rails', git: 'https://github.com/rails/rails', branch: '6-1-stable'
145
+ gem 'graphql', '~> 2.0.1'
146
+ end
147
+
148
+ appraise 'rails7.0-graphql1.10' do
149
+ gem 'sassc-rails'
150
+ gem 'sqlite3', '~> 1.4'
151
+ gem 'devise', '>= 4.7'
152
+ gem 'devise_token_auth', git: 'https://github.com/lynndylanhurley/devise_token_auth', branch: 'master'
153
+ gem 'rails', git: 'https://github.com/rails/rails', branch: '7-0-stable'
154
+ gem 'graphql', '~> 1.10.0'
155
+ end
156
+
157
+ appraise 'rails7.0-graphql1.11' do
158
+ gem 'sassc-rails'
159
+ gem 'sqlite3', '~> 1.4'
160
+ gem 'devise', '>= 4.7'
161
+ gem 'devise_token_auth', git: 'https://github.com/lynndylanhurley/devise_token_auth', branch: 'master'
162
+ gem 'rails', git: 'https://github.com/rails/rails', branch: '7-0-stable'
163
+ gem 'graphql', '~> 1.11.0'
164
+ end
165
+
166
+ appraise 'rails7.0-graphql1.12' do
167
+ gem 'sassc-rails'
168
+ gem 'sqlite3', '~> 1.4'
169
+ gem 'devise', '>= 4.7'
170
+ gem 'devise_token_auth', git: 'https://github.com/lynndylanhurley/devise_token_auth', branch: 'master'
171
+ gem 'rails', git: 'https://github.com/rails/rails', branch: '7-0-stable'
172
+ gem 'graphql', '~> 1.12.0'
173
+ end
174
+
175
+ appraise 'rails7.0-graphql1.13' do
176
+ gem 'sassc-rails'
177
+ gem 'sqlite3', '~> 1.4'
178
+ gem 'devise', '>= 4.7'
179
+ gem 'devise_token_auth', git: 'https://github.com/lynndylanhurley/devise_token_auth', branch: 'master'
180
+ gem 'rails', git: 'https://github.com/rails/rails', branch: '7-0-stable'
181
+ gem 'graphql', '~> 1.13.0'
182
+ end
183
+
184
+ appraise 'rails7.0-graphql_edge' do
185
+ gem 'sassc-rails'
186
+ gem 'sqlite3', '~> 1.4'
187
+ gem 'devise_token_auth', git: 'https://github.com/lynndylanhurley/devise_token_auth', branch: 'master'
188
+ gem 'devise', '>= 4.7'
189
+ gem 'rails', git: 'https://github.com/rails/rails', branch: '7-0-stable'
190
+ gem 'graphql', git: 'https://github.com/rmosolgo/graphql-ruby', branch: 'master'
191
+ end
data/CHANGELOG.md CHANGED
@@ -1,5 +1,58 @@
1
1
  # Changelog
2
2
 
3
+ ## [v1.0.0](https://github.com/graphql-devise/graphql_devise/tree/v1.0.0) (2022-08-04)
4
+
5
+ [Full Changelog](https://github.com/graphql-devise/graphql_devise/compare/v0.18.2...v1.0.0)
6
+
7
+ **Breaking changes:**
8
+
9
+ - Remove deprecated model and controller concerns [\#214](https://github.com/graphql-devise/graphql_devise/pull/214) ([mcelicalderon](https://github.com/mcelicalderon))
10
+ - Load reqs with zeitwerk \(drop ruby 2.3 support\) [\#209](https://github.com/graphql-devise/graphql_devise/pull/209) ([00dav00](https://github.com/00dav00))
11
+ - Remove deprecated authentication methods [\#199](https://github.com/graphql-devise/graphql_devise/pull/199) ([mcelicalderon](https://github.com/mcelicalderon))
12
+ - Remove all deprecated queries before v1.0 release [\#198](https://github.com/graphql-devise/graphql_devise/pull/198) ([mcelicalderon](https://github.com/mcelicalderon))
13
+ - Drop support for ruby 2.2 [\#197](https://github.com/graphql-devise/graphql_devise/pull/197) ([mcelicalderon](https://github.com/mcelicalderon))
14
+
15
+ **Implemented enhancements:**
16
+
17
+ - Add GraphQL 2 support [\#222](https://github.com/graphql-devise/graphql_devise/pull/222) ([mcelicalderon](https://github.com/mcelicalderon))
18
+ - Add support for graphql 1.13 [\#205](https://github.com/graphql-devise/graphql_devise/pull/205) ([mcelicalderon](https://github.com/mcelicalderon))
19
+
20
+ **Closed issues:**
21
+
22
+ - Uninitialized constant GraphqlDevise [\#216](https://github.com/graphql-devise/graphql_devise/issues/216)
23
+
24
+ **Merged pull requests:**
25
+
26
+ - Remove deprecations from docs before v1 release [\#201](https://github.com/graphql-devise/graphql_devise/pull/201) ([mcelicalderon](https://github.com/mcelicalderon))
27
+
28
+ ## [v0.18.2](https://github.com/graphql-devise/graphql_devise/tree/v0.18.2) (2022-03-09)
29
+
30
+ [Full Changelog](https://github.com/graphql-devise/graphql_devise/compare/v0.18.1...v0.18.2)
31
+
32
+ **Implemented enhancements:**
33
+
34
+ - Silence graphql\_definition deprecation warning before suporting GQL 2.0 [\#217](https://github.com/graphql-devise/graphql_devise/pull/217) ([janraasch](https://github.com/janraasch))
35
+
36
+ ## [v0.18.1](https://github.com/graphql-devise/graphql_devise/tree/v0.18.1) (2022-03-06)
37
+
38
+ [Full Changelog](https://github.com/graphql-devise/graphql_devise/compare/v0.18.0...v0.18.1)
39
+
40
+ **Deprecated:**
41
+
42
+ - Deprecate model and controller concerns. Provide new versions [\#213](https://github.com/graphql-devise/graphql_devise/pull/213) ([mcelicalderon](https://github.com/mcelicalderon))
43
+
44
+ ## [v0.18.0](https://github.com/graphql-devise/graphql_devise/tree/v0.18.0) (2022-02-08)
45
+
46
+ [Full Changelog](https://github.com/graphql-devise/graphql_devise/compare/v0.17.1...v0.18.0)
47
+
48
+ **Implemented enhancements:**
49
+
50
+ - Support GQL 1.13 [\#211](https://github.com/graphql-devise/graphql_devise/pull/211) ([mcelicalderon](https://github.com/mcelicalderon))
51
+
52
+ **Closed issues:**
53
+
54
+ - Potential Bug For MailHelper [\#144](https://github.com/graphql-devise/graphql_devise/issues/144)
55
+
3
56
  ## [v0.17.1](https://github.com/graphql-devise/graphql_devise/tree/v0.17.1) (2021-08-02)
4
57
 
5
58
  [Full Changelog](https://github.com/graphql-devise/graphql_devise/compare/v0.17.0...v0.17.1)