solidus_auth_devise 2.2.0 → 2.5.2

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 (116) hide show
  1. checksums.yaml +4 -4
  2. data/.gem_release.yml +3 -8
  3. data/.github/stale.yml +17 -0
  4. data/.gitignore +12 -8
  5. data/.rubocop.yml +2 -0
  6. data/CHANGELOG.md +350 -163
  7. data/Gemfile +20 -22
  8. data/{LICENSE.md → LICENSE} +2 -2
  9. data/README.md +4 -28
  10. data/Rakefile +2 -0
  11. data/app/mailers/spree/user_mailer.rb +4 -2
  12. data/app/models/spree/user.rb +21 -19
  13. data/app/overrides/spree/admin/users/edit/_add_reset_password_form.html.erb.deface +20 -0
  14. data/bin/console +17 -0
  15. data/bin/rails +12 -4
  16. data/bin/setup +8 -0
  17. data/config/initializers/devise.rb +11 -3
  18. data/config/initializers/warden.rb +4 -2
  19. data/config/locales/en.yml +3 -1
  20. data/config/locales/it.yml +4 -4
  21. data/config/routes.rb +5 -11
  22. data/db/default/users.rb +10 -8
  23. data/db/migrate/20101026184949_create_users.rb +9 -7
  24. data/db/migrate/20101026184950_rename_columns_for_devise.rb +3 -0
  25. data/db/migrate/20101214150824_convert_user_remember_field.rb +2 -0
  26. data/db/migrate/20120203010234_add_reset_password_sent_at_to_spree_users.rb +2 -0
  27. data/db/migrate/20120605211305_make_users_email_index_unique.rb +4 -2
  28. data/db/migrate/20140904000425_add_deleted_at_to_users.rb +2 -0
  29. data/db/migrate/20141002154641_add_confirmable_to_users.rb +2 -0
  30. data/db/migrate/20190125170630_add_reset_password_token_index_to_spree_users.rb +4 -2
  31. data/db/migrate/20200417153503_add_unconfirmed_email_to_spree_users.rb +7 -0
  32. data/db/seeds.rb +2 -0
  33. data/lib/controllers/backend/spree/admin/user_passwords_controller.rb +5 -3
  34. data/lib/controllers/backend/spree/admin/user_sessions_controller.rb +11 -8
  35. data/lib/controllers/frontend/spree/user_confirmations_controller.rb +2 -0
  36. data/lib/controllers/frontend/spree/user_passwords_controller.rb +4 -1
  37. data/lib/controllers/frontend/spree/user_registrations_controller.rb +4 -0
  38. data/lib/controllers/frontend/spree/user_sessions_controller.rb +2 -0
  39. data/lib/controllers/frontend/spree/users_controller.rb +17 -14
  40. data/lib/decorators/backend/controllers/spree/admin/base_controller_decorator.rb +20 -0
  41. data/lib/decorators/backend/controllers/spree/admin/orders/customer_details_controller_decorator.rb +22 -0
  42. data/lib/{controllers/frontend → decorators/frontend/controllers}/spree/checkout_controller_decorator.rb +29 -19
  43. data/lib/generators/solidus/auth/install/install_generator.rb +16 -4
  44. data/lib/generators/solidus/auth/install/templates/config/initializers/devise.rb +2 -0
  45. data/lib/solidus/auth.rb +2 -0
  46. data/lib/solidus_auth_devise.rb +12 -12
  47. data/lib/spree/auth/devise.rb +2 -7
  48. data/lib/spree/auth/engine.rb +51 -36
  49. data/lib/spree/auth/version.rb +1 -1
  50. data/{app/models → lib}/spree/auth_configuration.rb +2 -0
  51. data/lib/spree/authentication_helpers.rb +5 -11
  52. data/lib/tasks/auth.rake +3 -1
  53. data/lib/views/backend/spree/admin/shared/_navigation_footer.html.erb +3 -3
  54. data/lib/views/backend/spree/admin/user_passwords/edit.html.erb +4 -4
  55. data/lib/views/backend/spree/admin/user_passwords/new.html.erb +5 -7
  56. data/lib/views/backend/spree/admin/user_sessions/authorization_failure.html.erb +1 -1
  57. data/lib/views/backend/spree/admin/user_sessions/new.html.erb +9 -9
  58. data/lib/views/backend/spree/layouts/admin/_login_nav.html.erb +4 -4
  59. data/lib/views/frontend/spree/checkout/registration.html.erb +4 -4
  60. data/lib/views/frontend/spree/shared/_login.html.erb +4 -4
  61. data/lib/views/frontend/spree/shared/_login_bar_items.html.erb +3 -3
  62. data/lib/views/frontend/spree/shared/_user_form.html.erb +3 -3
  63. data/lib/views/frontend/spree/user_passwords/edit.html.erb +4 -4
  64. data/lib/views/frontend/spree/user_passwords/new.html.erb +5 -7
  65. data/lib/views/frontend/spree/user_registrations/new.html.erb +3 -3
  66. data/lib/views/frontend/spree/user_sessions/authorization_failure.html.erb +1 -1
  67. data/lib/views/frontend/spree/user_sessions/new.html.erb +2 -2
  68. data/lib/views/frontend/spree/users/edit.html.erb +2 -2
  69. data/lib/views/frontend/spree/users/show.html.erb +13 -13
  70. data/solidus_auth_devise.gemspec +40 -35
  71. data/spec/controllers/spree/admin/base_controller_spec.rb +53 -0
  72. data/spec/controllers/spree/admin/user_passwords_controller_spec.rb +2 -0
  73. data/spec/controllers/spree/base_controller_spec.rb +53 -0
  74. data/spec/controllers/spree/checkout_controller_spec.rb +5 -9
  75. data/spec/controllers/spree/products_controller_spec.rb +5 -8
  76. data/spec/controllers/spree/user_passwords_controller_spec.rb +4 -3
  77. data/spec/controllers/spree/user_registrations_controller_spec.rb +3 -2
  78. data/spec/controllers/spree/user_sessions_controller_spec.rb +14 -0
  79. data/spec/controllers/spree/users_controller_spec.rb +2 -2
  80. data/spec/factories/confirmed_user.rb +5 -3
  81. data/spec/features/account_spec.rb +4 -3
  82. data/spec/features/admin/password_reset_spec.rb +66 -10
  83. data/spec/features/admin/products_spec.rb +2 -1
  84. data/spec/features/admin/sign_in_spec.rb +2 -1
  85. data/spec/features/admin/sign_out_spec.rb +2 -1
  86. data/spec/features/admin_permissions_spec.rb +2 -1
  87. data/spec/features/change_email_spec.rb +3 -2
  88. data/spec/features/checkout_spec.rb +14 -37
  89. data/spec/features/confirmation_spec.rb +4 -3
  90. data/spec/features/order_spec.rb +2 -1
  91. data/spec/features/password_reset_spec.rb +23 -10
  92. data/spec/features/sign_in_spec.rb +2 -1
  93. data/spec/features/sign_out_spec.rb +4 -3
  94. data/spec/features/sign_up_spec.rb +2 -1
  95. data/spec/mailers/user_mailer_spec.rb +2 -1
  96. data/spec/models/order_spec.rb +2 -1
  97. data/spec/models/user_spec.rb +15 -9
  98. data/spec/spec_helper.rb +13 -9
  99. data/spec/support/ability.rb +3 -1
  100. data/spec/support/authentication_helpers.rb +2 -0
  101. data/spec/support/confirm_helpers.rb +21 -10
  102. data/spec/support/email.rb +2 -0
  103. data/spec/support/features/fill_addresses_fields.rb +29 -0
  104. data/spec/support/preferences.rb +10 -2
  105. data/spec/support/spree.rb +2 -0
  106. metadata +305 -212
  107. data/.travis.yml +0 -18
  108. data/app/overrides/auth_admin_login_navigation_bar.rb +0 -10
  109. data/app/overrides/auth_shared_login_bar.rb +0 -10
  110. data/lib/assets/javascripts/spree/backend/solidus_auth.js +0 -1
  111. data/lib/assets/javascripts/spree/frontend/solidus_auth.js +0 -1
  112. data/lib/assets/stylesheets/spree/backend/solidus_auth.css +0 -3
  113. data/lib/assets/stylesheets/spree/frontend/solidus_auth.css +0 -3
  114. data/lib/controllers/backend/spree/admin/admin_controller_decorator.rb +0 -11
  115. data/lib/controllers/backend/spree/admin/orders/customer_details_controller_decorator.rb +0 -15
  116. data/spec/features/admin/orders_spec.rb +0 -30
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 559c61d1fca6c80b947025f147de804bfe73a19ee9bd5f4066c2691f3db98dab
4
- data.tar.gz: 7de599e4f661d0265a073f9c9abe2243ed443fb5b47aaa39c2e049461afaff48
3
+ metadata.gz: f2f512d028190d0c6f7af3805c12e287b7c2d7e50cb54f1f9fdec1bbf9750d12
4
+ data.tar.gz: 99f5dec472c7e5a747663ffc573438115e37d7af63281aa91401083b467c69b3
5
5
  SHA512:
