solidus_auth_devise 2.4.0 → 2.5.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.
Potentially problematic release.
This version of solidus_auth_devise might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.gem_release.yml +3 -8
- data/.github/stale.yml +17 -0
- data/.gitignore +12 -8
- data/.rubocop.yml +1 -325
- data/CHANGELOG.md +35 -7
- data/Gemfile +16 -19
- data/{LICENSE.md → LICENSE} +2 -2
- data/app/models/spree/user.rb +2 -0
- data/bin/console +17 -0
- data/bin/rails +12 -4
- data/bin/setup +8 -0
- data/db/migrate/20200417153503_add_unconfirmed_email_to_spree_users.rb +7 -0
- data/lib/{controllers/backend → decorators/backend/controllers}/spree/admin/base_controller_decorator.rb +0 -0
- data/lib/{controllers/backend → decorators/backend/controllers}/spree/admin/orders/customer_details_controller_decorator.rb +0 -0
- data/lib/{controllers/frontend → decorators/frontend/controllers}/spree/checkout_controller_decorator.rb +0 -0
- data/lib/generators/solidus/auth/install/install_generator.rb +11 -1
- data/lib/solidus_auth_devise.rb +11 -5
- data/lib/spree/auth/devise.rb +0 -7
- data/lib/spree/auth/engine.rb +46 -35
- data/lib/spree/auth/version.rb +1 -1
- data/lib/views/backend/spree/admin/user_sessions/new.html.erb +2 -2
- data/solidus_auth_devise.gemspec +29 -35
- data/spec/controllers/spree/admin/base_controller_spec.rb +53 -0
- data/spec/controllers/spree/base_controller_spec.rb +53 -0
- data/spec/features/admin/password_reset_spec.rb +3 -3
- data/spec/features/checkout_spec.rb +7 -32
- data/spec/features/confirmation_spec.rb +2 -3
- data/spec/models/user_spec.rb +13 -8
- data/spec/spec_helper.rb +10 -8
- data/spec/support/confirm_helpers.rb +19 -10
- data/spec/support/features/fill_addresses_fields.rb +29 -0
- metadata +302 -280
- data/lib/assets/javascripts/spree/backend/solidus_auth.js +0 -1
- data/lib/assets/javascripts/spree/frontend/solidus_auth.js +0 -1
- data/lib/assets/stylesheets/spree/backend/solidus_auth.css +0 -3
- data/lib/assets/stylesheets/spree/frontend/solidus_auth.css +0 -3
- data/spec/features/admin/orders_spec.rb +0 -31
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 07d0878ca14b5ff8d7dd870f865fcd9b345dd08de06753b620e01c0651501ae5
|
4
|
+
data.tar.gz: 3f75127447b7102dd51b4738f9e784b0f131c2b19ed53d934f1e45ba13ddde36
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a24d4e06574aec5cd75c2f261eafaeda32bb7d53b939f3ab9ba25152be9af935febcd91b373ce35b53138db43dfd3cd277bd6875fedd1bc2c737ffa598a16b5
|
7
|
+
data.tar.gz: ab3ede736804b4ba66eb373c56cacc927c360eacc615dcc1df945f8c10b222ecf24116c061e03b3a47321b6576497c38bcfb9bf1a977f6e918ddf2b712277d56
|
data/.gem_release.yml
CHANGED
@@ -1,10 +1,5 @@
|
|
1
1
|
bump:
|
2
|
+
recurse: false
|
2
3
|
file: 'lib/spree/auth/version.rb'
|
3
|
-
message: Bump
|
4
|
-
|
5
|
-
commit: true
|
6
|
-
push: true
|
7
|
-
|
8
|
-
tag:
|
9
|
-
push: true
|
10
|
-
remote: upstream
|
4
|
+
message: Bump SolidusAuthDevise to %{version}
|
5
|
+
tag: true
|
data/.github/stale.yml
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
# Number of days of inactivity before an issue becomes stale
|
2
|
+
daysUntilStale: 60
|
3
|
+
# Number of days of inactivity before a stale issue is closed
|
4
|
+
daysUntilClose: 7
|
5
|
+
# Issues with these labels will never be considered stale
|
6
|
+
exemptLabels:
|
7
|
+
- pinned
|
8
|
+
- security
|
9
|
+
# Label to use when marking an issue as stale
|
10
|
+
staleLabel: wontfix
|
11
|
+
# Comment to post when marking an issue as stale. Set to `false` to disable
|
12
|
+
markComment: >
|
13
|
+
This issue has been automatically marked as stale because it has not had
|
14
|
+
recent activity. It will be closed if no further activity occurs. Thank you
|
15
|
+
for your contributions.
|
16
|
+
# Comment to post when closing a stale issue. Set to `false` to disable
|
17
|
+
closeComment: false
|
data/.gitignore
CHANGED
@@ -1,12 +1,16 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
*.gem
|
2
|
+
\#*
|
3
|
+
*~
|
4
|
+
.#*
|
5
|
+
.DS_Store
|
6
|
+
.idea
|
7
|
+
.project
|
3
8
|
.sass-cache
|
4
9
|
coverage
|
5
10
|
Gemfile.lock
|
6
|
-
|
7
|
-
|
8
|
-
.ruby-gemsets
|
9
|
-
.ruby-version
|
10
|
-
.bundle
|
11
|
+
tmp
|
12
|
+
nbproject
|
11
13
|
pkg
|
12
|
-
|
14
|
+
*.swp
|
15
|
+
spec/dummy
|
16
|
+
spec/examples.txt
|
data/.rubocop.yml
CHANGED
@@ -1,326 +1,2 @@
|
|
1
1
|
require:
|
2
|
-
- rubocop
|
3
|
-
- rubocop-rails
|
4
|
-
|
5
|
-
# Relaxed.Ruby.Style
|
6
|
-
|
7
|
-
AllCops:
|
8
|
-
Exclude:
|
9
|
-
- 'spec/dummy/**/*'
|
10
|
-
- 'app/overrides/*'
|
11
|
-
- 'bin/**'
|
12
|
-
TargetRubyVersion: 2.3
|
13
|
-
|
14
|
-
|
15
|
-
Rails/Output:
|
16
|
-
Exclude:
|
17
|
-
- 'db/default/users.rb'
|
18
|
-
|
19
|
-
# Sometimes I believe this reads better
|
20
|
-
# This also causes spacing issues on multi-line fixes
|
21
|
-
Style/BracesAroundHashParameters:
|
22
|
-
Enabled: false
|
23
|
-
|
24
|
-
# We use class vars and will have to continue doing so for compatability
|
25
|
-
Style/ClassVars:
|
26
|
-
Enabled: false
|
27
|
-
|
28
|
-
# We need these names for backwards compatability
|
29
|
-
Naming/PredicateName:
|
30
|
-
Enabled: false
|
31
|
-
|
32
|
-
Naming/AccessorMethodName:
|
33
|
-
Enabled: false
|
34
|
-
|
35
|
-
# This has been used for customization
|
36
|
-
Style/MutableConstant:
|
37
|
-
Enabled: false
|
38
|
-
|
39
|
-
Style/ClassAndModuleChildren:
|
40
|
-
Enabled: false
|
41
|
-
|
42
|
-
Style/EmptyElse:
|
43
|
-
Enabled: false
|
44
|
-
|
45
|
-
Style/GuardClause:
|
46
|
-
Enabled: false
|
47
|
-
|
48
|
-
Style/Next:
|
49
|
-
Enabled: false
|
50
|
-
|
51
|
-
Style/NumericPredicate:
|
52
|
-
Enabled: false
|
53
|
-
|
54
|
-
Style/WordArray:
|
55
|
-
Enabled: false
|
56
|
-
|
57
|
-
Style/ConditionalAssignment:
|
58
|
-
Enabled: false
|
59
|
-
|
60
|
-
Style/RaiseArgs:
|
61
|
-
Enabled: false
|
62
|
-
|
63
|
-
Naming/BinaryOperatorParameterName:
|
64
|
-
Enabled: false
|
65
|
-
|
66
|
-
# We can use good judgement here
|
67
|
-
Style/RegexpLiteral:
|
68
|
-
Enabled: false
|
69
|
-
|
70
|
-
# Unicode comments are useful
|
71
|
-
Style/AsciiComments:
|
72
|
-
Enabled: false
|
73
|
-
|
74
|
-
Layout/EndAlignment:
|
75
|
-
Enabled: false
|
76
|
-
|
77
|
-
Layout/ElseAlignment:
|
78
|
-
Enabled: false
|
79
|
-
|
80
|
-
Layout/IndentationWidth:
|
81
|
-
Enabled: false
|
82
|
-
|
83
|
-
Layout/AlignParameters:
|
84
|
-
Enabled: false
|
85
|
-
|
86
|
-
Layout/ClosingParenthesisIndentation:
|
87
|
-
Enabled: false
|
88
|
-
|
89
|
-
Layout/MultilineMethodCallIndentation:
|
90
|
-
Enabled: false
|
91
|
-
|
92
|
-
Layout/IndentFirstArrayElement:
|
93
|
-
Enabled: false
|
94
|
-
|
95
|
-
Layout/IndentFirstHashElement:
|
96
|
-
Enabled: false
|
97
|
-
|
98
|
-
Layout/AlignHash:
|
99
|
-
Enabled: false
|
100
|
-
|
101
|
-
Style/TrailingCommaInArguments:
|
102
|
-
Enabled: false
|
103
|
-
|
104
|
-
Style/TrailingCommaInArrayLiteral:
|
105
|
-
Enabled: false
|
106
|
-
|
107
|
-
Style/TrailingCommaInHashLiteral:
|
108
|
-
Enabled: false
|
109
|
-
|
110
|
-
# Symbol Arrays are ok and the %i syntax widely unknown
|
111
|
-
Style/SymbolArray:
|
112
|
-
Enabled: false
|
113
|
-
|
114
|
-
Rails/DynamicFindBy:
|
115
|
-
Whitelist:
|
116
|
-
- find_by_param
|
117
|
-
- find_by_param!
|
118
|
-
|
119
|
-
# We use a lot of
|
120
|
-
#
|
121
|
-
# expect {
|
122
|
-
# something
|
123
|
-
# }.to { happen }
|
124
|
-
#
|
125
|
-
# syntax in the specs files.
|
126
|
-
Lint/AmbiguousBlockAssociation:
|
127
|
-
Exclude:
|
128
|
-
- '*/spec/**/*'
|
129
|
-
- 'spec/**/*' # For the benefit of apps that inherit from this config
|
130
|
-
|
131
|
-
# We use eval to add common_spree_dependencies into the Gemfiles of each of our gems
|
132
|
-
Security/Eval:
|
133
|
-
Exclude:
|
134
|
-
- 'Gemfile'
|
135
|
-
- 'common_spree_dependencies.rb'
|
136
|
-
- '*/Gemfile'
|
137
|
-
|
138
|
-
Naming/VariableNumber:
|
139
|
-
Enabled: false
|
140
|
-
|
141
|
-
# Write empty methods as you wish.
|
142
|
-
Style/EmptyMethod:
|
143
|
-
Enabled: false
|
144
|
-
|
145
|
-
# From http://relaxed.ruby.style/
|
146
|
-
|
147
|
-
Style/Alias:
|
148
|
-
Enabled: false
|
149
|
-
StyleGuide: http://relaxed.ruby.style/#stylealias
|
150
|
-
|
151
|
-
Style/BeginBlock:
|
152
|
-
Enabled: false
|
153
|
-
StyleGuide: http://relaxed.ruby.style/#stylebeginblock
|
154
|
-
|
155
|
-
Style/BlockDelimiters:
|
156
|
-
Enabled: false
|
157
|
-
StyleGuide: http://relaxed.ruby.style/#styleblockdelimiters
|
158
|
-
|
159
|
-
Style/Documentation:
|
160
|
-
Enabled: false
|
161
|
-
StyleGuide: http://relaxed.ruby.style/#styledocumentation
|
162
|
-
|
163
|
-
Layout/DotPosition:
|
164
|
-
Enabled: false
|
165
|
-
StyleGuide: http://relaxed.ruby.style/#styledotposition
|
166
|
-
|
167
|
-
Style/DoubleNegation:
|
168
|
-
Enabled: false
|
169
|
-
StyleGuide: http://relaxed.ruby.style/#styledoublenegation
|
170
|
-
|
171
|
-
Style/EndBlock:
|
172
|
-
Enabled: false
|
173
|
-
StyleGuide: http://relaxed.ruby.style/#styleendblock
|
174
|
-
|
175
|
-
Style/FormatString:
|
176
|
-
Enabled: false
|
177
|
-
StyleGuide: http://relaxed.ruby.style/#styleformatstring
|
178
|
-
|
179
|
-
Style/IfUnlessModifier:
|
180
|
-
Enabled: false
|
181
|
-
StyleGuide: http://relaxed.ruby.style/#styleifunlessmodifier
|
182
|
-
|
183
|
-
Style/Lambda:
|
184
|
-
Enabled: false
|
185
|
-
StyleGuide: http://relaxed.ruby.style/#stylelambda
|
186
|
-
|
187
|
-
Style/ModuleFunction:
|
188
|
-
Enabled: false
|
189
|
-
StyleGuide: http://relaxed.ruby.style/#stylemodulefunction
|
190
|
-
|
191
|
-
Style/MultilineBlockChain:
|
192
|
-
Enabled: false
|
193
|
-
StyleGuide: http://relaxed.ruby.style/#stylemultilineblockchain
|
194
|
-
|
195
|
-
Style/NegatedIf:
|
196
|
-
Enabled: false
|
197
|
-
StyleGuide: http://relaxed.ruby.style/#stylenegatedif
|
198
|
-
|
199
|
-
Style/NegatedWhile:
|
200
|
-
Enabled: false
|
201
|
-
StyleGuide: http://relaxed.ruby.style/#stylenegatedwhile
|
202
|
-
|
203
|
-
Style/ParallelAssignment:
|
204
|
-
Enabled: false
|
205
|
-
StyleGuide: http://relaxed.ruby.style/#styleparallelassignment
|
206
|
-
|
207
|
-
Style/PercentLiteralDelimiters:
|
208
|
-
Enabled: false
|
209
|
-
StyleGuide: http://relaxed.ruby.style/#stylepercentliteraldelimiters
|
210
|
-
|
211
|
-
Style/PerlBackrefs:
|
212
|
-
Enabled: false
|
213
|
-
StyleGuide: http://relaxed.ruby.style/#styleperlbackrefs
|
214
|
-
|
215
|
-
Style/Semicolon:
|
216
|
-
Enabled: false
|
217
|
-
StyleGuide: http://relaxed.ruby.style/#stylesemicolon
|
218
|
-
|
219
|
-
Style/SignalException:
|
220
|
-
Enabled: false
|
221
|
-
StyleGuide: http://relaxed.ruby.style/#stylesignalexception
|
222
|
-
|
223
|
-
Style/SingleLineBlockParams:
|
224
|
-
Enabled: false
|
225
|
-
StyleGuide: http://relaxed.ruby.style/#stylesinglelineblockparams
|
226
|
-
|
227
|
-
Style/SingleLineMethods:
|
228
|
-
Enabled: false
|
229
|
-
StyleGuide: http://relaxed.ruby.style/#stylesinglelinemethods
|
230
|
-
|
231
|
-
Layout/SpaceBeforeBlockBraces:
|
232
|
-
Enabled: false
|
233
|
-
StyleGuide: http://relaxed.ruby.style/#stylespacebeforeblockbraces
|
234
|
-
|
235
|
-
Layout/SpaceInsideParens:
|
236
|
-
Enabled: false
|
237
|
-
StyleGuide: http://relaxed.ruby.style/#stylespaceinsideparens
|
238
|
-
|
239
|
-
Style/SpecialGlobalVars:
|
240
|
-
Enabled: false
|
241
|
-
StyleGuide: http://relaxed.ruby.style/#stylespecialglobalvars
|
242
|
-
|
243
|
-
Style/StringLiterals:
|
244
|
-
Enabled: false
|
245
|
-
StyleGuide: http://relaxed.ruby.style/#stylestringliterals
|
246
|
-
|
247
|
-
Style/SymbolProc:
|
248
|
-
Enabled: false
|
249
|
-
|
250
|
-
Style/TernaryParentheses:
|
251
|
-
Enabled: false
|
252
|
-
|
253
|
-
Style/WhileUntilModifier:
|
254
|
-
Enabled: false
|
255
|
-
StyleGuide: http://relaxed.ruby.style/#stylewhileuntilmodifier
|
256
|
-
|
257
|
-
Lint/AmbiguousRegexpLiteral:
|
258
|
-
Enabled: false
|
259
|
-
StyleGuide: http://relaxed.ruby.style/#lintambiguousregexpliteral
|
260
|
-
|
261
|
-
Lint/AssignmentInCondition:
|
262
|
-
Enabled: false
|
263
|
-
StyleGuide: http://relaxed.ruby.style/#lintassignmentincondition
|
264
|
-
|
265
|
-
Metrics/AbcSize:
|
266
|
-
Enabled: false
|
267
|
-
|
268
|
-
Metrics/BlockNesting:
|
269
|
-
Enabled: false
|
270
|
-
|
271
|
-
Metrics/ClassLength:
|
272
|
-
Enabled: false
|
273
|
-
|
274
|
-
Metrics/ModuleLength:
|
275
|
-
Enabled: false
|
276
|
-
|
277
|
-
Metrics/BlockLength:
|
278
|
-
Enabled: false
|
279
|
-
|
280
|
-
Metrics/CyclomaticComplexity:
|
281
|
-
Enabled: false
|
282
|
-
|
283
|
-
Metrics/LineLength:
|
284
|
-
Enabled: false
|
285
|
-
|
286
|
-
Metrics/MethodLength:
|
287
|
-
Enabled: false
|
288
|
-
|
289
|
-
Metrics/ParameterLists:
|
290
|
-
Enabled: false
|
291
|
-
|
292
|
-
Metrics/PerceivedComplexity:
|
293
|
-
Enabled: false
|
294
|
-
|
295
|
-
Bundler/OrderedGems:
|
296
|
-
Enabled: false
|
297
|
-
|
298
|
-
Style/NumericLiterals:
|
299
|
-
Enabled: false
|
300
|
-
|
301
|
-
Style/FrozenStringLiteralComment:
|
302
|
-
Enabled: true
|
303
|
-
EnforcedStyle: always
|
304
|
-
|
305
|
-
# json.() is idiomatic in jbuilder files
|
306
|
-
Style/LambdaCall:
|
307
|
-
Enabled: false
|
308
|
-
|
309
|
-
Naming/UncommunicativeMethodParamName:
|
310
|
-
AllowedNames:
|
311
|
-
- id
|
312
|
-
- to
|
313
|
-
- _
|
314
|
-
|
315
|
-
# Rubocop doesn't understand side-effects
|
316
|
-
Style/IdenticalConditionalBranches:
|
317
|
-
Enabled: false
|
318
|
-
|
319
|
-
Naming/MemoizedInstanceVariableName:
|
320
|
-
Enabled: false
|
321
|
-
|
322
|
-
Lint/UselessComparison:
|
323
|
-
Enabled: false
|
324
|
-
|
325
|
-
Lint/HandleExceptions:
|
326
|
-
Enabled: false
|
2
|
+
- solidus_dev_support/rubocop
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,33 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## [Unreleased](https://github.com/solidusio/solidus_auth_devise/tree/HEAD)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/solidusio/solidus_auth_devise/compare/v2.4.0...HEAD)
|
6
|
+
|
7
|
+
**Closed issues:**
|
8
|
+
|
9
|
+
- Bug: NameError [\#174](https://github.com/solidusio/solidus_auth_devise/issues/174)
|
10
|
+
|
11
|
+
## [v2.4.0](https://github.com/solidusio/solidus_auth_devise/tree/v2.4.0) (2019-11-18)
|
12
|
+
[Full Changelog](https://github.com/solidusio/solidus_auth_devise/compare/v2.3.0...v2.4.0)
|
13
|
+
|
14
|
+
**Implemented enhancements:**
|
15
|
+
|
16
|
+
- Add an automatic CHANGELOG generator [\#154](https://github.com/solidusio/solidus_auth_devise/issues/154)
|
17
|
+
|
18
|
+
**Closed issues:**
|
19
|
+
|
20
|
+
- Rails 6, Production only issue, works fine in dev, tripped up assets:precompile build process on Heroku, compiled fine locally. [\#175](https://github.com/solidusio/solidus_auth_devise/issues/175)
|
21
|
+
- Spree.user\_class not using my specific class [\#169](https://github.com/solidusio/solidus_auth_devise/issues/169)
|
22
|
+
- Missing `config.secret\_key\_base` from default devise.rb? [\#33](https://github.com/solidusio/solidus_auth_devise/issues/33)
|
23
|
+
|
24
|
+
**Merged pull requests:**
|
25
|
+
|
26
|
+
- Fixes for Zeitwerk [\#176](https://github.com/solidusio/solidus_auth_devise/pull/176) ([kennyadsl](https://github.com/kennyadsl))
|
27
|
+
- Update it translations [\#172](https://github.com/solidusio/solidus_auth_devise/pull/172) ([delphaber](https://github.com/delphaber))
|
28
|
+
- Relax sqlite3 dependency for Rails 6 support [\#170](https://github.com/solidusio/solidus_auth_devise/pull/170) ([aldesantis](https://github.com/aldesantis))
|
29
|
+
- Allow admins to reset an user's password through the admin panel [\#146](https://github.com/solidusio/solidus_auth_devise/pull/146) ([aitbw](https://github.com/aitbw))
|
30
|
+
|
3
31
|
## [v2.3.0](https://github.com/solidusio/solidus_auth_devise/tree/v2.3.0) (2019-08-19)
|
4
32
|
[Full Changelog](https://github.com/solidusio/solidus_auth_devise/compare/v2.2.0...v2.3.0)
|
5
33
|
|
@@ -17,6 +45,7 @@
|
|
17
45
|
- Fix minor grammar concerns in console messages [\#162](https://github.com/solidusio/solidus_auth_devise/pull/162) ([jacobherrington](https://github.com/jacobherrington))
|
18
46
|
- Logout with DELETE verb by default [\#161](https://github.com/solidusio/solidus_auth_devise/pull/161) ([kennyadsl](https://github.com/kennyadsl))
|
19
47
|
- Use secret\_key\_base for Rails 6 compatibility [\#160](https://github.com/solidusio/solidus_auth_devise/pull/160) ([aldesantis](https://github.com/aldesantis))
|
48
|
+
- Improve decorators [\#159](https://github.com/solidusio/solidus_auth_devise/pull/159) ([jacobherrington](https://github.com/jacobherrington))
|
20
49
|
- Add rubocop as a development dependency [\#158](https://github.com/solidusio/solidus_auth_devise/pull/158) ([jacobherrington](https://github.com/jacobherrington))
|
21
50
|
- Update confusing i18n translation [\#157](https://github.com/solidusio/solidus_auth_devise/pull/157) ([jacobherrington](https://github.com/jacobherrington))
|
22
51
|
- Remove flash errors from password recovery [\#156](https://github.com/solidusio/solidus_auth_devise/pull/156) ([jacobherrington](https://github.com/jacobherrington))
|
@@ -38,7 +67,6 @@
|
|
38
67
|
|
39
68
|
**Merged pull requests:**
|
40
69
|
|
41
|
-
- Improve decorators [\#159](https://github.com/solidusio/solidus_auth_devise/pull/159) ([jacobherrington](https://github.com/jacobherrington))
|
42
70
|
- Add v2.2.0 CHANGELOG entries [\#153](https://github.com/solidusio/solidus_auth_devise/pull/153) ([kennyadsl](https://github.com/kennyadsl))
|
43
71
|
- Add gem-release support [\#152](https://github.com/solidusio/solidus_auth_devise/pull/152) ([kennyadsl](https://github.com/kennyadsl))
|
44
72
|
- Add missing pessimistic versioning [\#149](https://github.com/solidusio/solidus_auth_devise/pull/149) ([aitbw](https://github.com/aitbw))
|
@@ -59,6 +87,8 @@
|
|
59
87
|
- Add Solidus v2.7 to .travis.yml [\#127](https://github.com/solidusio/solidus_auth_devise/pull/127) ([jacobherrington](https://github.com/jacobherrington))
|
60
88
|
- Fix spree routes [\#125](https://github.com/solidusio/solidus_auth_devise/pull/125) ([jtapia](https://github.com/jtapia))
|
61
89
|
- Remove unnecessary decorator [\#122](https://github.com/solidusio/solidus_auth_devise/pull/122) ([jhawthorn](https://github.com/jhawthorn))
|
90
|
+
- Disable backend footer profile edit link if role cannot edit users [\#120](https://github.com/solidusio/solidus_auth_devise/pull/120) ([gianlucarizzo](https://github.com/gianlucarizzo))
|
91
|
+
- update spec according new solidus behaviour for 404 [\#115](https://github.com/solidusio/solidus_auth_devise/pull/115) ([ccarruitero](https://github.com/ccarruitero))
|
62
92
|
|
63
93
|
## [v2.1.0](https://github.com/solidusio/solidus_auth_devise/tree/v2.1.0) (2018-01-22)
|
64
94
|
[Full Changelog](https://github.com/solidusio/solidus_auth_devise/compare/v2.0.0...v2.1.0)
|
@@ -70,7 +100,6 @@
|
|
70
100
|
**Merged pull requests:**
|
71
101
|
|
72
102
|
- Remove unused helper include [\#118](https://github.com/solidusio/solidus_auth_devise/pull/118) ([jhawthorn](https://github.com/jhawthorn))
|
73
|
-
- update spec according new solidus behaviour for 404 [\#115](https://github.com/solidusio/solidus_auth_devise/pull/115) ([ccarruitero](https://github.com/ccarruitero))
|
74
103
|
- Don't require deface for solidus 2.5+ [\#114](https://github.com/solidusio/solidus_auth_devise/pull/114) ([jhawthorn](https://github.com/jhawthorn))
|
75
104
|
- Test that we are acting as paranoid not it's behaviour [\#113](https://github.com/solidusio/solidus_auth_devise/pull/113) ([tvdeyen](https://github.com/tvdeyen))
|
76
105
|
- Reset api key when assigning password [\#99](https://github.com/solidusio/solidus_auth_devise/pull/99) ([jhawthorn](https://github.com/jhawthorn))
|
@@ -104,7 +133,6 @@
|
|
104
133
|
- Seed improvements [\#102](https://github.com/solidusio/solidus_auth_devise/pull/102) ([cbrunsdon](https://github.com/cbrunsdon))
|
105
134
|
- Only apply frontend override if frontend present [\#95](https://github.com/solidusio/solidus_auth_devise/pull/95) ([stewart](https://github.com/stewart))
|
106
135
|
- Update outdated development dependencies [\#94](https://github.com/solidusio/solidus_auth_devise/pull/94) ([stewart](https://github.com/stewart))
|
107
|
-
- Remove use of deprecated `bypass` opt for sign\_in [\#93](https://github.com/solidusio/solidus_auth_devise/pull/93) ([stewart](https://github.com/stewart))
|
108
136
|
- Wrap use of `helper\_method` in `respond\_to?` [\#92](https://github.com/solidusio/solidus_auth_devise/pull/92) ([stewart](https://github.com/stewart))
|
109
137
|
- Remove unused line [\#75](https://github.com/solidusio/solidus_auth_devise/pull/75) ([Murph33](https://github.com/Murph33))
|
110
138
|
|
@@ -113,7 +141,7 @@
|
|
113
141
|
|
114
142
|
**Merged pull requests:**
|
115
143
|
|
116
|
-
-
|
144
|
+
- Remove use of deprecated `bypass` opt for sign\_in [\#93](https://github.com/solidusio/solidus_auth_devise/pull/93) ([stewart](https://github.com/stewart))
|
117
145
|
- Remove dependency on json, multi\_json [\#91](https://github.com/solidusio/solidus_auth_devise/pull/91) ([jhawthorn](https://github.com/jhawthorn))
|
118
146
|
- Remove Unnecessary `require` statements. [\#89](https://github.com/solidusio/solidus_auth_devise/pull/89) ([stewart](https://github.com/stewart))
|
119
147
|
- Do not require core email validator [\#87](https://github.com/solidusio/solidus_auth_devise/pull/87) ([tvdeyen](https://github.com/tvdeyen))
|
@@ -169,13 +197,11 @@
|
|
169
197
|
- Flesh out installation instructions [\#66](https://github.com/solidusio/solidus_auth_devise/pull/66) ([stewart](https://github.com/stewart))
|
170
198
|
- Correct Deprecation Errors in CI [\#65](https://github.com/solidusio/solidus_auth_devise/pull/65) ([stewart](https://github.com/stewart))
|
171
199
|
- Add Chinese translations in zh-CN.yml [\#64](https://github.com/solidusio/solidus_auth_devise/pull/64) ([chrisradford](https://github.com/chrisradford))
|
172
|
-
- Loosen devise dependency to ~\> 4.1 [\#63](https://github.com/solidusio/solidus_auth_devise/pull/63) ([jhawthorn](https://github.com/jhawthorn))
|
173
200
|
- Use routes.draw [\#62](https://github.com/solidusio/solidus_auth_devise/pull/62) ([jhawthorn](https://github.com/jhawthorn))
|
174
201
|
- Add guard for frontend-based AuthenticationHelpers [\#60](https://github.com/solidusio/solidus_auth_devise/pull/60) ([stewart](https://github.com/stewart))
|
175
202
|
- Misc: Update Dependency Versions [\#58](https://github.com/solidusio/solidus_auth_devise/pull/58) ([stewart](https://github.com/stewart))
|
176
203
|
- Backend views should only reference backend routes [\#57](https://github.com/solidusio/solidus_auth_devise/pull/57) ([bbuchalter](https://github.com/bbuchalter))
|
177
204
|
- Refactor Spree::Auth::Engine [\#56](https://github.com/solidusio/solidus_auth_devise/pull/56) ([stewart](https://github.com/stewart))
|
178
|
-
- Backend views should only reference backend routes [\#52](https://github.com/solidusio/solidus_auth_devise/pull/52) ([bbuchalter](https://github.com/bbuchalter))
|
179
205
|
- Call set\_current\_order explicitly where we need it [\#51](https://github.com/solidusio/solidus_auth_devise/pull/51) ([Murph33](https://github.com/Murph33))
|
180
206
|
- Misc: Syntax Cleanup [\#50](https://github.com/solidusio/solidus_auth_devise/pull/50) ([stewart](https://github.com/stewart))
|
181
207
|
|
@@ -184,6 +210,8 @@
|
|
184
210
|
|
185
211
|
**Merged pull requests:**
|
186
212
|
|
213
|
+
- Loosen devise dependency to ~\> 4.1 [\#63](https://github.com/solidusio/solidus_auth_devise/pull/63) ([jhawthorn](https://github.com/jhawthorn))
|
214
|
+
- Backend views should only reference backend routes [\#52](https://github.com/solidusio/solidus_auth_devise/pull/52) ([bbuchalter](https://github.com/bbuchalter))
|
187
215
|
- Conditional routing [\#49](https://github.com/solidusio/solidus_auth_devise/pull/49) ([bbuchalter](https://github.com/bbuchalter))
|
188
216
|
- check\_authorization first in CheckoutController [\#47](https://github.com/solidusio/solidus_auth_devise/pull/47) ([bbuchalter](https://github.com/bbuchalter))
|
189
217
|
- Revert "ChcktController checks auth and registration first" [\#46](https://github.com/solidusio/solidus_auth_devise/pull/46) ([bbuchalter](https://github.com/bbuchalter))
|
@@ -194,7 +222,6 @@
|
|
194
222
|
- Update travis.yml [\#39](https://github.com/solidusio/solidus_auth_devise/pull/39) ([jhawthorn](https://github.com/jhawthorn))
|
195
223
|
- Honor guest checkout config [\#36](https://github.com/solidusio/solidus_auth_devise/pull/36) ([bbuchalter](https://github.com/bbuchalter))
|
196
224
|
- Update README testing section [\#35](https://github.com/solidusio/solidus_auth_devise/pull/35) ([bbuchalter](https://github.com/bbuchalter))
|
197
|
-
- Fix specs now that order's store is required [\#34](https://github.com/solidusio/solidus_auth_devise/pull/34) ([jhawthorn](https://github.com/jhawthorn))
|
198
225
|
- Moved the encryptor setting for the User model into the devise config [\#32](https://github.com/solidusio/solidus_auth_devise/pull/32) ([lukepfarrar](https://github.com/lukepfarrar))
|
199
226
|
|
200
227
|
## [v1.3.0](https://github.com/solidusio/solidus_auth_devise/tree/v1.3.0) (2016-01-12)
|
@@ -215,6 +242,7 @@
|
|
215
242
|
|
216
243
|
**Merged pull requests:**
|
217
244
|
|
245
|
+
- Fix specs now that order's store is required [\#34](https://github.com/solidusio/solidus_auth_devise/pull/34) ([jhawthorn](https://github.com/jhawthorn))
|
218
246
|
- Add an explicit require to deface [\#27](https://github.com/solidusio/solidus_auth_devise/pull/27) ([jhawthorn](https://github.com/jhawthorn))
|
219
247
|
- Check if front/backend are available before decorating the controllers [\#25](https://github.com/solidusio/solidus_auth_devise/pull/25) ([nwittstruck](https://github.com/nwittstruck))
|
220
248
|
- Rename spree@example.com to admin@example.com [\#23](https://github.com/solidusio/solidus_auth_devise/pull/23) ([jhawthorn](https://github.com/jhawthorn))
|