6
- metadata.gz: 13f6f1323ae7d1c5fbbf7f7c02b491640a82b2b0ebfff418e11738d5161764a190673cd702ed9fef907e8d3f6e30bde15cd1b621a9ea22ac1d2f513f707dbf86
7
- data.tar.gz: 511c01da048f75ad730af1ef56ad65b64f26483b846ddad7b1976dc7d2e51bbe57d05d61776633be9704ceac8cbff4dbdff1d7401cc04708f1fa319d65d8f1b7
6
+ metadata.gz: 53ccda88e87c185ff0a4a9606e1e7a8d938d8f3a0fd26a23ac2593dd5a1f9c0f8bf51b0916a1fc0042268ca83f437e265269480636100c27b9c135131dfe3731
7
+ data.tar.gz: 3d8558a0b3fbe9ea959649df8c46401e01b6f2c80b29e79141277a962e242b0bed6ef2ad39db816730bcd9ddce0e896c0964f3d0864852dbd82c63e3f6076c09
@@ -1,10 +1,5 @@
1
1
  bump:
2
+ recurse: false
2
3
  file: 'lib/spree/auth/version.rb'
3
- message: Bump Solidus Auth Devise to %{version}
4
- remote: upstream
5
- commit: true
6
- push: true
7
-
8
- tag:
9
- push: true
10
- remote: upstream
4
+ message: Bump SolidusAuthDevise to %{version}
5
+ tag: true
@@ -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
- spec/dummy
2
- spec/examples.txt
1
+ *.gem
2
+ \#*
3
+ *~
4
+ .#*
5
+ .DS_Store
6
+ .idea
7
+ .project
3
8
  .sass-cache
4
9
  coverage
5
10
  Gemfile.lock
6
- *.swp
7
- .rvmrc
8
- .ruby-gemsets
9
- .ruby-version
10
- .bundle
11
+ tmp
12
+ nbproject
11
13
  pkg
12
- vendor
14
+ *.swp
15
+ spec/dummy
16
+ spec/examples.txt
@@ -0,0 +1,2 @@
1
+ require:
2
+ - solidus_dev_support/rubocop
@@ -1,184 +1,371 @@
1
- ## Master (unreleased)
1
+ # Changelog
2
2
 
3
- ## Solidus Auth Devise v2.2.0 (2019-06-13)
3
+ ## [v2.5.2](https://github.com/solidusio/solidus_auth_devise/tree/v2.5.2) (2020-11-11)
4
4
 
5
- * Add DB index to `reset_password_token` field
6
- * Add missing pessimistic versioning
7
- * Add missing translation to `spree.change_my_password`
8
- * Allow Spree::Admin::UserPasswordsController to be accessed from admin
9
- * Disable backend footer profile edit link if role cannot edit users
10
- * Fix issue with redirections using routes like `new_spree_user_session_url`
11
- * Fix migration `20101026184950` `down` method
12
- * Fix to not reuse spree_current_user as `@user`
13
- * Replace Spree.t with I18n.t
14
- * Lock mysql2 to 0.4.x
15
- * Lock SQLite3 to version 1.3
16
- * Remove FactoryBot warnings
17
- * Configure CI to ensure support on ruby 2.3 + Solidus 2.4 - 2.8
5
+ [Full Changelog](https://github.com/solidusio/solidus_auth_devise/compare/v2.5.1...v2.5.2)
18
6
 
19
- ## Solidus Auth Devise v2.1.0 (2018-01-22)
7
+ **Implemented enhancements:**
20
8
 
21
- * Avoid requiring deface on Solidus 2.5+.
9
+ - Replace `I18n.t` with `t` in views [\#200](https://github.com/solidusio/solidus_auth_devise/pull/200) ([spaghetticode](https://github.com/spaghetticode))
22
10
 
23
- On older versions, you may need to add `gem 'deface'` to your gemfile.
11
+ **Merged pull requests:**
24
12
 
25
- * Remove reference to unused admin tables helper removed from Solidus 2.5
13
+ - Update migrations to support Rails 5.1 [\#201](https://github.com/solidusio/solidus_auth_devise/pull/201) ([brchristian](https://github.com/brchristian))
14
+ - Point to Solidus wiki for gem release [\#199](https://github.com/solidusio/solidus_auth_devise/pull/199) ([spaghetticode](https://github.com/spaghetticode))
26
15
 
27
- ## Solidus Auth Devise v2.0.0 (2017-09-20)
16
+ ## [v2.5.1](https://github.com/solidusio/solidus_auth_devise/tree/v2.5.1) (2020-10-23)
28
17
 
29
- * Drop support for Solidus v1.0 and v1.1
30
- * Use `match` for Devise logout route
31
- * Remove references to dash
32
- * Leverage `*_available?` helpers from `solidus-support`
33
- * Use `spec_helper` from `solidus-support`
34
- * Correct `set_current_order` callback for newer versions of Solidus
18
+ [Full Changelog](https://github.com/solidusio/solidus_auth_devise/compare/v2.5.0...v2.5.1)
35
19
 
36
- ## Solidus Auth Devise v1.6.4 (2017-07-24)
20
+ **Closed issues:**
37
21
 
38
- * Fix error trying to call helper_method in api-only applications
39
- * Fix deprecated devise `bypass` option
40
- * Pin development dependencies to minor versions
41
- * Update outdated development dependencies
42
- * Remove implicit dependency on highline
22
+ - Asset compilation crashes on 2.5.0 [\#196](https://github.com/solidusio/solidus_auth_devise/issues/196)
43
23
 
44
- ## Solidus Auth Devise v1.6.3 (2017-05-09)
24
+ **Merged pull requests:**
45
25
 
46
- * Add missing translations for already_authenticated
47
- * Do not require core email validator
48
- * Remove dependency on `json`, `multi_json`
49
- * Remove unnecessary sass/coffeescript requires
50
- * Fix warnings on Rails 5, support Rails 5.1
51
- * Change deface dependency from `~> 1.0.0` to `~> 1.0`
26
+ - Use proper name for add\_migrations [\#198](https://github.com/solidusio/solidus_auth_devise/pull/198) ([peterberkenbosch](https://github.com/peterberkenbosch))
27
+ - Move AuthConfiguration out of autoloading paths [\#197](https://github.com/solidusio/solidus_auth_devise/pull/197) ([elia](https://github.com/elia))
52
28
 
53
- ## Solidus Auth Devise v1.6.2 (2016-11-18)
29
+ ## [v2.5.0](https://github.com/solidusio/solidus_auth_devise/tree/v2.5.0) (2020-10-07)
54
30
 
55
- * Fix an issue where invalid addresses could be persisted after starting a
56
- checkout as a guest and then returning to the cart page.
31
+ [Full Changelog](https://github.com/solidusio/solidus_auth_devise/compare/v2.4.0...v2.5.0)
57
32
 
58
- ## Solidus Auth Devise v1.6.1 (2016-08-24)
33
+ **Implemented enhancements:**
59
34
 
60
- * Replace usages of `before_filter` with `before_action` (#73)
35
+ - Remove admin orders controller specs [\#195](https://github.com/solidusio/solidus_auth_devise/pull/195) ([kennyadsl](https://github.com/kennyadsl))
36
+ - Redirect back if not authorized [\#192](https://github.com/solidusio/solidus_auth_devise/pull/192) ([kennyadsl](https://github.com/kennyadsl))
61
37
 
62
- ## Solidus Auth Devise v1.6.0 (2016-08-23)
38
+ **Closed issues:**
63
39
 
64
- * Loading of routes can be disabled through config (#71)
65
-
66
- * Support for Solidus 2.0 and Rails 5.0
40
+ - Zeitwerk::NameError [\#193](https://github.com/solidusio/solidus_auth_devise/issues/193)
41
+ - Rails 6 and Solidus AuthDevise issues? [\#189](https://github.com/solidusio/solidus_auth_devise/issues/189)
42
+ - Cant locate devise.rb file to locate secret key. [\#188](https://github.com/solidusio/solidus_auth_devise/issues/188)
43
+ - RuntimeError: Can't modify frozen hash [\#184](https://github.com/solidusio/solidus_auth_devise/issues/184)
44
+ - Bug: NameError [\#174](https://github.com/solidusio/solidus_auth_devise/issues/174)
45
+ - `devise.user\_registrations` key is not the same in the view [\#119](https://github.com/solidusio/solidus_auth_devise/issues/119)
46
+ - The update action of the password controller from devise makes my app go into a loop. [\#78](https://github.com/solidusio/solidus_auth_devise/issues/78)
67
47
 
68
- * Remove load-time manipulation of the Devise secret key (#67)
48
+ **Merged pull requests:**
69
49
 
70
- ## Solidus Auth Devise v1.5.0 (2016-07-18)
50
+ - Add option to skip migrations [\#194](https://github.com/solidusio/solidus_auth_devise/pull/194) ([seand7565](https://github.com/seand7565))
51
+ - Bump solidus\_support to latest 0.5 release [\#191](https://github.com/solidusio/solidus_auth_devise/pull/191) ([peterberkenbosch](https://github.com/peterberkenbosch))
52
+ - Fix tests for Devise's :confirmable module [\#190](https://github.com/solidusio/solidus_auth_devise/pull/190) ([aldesantis](https://github.com/aldesantis))
53
+ - Fix chrome warnings [\#187](https://github.com/solidusio/solidus_auth_devise/pull/187) ([coorasse](https://github.com/coorasse))
54
+ - Fill address names combined when needed [\#186](https://github.com/solidusio/solidus_auth_devise/pull/186) ([kennyadsl](https://github.com/kennyadsl))
55
+ - Allow to really\_destroy! users [\#185](https://github.com/solidusio/solidus_auth_devise/pull/185) ([skukx](https://github.com/skukx))
56
+ - Add paranoia dependency explicitly [\#183](https://github.com/solidusio/solidus_auth_devise/pull/183) ([cedum](https://github.com/cedum))
57
+ - Adopt conditional code loading from solidus\_support [\#182](https://github.com/solidusio/solidus_auth_devise/pull/182) ([aldesantis](https://github.com/aldesantis))
58
+ - Upgrade infrastructure with solidus\_dev\_support [\#181](https://github.com/solidusio/solidus_auth_devise/pull/181) ([aldesantis](https://github.com/aldesantis))
59
+ - Add support for Zeitwerk [\#180](https://github.com/solidusio/solidus_auth_devise/pull/180) ([kennyadsl](https://github.com/kennyadsl))
60
+ - Fix feature\_helper require [\#179](https://github.com/solidusio/solidus_auth_devise/pull/179) ([omnistegan](https://github.com/omnistegan))
61
+ - Update postgresql variable name to reflect CircleCI config [\#177](https://github.com/solidusio/solidus_auth_devise/pull/177) ([kennyadsl](https://github.com/kennyadsl))
71
62
 
72
- * Add call to set_current_order on sign in. This replaces a before filter that
73
- is being eliminated from Solidus controllers where set_current_order was
74
- called excessively.
75
-
76
- * Update backend views to only reference backend routes (#57)
77
-
78
- * Devise dependency updates
79
-
80
- The locked versions of Devise and Devise-Encryptable have been updated.
81
- Devise, in particular, has been bumped to a new major version, which removes
82
- support for the following:
83
-
84
- - Rails 3.2. and 4.0
85
- - Ruby 1.9 and 2.0
86
-
87
- These losses are deemed acceptable, as Solidus' core itself does not
88
- support any of these versions.
89
-
90
- For more details on the changes, see the Devise changelog:
91
- https://github.com/plataformatec/devise/blob/master/CHANGELOG.md
92
-
93
- Similar changes in `devise-encryptable`, with details in the changelog:
94
- https://github.com/plataformatec/devise-encryptable/blob/master/Changelog.md
95
-
96
- * Addition of Chinese translations (#64)
97
-
98
- ## Solidus Auth Devise v1.4.0 (2016-05-16)
99
-
100
- * Update hash syntax for routes.rb
101
- * Make route syntax consistent and modern
102
- * Make devise_for routes conditional
103
- * Test against solidus 1.3
104
- * check_authorization first in CheckoutController
105
- * Ensure current_order exists checking registration
106
- * Add vendor to .gitignore
107
- * Revert "ChcktController checks auth and registration first"
108
- * ChcktController checks auth and registration first
109
- * Remove obsolete regression test
110
- * Remove superfluous call to associate_user
111
- * Test and fix order association
112
- * Re-add Solidus 1.0 compatability
113
- * Improve readability of check_registration
114
- * Force registration when guest checkout not allowed
115
- * Improve check_registration spec for guest case
116
- * Add pg and mysql2 to Gemfile
117
- * Also test against v1.1 and v1.2
118
- * Allow https instead of git in gemfile
119
- * Ignore pkg directory
120
- * Update .travis.yml
121
- * Update README testing section
122
- * Fix specs now that order's store is required
123
- * Moved the encryptor setting for the User model into the devise config, allowing it to be easily overridden from the local devise config.
124
-
125
- ## Solidus Auth Devise v1.3.0 (2016-01-12)
126
-
127
- * Add capybara-screenshot
128
- * Remove restriction on sass-rails and coffee-rails
129
- * Remove the "Logged in as:" message
130
- * Correct use of font-awesome
131
- * Swap .inline-menu for specific hook
132
- * Add new template override
133
- * remove duplicate translation
134
- * add missing translations for German locale
135
-
136
- ## Solidus Auth Devise v1.2.3 (2015-11-30)
137
-
138
- * Add an explicit require to deface
139
- * Check if front/backend are available before decorating the controllers
140
- * Rename spree@example.com to admin@example.com
141
- * Skip the confirmation spec
142
- * Permit editing email
143
-
144
- ## Solidus Auth Devise v1.2.2 (2015-10-01)
145
-
146
- * Automatically regenerate a user's spree_api_key upon password change.
147
- * Inherit from Spree::Base
148
- * Explicitely add deface to gemfile
149
- * Remove some redundant includes
150
- * Remove unneeded monkey patching
151
- * Remove brittle spec
152
- * Pass store to from_address helper
153
- * Fix broken specs
154
-
155
- ## Solidus Auth Devise v1.2.0 (2015-07-22)
156
-
157
- * Use new extension point for access denied.
158
- * Explicitly include UserMethods on Spree::User
159
- * Bump rspec to 3.3 and remove minor patch restriction.
160
- * We no longer redirect to admin/orders by default.
161
- * Skip adding devise.rb if it already exists.
162
- * Fix checkout spec
163
- * Bump to RSpec 3.2
164
- * Use non-deprecated `deliver_now` in mailer spec.
165
- * Fix generator name.
166
-
167
- ## Solidus Auth Devise v1.1.0 (2015-06-03)
168
-
169
- * Updates for devise 3.5.1
170
- * Bump devise to ~> 3.5.1
171
- * Avoid stubbing to fix checkout spec
172
- * Minor update to README.md
173
- * Remove Spree::Core::ControllerHelpers::SSL
174
- * Add circle.yml
175
- * Use git+ssh for solidus gem
176
- * Remove dead code.
177
- * Refactor UserSessionsController and specs
178
- * Remove @user from UserRegistrationsController
179
- * Add specs for UserRegistrationsController
180
- * Remove empty overrides in registrations controller
181
-
182
- ## Solidus Auth Devise v1.0.0 (2015-05-26)
183
-
184
- * Initial Release
63
+ ## [v2.4.0](https://github.com/solidusio/solidus_auth_devise/tree/v2.4.0) (2019-11-18)
64
+
65
+ [Full Changelog](https://github.com/solidusio/solidus_auth_devise/compare/v2.3.0...v2.4.0)
66
+
67
+ **Implemented enhancements:**
68
+
69
+ - Add an automatic CHANGELOG generator [\#154](https://github.com/solidusio/solidus_auth_devise/issues/154)
70
+
71
+ **Closed issues:**
72
+
73
+ - 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)
74
+ - Spree.user\_class not using my specific class [\#169](https://github.com/solidusio/solidus_auth_devise/issues/169)
75
+ - Missing `config.secret\_key\_base` from default devise.rb? [\#33](https://github.com/solidusio/solidus_auth_devise/issues/33)
76
+
77
+ **Merged pull requests:**
78
+
79
+ - Fixes for Zeitwerk [\#176](https://github.com/solidusio/solidus_auth_devise/pull/176) ([kennyadsl](https://github.com/kennyadsl))
80
+ - Update it translations [\#172](https://github.com/solidusio/solidus_auth_devise/pull/172) ([delphaber](https://github.com/delphaber))
81
+ - Relax sqlite3 dependency for Rails 6 support [\#170](https://github.com/solidusio/solidus_auth_devise/pull/170) ([aldesantis](https://github.com/aldesantis))
82
+ - 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))
83
+
84
+ ## [v2.3.0](https://github.com/solidusio/solidus_auth_devise/tree/v2.3.0) (2019-08-19)
85
+
86
+ [Full Changelog](https://github.com/solidusio/solidus_auth_devise/compare/v2.2.0...v2.3.0)
87
+
88
+ **Closed issues:**
89
+
90
+ - Any plans to release to RubyGems? [\#147](https://github.com/solidusio/solidus_auth_devise/issues/147)
91
+
92
+ **Merged pull requests:**
93
+
94
+ - Add GitHub changelog generator [\#168](https://github.com/solidusio/solidus_auth_devise/pull/168) ([kennyadsl](https://github.com/kennyadsl))
95
+ - Fix CI issues [\#167](https://github.com/solidusio/solidus_auth_devise/pull/167) ([kennyadsl](https://github.com/kennyadsl))
96
+ - Stub preferences in specs instead of resetting [\#166](https://github.com/solidusio/solidus_auth_devise/pull/166) ([kennyadsl](https://github.com/kennyadsl))
97
+ - Add appropriate classes to admin login button [\#164](https://github.com/solidusio/solidus_auth_devise/pull/164) ([jacobeubanks](https://github.com/jacobeubanks))
98
+ - Extension maintenance [\#163](https://github.com/solidusio/solidus_auth_devise/pull/163) ([kennyadsl](https://github.com/kennyadsl))
99
+ - Fix minor grammar concerns in console messages [\#162](https://github.com/solidusio/solidus_auth_devise/pull/162) ([jacobherrington](https://github.com/jacobherrington))
100
+ - Logout with DELETE verb by default [\#161](https://github.com/solidusio/solidus_auth_devise/pull/161) ([kennyadsl](https://github.com/kennyadsl))
101
+ - Use secret\_key\_base for Rails 6 compatibility [\#160](https://github.com/solidusio/solidus_auth_devise/pull/160) ([aldesantis](https://github.com/aldesantis))
102
+ - Improve decorators [\#159](https://github.com/solidusio/solidus_auth_devise/pull/159) ([jacobherrington](https://github.com/jacobherrington))
103
+ - Add rubocop as a development dependency [\#158](https://github.com/solidusio/solidus_auth_devise/pull/158) ([jacobherrington](https://github.com/jacobherrington))
104
+ - Update confusing i18n translation [\#157](https://github.com/solidusio/solidus_auth_devise/pull/157) ([jacobherrington](https://github.com/jacobherrington))
105
+ - Remove flash errors from password recovery [\#156](https://github.com/solidusio/solidus_auth_devise/pull/156) ([jacobherrington](https://github.com/jacobherrington))
106
+ - Remove flash errors from admin password recovery [\#155](https://github.com/solidusio/solidus_auth_devise/pull/155) ([jacobherrington](https://github.com/jacobherrington))
107
+ - Introduce Rubocop for linting [\#148](https://github.com/solidusio/solidus_auth_devise/pull/148) ([aitbw](https://github.com/aitbw))
108
+
109
+ ## [v2.2.0](https://github.com/solidusio/solidus_auth_devise/tree/v2.2.0) (2019-06-13)
110
+
111
+ [Full Changelog](https://github.com/solidusio/solidus_auth_devise/compare/v2.1.0...v2.2.0)
112
+
113
+ **Closed issues:**
114
+
115
+ - Any plan for replacing paranoia with discard? [\#129](https://github.com/solidusio/solidus_auth_devise/issues/129)
116
+ - rake task solidus\_auth:install:migrations [\#121](https://github.com/solidusio/solidus_auth_devise/issues/121)
117
+ - Issue redirecting to Spree routes [\#100](https://github.com/solidusio/solidus_auth_devise/issues/100)
118
+ - Requiring gem, on API only projects, throws LoadError \(sass/rails\) [\#88](https://github.com/solidusio/solidus_auth_devise/issues/88)
119
+ - db index on reset\_password\_token missing [\#83](https://github.com/solidusio/solidus_auth_devise/issues/83)
120
+ - Let's use more Devise defaults for routing [\#55](https://github.com/solidusio/solidus_auth_devise/issues/55)
121
+ - Fix confirmation\_spec [\#24](https://github.com/solidusio/solidus_auth_devise/issues/24)
122
+
123
+ **Merged pull requests:**
124
+
125
+ - Add v2.2.0 CHANGELOG entries [\#153](https://github.com/solidusio/solidus_auth_devise/pull/153) ([kennyadsl](https://github.com/kennyadsl))
126
+ - Add gem-release support [\#152](https://github.com/solidusio/solidus_auth_devise/pull/152) ([kennyadsl](https://github.com/kennyadsl))
127
+ - Add missing pessimistic versioning [\#149](https://github.com/solidusio/solidus_auth_devise/pull/149) ([aitbw](https://github.com/aitbw))
128
+ - Remove CircleCI configuration file [\#145](https://github.com/solidusio/solidus_auth_devise/pull/145) ([kennyadsl](https://github.com/kennyadsl))
129
+ - Fix migration `20101026184950` `down` method [\#144](https://github.com/solidusio/solidus_auth_devise/pull/144) ([spaghetticode](https://github.com/spaghetticode))
130
+ - Run specs on CircleCi with shared configuration [\#143](https://github.com/solidusio/solidus_auth_devise/pull/143) ([kennyadsl](https://github.com/kennyadsl))
131
+ - Lock SQLite3 to version 1.3 [\#142](https://github.com/solidusio/solidus_auth_devise/pull/142) ([aitbw](https://github.com/aitbw))
132
+ - Add Solidus v2.8 to Travis config [\#141](https://github.com/solidusio/solidus_auth_devise/pull/141) ([aitbw](https://github.com/aitbw))
133
+ - Add DB index to `reset\_password\_token` field [\#140](https://github.com/solidusio/solidus_auth_devise/pull/140) ([spaghetticode](https://github.com/spaghetticode))
134
+ - Remove warnings [\#139](https://github.com/solidusio/solidus_auth_devise/pull/139) ([jtapia](https://github.com/jtapia))
135
+ - Add missing translation [\#137](https://github.com/solidusio/solidus_auth_devise/pull/137) ([spaghetticode](https://github.com/spaghetticode))
136
+ - Allow Spree::Admin::UserPasswordsController to be accessed from admin… [\#136](https://github.com/solidusio/solidus_auth_devise/pull/136) ([acreilly](https://github.com/acreilly))
137
+ - Fix typo of french locale [\#135](https://github.com/solidusio/solidus_auth_devise/pull/135) ([imfaruk](https://github.com/imfaruk))
138
+ - Remove Solidus v2.2 support from Travis config [\#134](https://github.com/solidusio/solidus_auth_devise/pull/134) ([aitbw](https://github.com/aitbw))
139
+ - Replace Spree.t with I18n.t [\#132](https://github.com/solidusio/solidus_auth_devise/pull/132) ([aitbw](https://github.com/aitbw))
140
+ - Fix to not reuse spree\_current\_user as `@user` [\#131](https://github.com/solidusio/solidus_auth_devise/pull/131) ([yono](https://github.com/yono))
141
+ - Fix factory girl dependency for Solidus \< 2.5 [\#130](https://github.com/solidusio/solidus_auth_devise/pull/130) ([tvdeyen](https://github.com/tvdeyen))
142
+ - Add Solidus v2.7 to .travis.yml [\#127](https://github.com/solidusio/solidus_auth_devise/pull/127) ([jacobherrington](https://github.com/jacobherrington))
143
+ - Fix spree routes [\#125](https://github.com/solidusio/solidus_auth_devise/pull/125) ([jtapia](https://github.com/jtapia))
144
+ - Remove unnecessary decorator [\#122](https://github.com/solidusio/solidus_auth_devise/pull/122) ([jhawthorn](https://github.com/jhawthorn))
145
+ - 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))
146
+
147
+ ## [v2.1.0](https://github.com/solidusio/solidus_auth_devise/tree/v2.1.0) (2018-01-22)
148
+
149
+ [Full Changelog](https://github.com/solidusio/solidus_auth_devise/compare/v2.0.0...v2.1.0)
150
+
151
+ **Closed issues:**
152
+
153
+ - Error undefined method alias\_method\_chain [\#112](https://github.com/solidusio/solidus_auth_devise/issues/112)
154
+
155
+ **Merged pull requests:**
156
+
157
+ - Remove unused helper include [\#118](https://github.com/solidusio/solidus_auth_devise/pull/118) ([jhawthorn](https://github.com/jhawthorn))
158
+ - update spec according new solidus behaviour for 404 [\#115](https://github.com/solidusio/solidus_auth_devise/pull/115) ([ccarruitero](https://github.com/ccarruitero))
159
+ - Don't require deface for solidus 2.5+ [\#114](https://github.com/solidusio/solidus_auth_devise/pull/114) ([jhawthorn](https://github.com/jhawthorn))
160
+ - 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))
161
+ - Remove references to dash [\#104](https://github.com/solidusio/solidus_auth_devise/pull/104) ([jhawthorn](https://github.com/jhawthorn))
162
+ - Reset api key when assigning password [\#99](https://github.com/solidusio/solidus_auth_devise/pull/99) ([jhawthorn](https://github.com/jhawthorn))
163
+ - RFC: Support Backend-Only Stores [\#96](https://github.com/solidusio/solidus_auth_devise/pull/96) ([stewart](https://github.com/stewart))
164
+
165
+ ## [v2.0.0](https://github.com/solidusio/solidus_auth_devise/tree/v2.0.0) (2017-09-20)
166
+
167
+ [Full Changelog](https://github.com/solidusio/solidus_auth_devise/compare/v1.6.4...v2.0.0)
168
+
169
+ **Merged pull requests:**
170
+
171
+ - Drop Solidus v1.0, v1.1 support [\#111](https://github.com/solidusio/solidus_auth_devise/pull/111) ([swcraig](https://github.com/swcraig))
172
+ - Stop raising an exception when callback in UsersController is undefined [\#110](https://github.com/solidusio/solidus_auth_devise/pull/110) ([swcraig](https://github.com/swcraig))
173
+ - Add ffaker dependency to gemspec [\#109](https://github.com/solidusio/solidus_auth_devise/pull/109) ([swcraig](https://github.com/swcraig))
174
+ - Remove has\_many orders [\#107](https://github.com/solidusio/solidus_auth_devise/pull/107) ([jhawthorn](https://github.com/jhawthorn))
175
+ - Use base spec\_helper from solidus\_support [\#106](https://github.com/solidusio/solidus_auth_devise/pull/106) ([jhawthorn](https://github.com/jhawthorn))
176
+ - Extract \*\_available? to solidus\_support [\#105](https://github.com/solidusio/solidus_auth_devise/pull/105) ([jhawthorn](https://github.com/jhawthorn))
177
+ - match logout route to devise configuration [\#103](https://github.com/solidusio/solidus_auth_devise/pull/103) ([BenMorganIO](https://github.com/BenMorganIO))
178
+
179
+ ## [v1.6.4](https://github.com/solidusio/solidus_auth_devise/tree/v1.6.4) (2017-07-24)
180
+
181
+ [Full Changelog](https://github.com/solidusio/solidus_auth_devise/compare/v1.6.3...v1.6.4)
182
+
183
+ **Closed issues:**
184
+
185
+ - Adding omniauthable to to Spree::User [\#98](https://github.com/solidusio/solidus_auth_devise/issues/98)
186
+ - Use of `helper\_method` should be wrapped in `respond\_to?` check [\#90](https://github.com/solidusio/solidus_auth_devise/issues/90)
187
+ - Deface Override requires solidus\_frontend [\#85](https://github.com/solidusio/solidus_auth_devise/issues/85)
188
+
189
+ **Merged pull requests:**
190
+
191
+ - Seed improvements [\#102](https://github.com/solidusio/solidus_auth_devise/pull/102) ([cbrunsdon](https://github.com/cbrunsdon))
192
+ - Only apply frontend override if frontend present [\#95](https://github.com/solidusio/solidus_auth_devise/pull/95) ([stewart](https://github.com/stewart))
193
+ - Update outdated development dependencies [\#94](https://github.com/solidusio/solidus_auth_devise/pull/94) ([stewart](https://github.com/stewart))
194
+ - Remove use of deprecated `bypass` opt for sign\_in [\#93](https://github.com/solidusio/solidus_auth_devise/pull/93) ([stewart](https://github.com/stewart))
195
+ - Wrap use of `helper\_method` in `respond\_to?` [\#92](https://github.com/solidusio/solidus_auth_devise/pull/92) ([stewart](https://github.com/stewart))
196
+ - Remove unused line [\#75](https://github.com/solidusio/solidus_auth_devise/pull/75) ([Murph33](https://github.com/Murph33))
197
+
198
+ ## [v1.6.3](https://github.com/solidusio/solidus_auth_devise/tree/v1.6.3) (2017-05-09)
199
+
200
+ [Full Changelog](https://github.com/solidusio/solidus_auth_devise/compare/v1.6.2...v1.6.3)
201
+
202
+ **Merged pull requests:**
203
+
204
+ - Remove dependency on json, multi\_json [\#91](https://github.com/solidusio/solidus_auth_devise/pull/91) ([jhawthorn](https://github.com/jhawthorn))
205
+ - Remove Unnecessary `require` statements. [\#89](https://github.com/solidusio/solidus_auth_devise/pull/89) ([stewart](https://github.com/stewart))
206
+ - Do not require core email validator [\#87](https://github.com/solidusio/solidus_auth_devise/pull/87) ([tvdeyen](https://github.com/tvdeyen))
207
+ - Fix warnings on Rails 5.0, support Rails 5.1 [\#86](https://github.com/solidusio/solidus_auth_devise/pull/86) ([jhawthorn](https://github.com/jhawthorn))
208
+ - Change deface dependency from `~\> 1.0.0` to `~\> 1.0` [\#81](https://github.com/solidusio/solidus_auth_devise/pull/81) ([jordan-brough](https://github.com/jordan-brough))
209
+ - Switch to rails 5 spec keyword request syntax [\#80](https://github.com/solidusio/solidus_auth_devise/pull/80) ([jhawthorn](https://github.com/jhawthorn))
210
+ - Add missing translations for already\_authenticated [\#79](https://github.com/solidusio/solidus_auth_devise/pull/79) ([vladstoick](https://github.com/vladstoick))
211
+
212
+ ## [v1.6.2](https://github.com/solidusio/solidus_auth_devise/tree/v1.6.2) (2016-11-18)
213
+
214
+ [Full Changelog](https://github.com/solidusio/solidus_auth_devise/compare/v1.6.1...v1.6.2)
215
+
216
+ **Fixed bugs:**
217
+
218
+ - Don't save addresses inside update\_registration [\#76](https://github.com/solidusio/solidus_auth_devise/pull/76) ([jhawthorn](https://github.com/jhawthorn))
219
+
220
+ **Closed issues:**
221
+
222
+ - Install migration task not working [\#74](https://github.com/solidusio/solidus_auth_devise/issues/74)
223
+
224
+ **Merged pull requests:**
225
+
226
+ - Fix spec order dependencies and run in a random order [\#77](https://github.com/solidusio/solidus_auth_devise/pull/77) ([jhawthorn](https://github.com/jhawthorn))
227
+
228
+ ## [v1.6.1](https://github.com/solidusio/solidus_auth_devise/tree/v1.6.1) (2016-08-24)
229
+
230
+ [Full Changelog](https://github.com/solidusio/solidus_auth_devise/compare/v1.6.0...v1.6.1)
231
+
232
+ **Merged pull requests:**
233
+
234
+ - Replace before\_filter with before\_action [\#73](https://github.com/solidusio/solidus_auth_devise/pull/73) ([jhawthorn](https://github.com/jhawthorn))
235
+
236
+ ## [v1.6.0](https://github.com/solidusio/solidus_auth_devise/tree/v1.6.0) (2016-08-23)
237
+
238
+ [Full Changelog](https://github.com/solidusio/solidus_auth_devise/compare/v1.5.0...v1.6.0)
239
+
240
+ **Merged pull requests:**
241
+
242
+ - Solidus 2.0 and Rails 5 [\#72](https://github.com/solidusio/solidus_auth_devise/pull/72) ([jhawthorn](https://github.com/jhawthorn))
243
+ - Loading of routes can be disabled through config [\#71](https://github.com/solidusio/solidus_auth_devise/pull/71) ([gmacdougall](https://github.com/gmacdougall))
244
+ - Skip admin override for Solidus \>= 1.0 [\#69](https://github.com/solidusio/solidus_auth_devise/pull/69) ([jhawthorn](https://github.com/jhawthorn))
245
+ - Replace spree\_{get,post,put,delete} with normal methods [\#68](https://github.com/solidusio/solidus_auth_devise/pull/68) ([jhawthorn](https://github.com/jhawthorn))
246
+ - Remove load-time manipulation of the secret\_key [\#67](https://github.com/solidusio/solidus_auth_devise/pull/67) ([jhawthorn](https://github.com/jhawthorn))
247
+
248
+ ## [v1.5.0](https://github.com/solidusio/solidus_auth_devise/tree/v1.5.0) (2016-07-18)
249
+
250
+ [Full Changelog](https://github.com/solidusio/solidus_auth_devise/compare/v1.4.0...v1.5.0)
251
+
252
+ **Closed issues:**
253
+
254
+ - AuthenticationHelpers reference routes that may not exist [\#59](https://github.com/solidusio/solidus_auth_devise/issues/59)
255
+ - No CHANGELOG for this repo [\#54](https://github.com/solidusio/solidus_auth_devise/issues/54)
256
+ - Latest release on GitHub is out of date [\#53](https://github.com/solidusio/solidus_auth_devise/issues/53)
257
+
258
+ **Merged pull requests:**
259
+
260
+ - Flesh out installation instructions [\#66](https://github.com/solidusio/solidus_auth_devise/pull/66) ([stewart](https://github.com/stewart))
261
+ - Correct Deprecation Errors in CI [\#65](https://github.com/solidusio/solidus_auth_devise/pull/65) ([stewart](https://github.com/stewart))
262
+ - Add Chinese translations in zh-CN.yml [\#64](https://github.com/solidusio/solidus_auth_devise/pull/64) ([chrisradford](https://github.com/chrisradford))
263
+ - Loosen devise dependency to ~\> 4.1 [\#63](https://github.com/solidusio/solidus_auth_devise/pull/63) ([jhawthorn](https://github.com/jhawthorn))
264
+ - Use routes.draw [\#62](https://github.com/solidusio/solidus_auth_devise/pull/62) ([jhawthorn](https://github.com/jhawthorn))
265
+ - Add guard for frontend-based AuthenticationHelpers [\#60](https://github.com/solidusio/solidus_auth_devise/pull/60) ([stewart](https://github.com/stewart))
266
+ - Misc: Update Dependency Versions [\#58](https://github.com/solidusio/solidus_auth_devise/pull/58) ([stewart](https://github.com/stewart))
267
+ - Backend views should only reference backend routes [\#57](https://github.com/solidusio/solidus_auth_devise/pull/57) ([bbuchalter](https://github.com/bbuchalter))
268
+ - Refactor Spree::Auth::Engine [\#56](https://github.com/solidusio/solidus_auth_devise/pull/56) ([stewart](https://github.com/stewart))
269
+ - Backend views should only reference backend routes [\#52](https://github.com/solidusio/solidus_auth_devise/pull/52) ([bbuchalter](https://github.com/bbuchalter))
270
+ - Call set\_current\_order explicitly where we need it [\#51](https://github.com/solidusio/solidus_auth_devise/pull/51) ([Murph33](https://github.com/Murph33))
271
+ - Misc: Syntax Cleanup [\#50](https://github.com/solidusio/solidus_auth_devise/pull/50) ([stewart](https://github.com/stewart))
272
+
273
+ ## [v1.4.0](https://github.com/solidusio/solidus_auth_devise/tree/v1.4.0) (2016-05-16)
274
+
275
+ [Full Changelog](https://github.com/solidusio/solidus_auth_devise/compare/v1.3.0...v1.4.0)
276
+
277
+ **Merged pull requests:**
278
+
279
+ - Conditional routing [\#49](https://github.com/solidusio/solidus_auth_devise/pull/49) ([bbuchalter](https://github.com/bbuchalter))
280
+ - check\_authorization first in CheckoutController [\#47](https://github.com/solidusio/solidus_auth_devise/pull/47) ([bbuchalter](https://github.com/bbuchalter))
281
+ - Revert "ChcktController checks auth and registration first" [\#46](https://github.com/solidusio/solidus_auth_devise/pull/46) ([bbuchalter](https://github.com/bbuchalter))
282
+ - ChcktController checks auth and registration first [\#44](https://github.com/solidusio/solidus_auth_devise/pull/44) ([bbuchalter](https://github.com/bbuchalter))
283
+ - Remove obsolete regression test [\#43](https://github.com/solidusio/solidus_auth_devise/pull/43) ([jhawthorn](https://github.com/jhawthorn))
284
+ - Improve order association [\#42](https://github.com/solidusio/solidus_auth_devise/pull/42) ([mvz](https://github.com/mvz))
285
+ - Re-add Solidus 1.0 compatability [\#40](https://github.com/solidusio/solidus_auth_devise/pull/40) ([jhawthorn](https://github.com/jhawthorn))
286
+ - Update travis.yml [\#39](https://github.com/solidusio/solidus_auth_devise/pull/39) ([jhawthorn](https://github.com/jhawthorn))
287
+ - Honor guest checkout config [\#36](https://github.com/solidusio/solidus_auth_devise/pull/36) ([bbuchalter](https://github.com/bbuchalter))
288
+ - Update README testing section [\#35](https://github.com/solidusio/solidus_auth_devise/pull/35) ([bbuchalter](https://github.com/bbuchalter))
289
+ - Fix specs now that order's store is required [\#34](https://github.com/solidusio/solidus_auth_devise/pull/34) ([jhawthorn](https://github.com/jhawthorn))
290
+ - 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))
291
+
292
+ ## [v1.3.0](https://github.com/solidusio/solidus_auth_devise/tree/v1.3.0) (2016-01-12)
293
+
294
+ [Full Changelog](https://github.com/solidusio/solidus_auth_devise/compare/v1.2.3...v1.3.0)
295
+
296
+ **Merged pull requests:**
297
+
298
+ - Add Capybara screenshot [\#30](https://github.com/solidusio/solidus_auth_devise/pull/30) ([jhawthorn](https://github.com/jhawthorn))
299
+ - Missing translations for German locale [\#29](https://github.com/solidusio/solidus_auth_devise/pull/29) ([pedropereira](https://github.com/pedropereira))
300
+ - Admin navigation sidebar [\#28](https://github.com/solidusio/solidus_auth_devise/pull/28) ([Sinetheta](https://github.com/Sinetheta))
301
+
302
+ ## [v1.2.3](https://github.com/solidusio/solidus_auth_devise/tree/v1.2.3) (2015-11-30)
303
+
304
+ [Full Changelog](https://github.com/solidusio/solidus_auth_devise/compare/v1.2.2...v1.2.3)
305
+
306
+ **Closed issues:**
307
+
308
+ - How to access current\_user? [\#26](https://github.com/solidusio/solidus_auth_devise/issues/26)
309
+
310
+ **Merged pull requests:**
311
+
312
+ - Add an explicit require to deface [\#27](https://github.com/solidusio/solidus_auth_devise/pull/27) ([jhawthorn](https://github.com/jhawthorn))
313
+ - 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))
314
+ - Rename spree@example.com to admin@example.com [\#23](https://github.com/solidusio/solidus_auth_devise/pull/23) ([jhawthorn](https://github.com/jhawthorn))
315
+ - Fix registration errors [\#22](https://github.com/solidusio/solidus_auth_devise/pull/22) ([jhawthorn](https://github.com/jhawthorn))
316
+
317
+ ## [v1.2.2](https://github.com/solidusio/solidus_auth_devise/tree/v1.2.2) (2015-10-01)
318
+
319
+ [Full Changelog](https://github.com/solidusio/solidus_auth_devise/compare/v1.2.0...v1.2.2)
320
+
321
+ **Closed issues:**
322
+
323
+ - Should Spree::User inherit from Spree::Base [\#18](https://github.com/solidusio/solidus_auth_devise/issues/18)
324
+
325
+ **Merged pull requests:**
326
+
327
+ - Automatically regenerate a user's spree\_api\_key upon password change. [\#21](https://github.com/solidusio/solidus_auth_devise/pull/21) ([athal7](https://github.com/athal7))
328
+ - Inherit from Spree::Base [\#20](https://github.com/solidusio/solidus_auth_devise/pull/20) ([magnusvk](https://github.com/magnusvk))
329
+ - Explicitely add deface to gemfile [\#19](https://github.com/solidusio/solidus_auth_devise/pull/19) ([cbrunsdon](https://github.com/cbrunsdon))
330
+ - Version 1.2.1 [\#17](https://github.com/solidusio/solidus_auth_devise/pull/17) ([jordan-brough](https://github.com/jordan-brough))
331
+ - Remove some redundant includes [\#16](https://github.com/solidusio/solidus_auth_devise/pull/16) ([jordan-brough](https://github.com/jordan-brough))
332
+ - Remove brittle spec [\#15](https://github.com/solidusio/solidus_auth_devise/pull/15) ([adammathys](https://github.com/adammathys))
333
+ - Fix some specs [\#14](https://github.com/solidusio/solidus_auth_devise/pull/14) ([adammathys](https://github.com/adammathys))
334
+
335
+ ## [v1.2.0](https://github.com/solidusio/solidus_auth_devise/tree/v1.2.0) (2015-07-22)
336
+
337
+ [Full Changelog](https://github.com/solidusio/solidus_auth_devise/compare/v1.1.0...v1.2.0)
338
+
339
+ **Merged pull requests:**
340
+
341
+ - Fix spec failures after Solidus changes [\#13](https://github.com/solidusio/solidus_auth_devise/pull/13) ([Senjai](https://github.com/Senjai))
342
+ - Use new access denied extension point. [\#12](https://github.com/solidusio/solidus_auth_devise/pull/12) ([adammathys](https://github.com/adammathys))
343
+ - Skip adding devise.rb if it already exists. [\#11](https://github.com/solidusio/solidus_auth_devise/pull/11) ([adammathys](https://github.com/adammathys))
344
+ - Fix checkout spec [\#10](https://github.com/solidusio/solidus_auth_devise/pull/10) ([jhawthorn](https://github.com/jhawthorn))
345
+ - Minor tweaks and deprecation warning fixes. [\#9](https://github.com/solidusio/solidus_auth_devise/pull/9) ([adammathys](https://github.com/adammathys))
346
+
347
+ ## [v1.1.0](https://github.com/solidusio/solidus_auth_devise/tree/v1.1.0) (2015-06-03)
348
+
349
+ [Full Changelog](https://github.com/solidusio/solidus_auth_devise/compare/v1.0.0...v1.1.0)
350
+
351
+ **Merged pull requests:**
352
+
353
+ - Version 1.1.0 [\#8](https://github.com/solidusio/solidus_auth_devise/pull/8) ([jhawthorn](https://github.com/jhawthorn))
354
+ - Fixes for latest solidus + add CircleCI [\#7](https://github.com/solidusio/solidus_auth_devise/pull/7) ([jhawthorn](https://github.com/jhawthorn))
355
+ - Use git+ssh for solidus gem [\#6](https://github.com/solidusio/solidus_auth_devise/pull/6) ([jhawthorn](https://github.com/jhawthorn))
356
+ - Remove dead code. [\#5](https://github.com/solidusio/solidus_auth_devise/pull/5) ([adammathys](https://github.com/adammathys))
357
+ - Clean-up frontend registrations and sessions controllers [\#4](https://github.com/solidusio/solidus_auth_devise/pull/4) ([forkata](https://github.com/forkata))
358
+ - Minor update to README.md [\#3](https://github.com/solidusio/solidus_auth_devise/pull/3) ([adammathys](https://github.com/adammathys))
359
+
360
+ ## [v1.0.0](https://github.com/solidusio/solidus_auth_devise/tree/v1.0.0) (2015-05-26)
361
+
362
+ [Full Changelog](https://github.com/solidusio/solidus_auth_devise/compare/8ee9c748ec9bff1d90a61a1192e03fa9999c6dfd...v1.0.0)
363
+
364
+ **Merged pull requests:**
365
+
366
+ - Use solidus gem instead of spree [\#2](https://github.com/solidusio/solidus_auth_devise/pull/2) ([jhawthorn](https://github.com/jhawthorn))
367
+ - The rename! [\#1](https://github.com/solidusio/solidus_auth_devise/pull/1) ([adammathys](https://github.com/adammathys))
368
+
369
+
370
+
371
+ \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*