devise 3.4.1 → 3.5.10
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 devise might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.travis.yml +28 -19
- data/CHANGELOG.md +193 -104
- data/CODE_OF_CONDUCT.md +22 -0
- data/CONTRIBUTING.md +2 -0
- data/Gemfile +3 -2
- data/Gemfile.lock +90 -95
- data/MIT-LICENSE +1 -1
- data/README.md +55 -34
- data/Rakefile +2 -1
- data/app/controllers/devise/confirmations_controller.rb +4 -0
- data/app/controllers/devise/omniauth_callbacks_controller.rb +4 -0
- data/app/controllers/devise/passwords_controller.rb +14 -4
- data/app/controllers/devise/registrations_controller.rb +10 -11
- data/app/controllers/devise/sessions_controller.rb +7 -2
- data/app/controllers/devise/unlocks_controller.rb +3 -0
- data/app/controllers/devise_controller.rb +34 -18
- data/app/mailers/devise/mailer.rb +4 -0
- data/app/views/devise/confirmations/new.html.erb +1 -1
- data/app/views/devise/mailer/password_change.html.erb +3 -0
- data/app/views/devise/passwords/edit.html.erb +3 -0
- data/app/views/devise/registrations/new.html.erb +1 -1
- data/app/views/devise/shared/_links.html.erb +1 -1
- data/config/locales/en.yml +2 -0
- data/devise.gemspec +0 -2
- data/gemfiles/Gemfile.rails-3.2-stable.lock +52 -49
- data/gemfiles/Gemfile.rails-4.0-stable +1 -0
- data/gemfiles/Gemfile.rails-4.0-stable.lock +61 -60
- data/gemfiles/Gemfile.rails-4.1-stable +1 -0
- data/gemfiles/Gemfile.rails-4.1-stable.lock +66 -65
- data/gemfiles/Gemfile.rails-4.2-stable +30 -0
- data/gemfiles/Gemfile.rails-4.2-stable.lock +193 -0
- data/lib/devise/controllers/helpers.rb +12 -6
- data/lib/devise/controllers/rememberable.rb +9 -2
- data/lib/devise/controllers/sign_in_out.rb +2 -8
- data/lib/devise/controllers/store_location.rb +3 -1
- data/lib/devise/controllers/url_helpers.rb +7 -9
- data/lib/devise/encryptor.rb +22 -0
- data/lib/devise/failure_app.rb +48 -13
- data/lib/devise/hooks/timeoutable.rb +5 -7
- data/lib/devise/mapping.rb +1 -0
- data/lib/devise/models/authenticatable.rb +20 -26
- data/lib/devise/models/confirmable.rb +51 -17
- data/lib/devise/models/database_authenticatable.rb +17 -11
- data/lib/devise/models/lockable.rb +5 -1
- data/lib/devise/models/recoverable.rb +23 -15
- data/lib/devise/models/rememberable.rb +56 -22
- data/lib/devise/models/timeoutable.rb +0 -6
- data/lib/devise/models/trackable.rb +1 -2
- data/lib/devise/models/validatable.rb +3 -3
- data/lib/devise/models.rb +1 -1
- data/lib/devise/rails/routes.rb +27 -18
- data/lib/devise/rails.rb +1 -1
- data/lib/devise/strategies/authenticatable.rb +7 -4
- data/lib/devise/strategies/database_authenticatable.rb +1 -1
- data/lib/devise/strategies/rememberable.rb +13 -6
- data/lib/devise/test_helpers.rb +2 -2
- data/lib/devise/version.rb +1 -1
- data/lib/devise.rb +37 -36
- data/lib/generators/active_record/templates/migration.rb +1 -1
- data/lib/generators/active_record/templates/migration_existing.rb +1 -1
- data/lib/generators/devise/views_generator.rb +14 -3
- data/lib/generators/templates/controllers/README +2 -2
- data/lib/generators/templates/controllers/omniauth_callbacks_controller.rb +1 -1
- data/lib/generators/templates/controllers/registrations_controller.rb +2 -2
- data/lib/generators/templates/controllers/sessions_controller.rb +1 -1
- data/lib/generators/templates/devise.rb +17 -11
- data/lib/generators/templates/markerb/confirmation_instructions.markerb +1 -1
- data/lib/generators/templates/markerb/password_change.markerb +3 -0
- data/lib/generators/templates/markerb/reset_password_instructions.markerb +1 -1
- data/lib/generators/templates/markerb/unlock_instructions.markerb +1 -1
- data/lib/generators/templates/simple_form_for/passwords/edit.html.erb +1 -1
- data/lib/generators/templates/simple_form_for/registrations/new.html.erb +1 -1
- data/test/controllers/custom_registrations_controller_test.rb +6 -1
- data/test/controllers/helper_methods_test.rb +21 -0
- data/test/controllers/helpers_test.rb +5 -0
- data/test/controllers/inherited_controller_i18n_messages_test.rb +51 -0
- data/test/controllers/internal_helpers_test.rb +4 -4
- data/test/controllers/load_hooks_controller_test.rb +19 -0
- data/test/controllers/passwords_controller_test.rb +1 -1
- data/test/controllers/sessions_controller_test.rb +3 -3
- data/test/devise_test.rb +3 -3
- data/test/failure_app_test.rb +40 -0
- data/test/generators/views_generator_test.rb +7 -0
- data/test/integration/database_authenticatable_test.rb +11 -0
- data/test/integration/omniauthable_test.rb +12 -10
- data/test/integration/recoverable_test.rb +13 -0
- data/test/integration/rememberable_test.rb +50 -3
- data/test/integration/timeoutable_test.rb +13 -18
- data/test/mailers/confirmation_instructions_test.rb +1 -1
- data/test/mapping_test.rb +6 -0
- data/test/models/confirmable_test.rb +93 -37
- data/test/models/database_authenticatable_test.rb +20 -0
- data/test/models/lockable_test.rb +29 -7
- data/test/models/recoverable_test.rb +62 -7
- data/test/models/rememberable_test.rb +68 -97
- data/test/models/validatable_test.rb +5 -5
- data/test/models_test.rb +15 -6
- data/test/rails_app/app/active_record/user_without_email.rb +8 -0
- data/test/rails_app/app/controllers/admins_controller.rb +0 -5
- data/test/rails_app/app/controllers/custom/registrations_controller.rb +10 -0
- data/test/rails_app/app/mongoid/user_without_email.rb +33 -0
- data/test/rails_app/config/application.rb +1 -1
- data/test/rails_app/config/environments/production.rb +6 -2
- data/test/rails_app/config/environments/test.rb +7 -2
- data/test/rails_app/config/initializers/devise.rb +12 -15
- data/test/rails_app/config/routes.rb +6 -3
- data/test/rails_app/lib/shared_user.rb +1 -1
- data/test/rails_app/lib/shared_user_without_email.rb +26 -0
- data/test/rails_test.rb +9 -0
- data/test/support/helpers.rb +4 -0
- data/test/support/integration.rb +2 -2
- data/test/test_helpers_test.rb +22 -7
- data/test/test_models.rb +2 -2
- data/test/time_helpers.rb +137 -0
- metadata +26 -4
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,95 @@
|
|
1
|
-
###
|
1
|
+
### 3.5.10 - 2016-05-15
|
2
2
|
|
3
|
-
|
3
|
+
* bug fixes
|
4
|
+
* Fix overwriting the remember_token when a valid one already exists (by @ralinchimev).
|
5
|
+
|
6
|
+
### 3.5.9 - 2016-05-02
|
7
|
+
|
8
|
+
* bug fixes
|
9
|
+
* Fix strategy checking in `Lockable#unlock_strategy_enabled?` for `:none`
|
10
|
+
and `:undefined` strategies. (by @f3ndot)
|
11
|
+
|
12
|
+
### 3.5.8 - 2016-04-25
|
13
|
+
|
14
|
+
* bug fixes
|
15
|
+
* Fix the e-mail confirmation instructions send when a user updates the email address from nil
|
16
|
+
|
17
|
+
### 3.5.7 - 2016-04-18
|
18
|
+
|
19
|
+
* bug fixes
|
20
|
+
* Fix the `extend_remember_period` configuration. When set to `false` it does
|
21
|
+
not update the cookie expiration anymore.(by @ulissesalmeida)
|
22
|
+
|
23
|
+
### 3.5.6 - 2016-01-02
|
24
|
+
|
25
|
+
* bug fixes
|
26
|
+
* Fix type coercion of the rememberable timestamp stored on cookies.
|
27
|
+
|
28
|
+
### 3.5.5 - 2016-22-01
|
29
|
+
|
30
|
+
* bug fixes
|
31
|
+
* Bring back remember_expired? implementation
|
32
|
+
* Ensure timeouts are not triggered if remember me is being used
|
33
|
+
|
34
|
+
### 3.5.4 - 2016-18-01
|
35
|
+
|
36
|
+
* bug fixes
|
37
|
+
* Store creation timestamps on remember cookies
|
38
|
+
|
39
|
+
### 3.5.3 - 2015-12-10
|
40
|
+
|
41
|
+
* bug fixes
|
42
|
+
* Fix password reset for records where `confirmation_required?` is disabled and
|
43
|
+
`confirmation_sent_at` is nil. (by @andygeers)
|
44
|
+
* Allow resources with no `email` field to be recoverable (and do not clear the
|
45
|
+
reset password token if the model was already persisted). (by @seddy, @stanhu)
|
46
|
+
|
47
|
+
* enhancements
|
48
|
+
* Upon setting `Devise.send_password_change_notification = true` a user will receive notification when their password has been changed.
|
49
|
+
|
50
|
+
### 3.5.2 - 2015-08-10
|
51
|
+
|
52
|
+
* enhancements
|
53
|
+
* Perform case insensitive basic authorization matching
|
54
|
+
|
55
|
+
* bug fixes
|
56
|
+
* Do not use digests for password confirmation token
|
57
|
+
* Fix infinite redirect in Rails 4.2 authenticated routes
|
58
|
+
* Autoload Devise::Encryptor to avoid errors on thread-safe mode
|
59
|
+
|
60
|
+
* deprecations
|
61
|
+
* `config.expire_auth_token_on_timeout` was removed
|
62
|
+
|
63
|
+
### 3.5.1 - 2015-05-24
|
64
|
+
|
65
|
+
Note: 3.5.0 has been yanked due to a regression
|
66
|
+
|
67
|
+
* security improvements
|
68
|
+
* Clean up reset password token whenever e-mail or password changes. thanks to George Deglin & Dennis Charles Hackethal for reporting this bug
|
69
|
+
* Ensure empty `authenticable_salt` cannot be used as remember token. This bug can only affect users who manually implement their own `authenticable_salt` and allow empty values as salt
|
70
|
+
|
71
|
+
* enhancements
|
72
|
+
* The hint about minimum password length required both `@validatable` and `@minimum_password_length` variables on the views, it now uses only the latter. If you have generated the views relying on the `@validatable` variable, replace it with `@minimum_password_length`.
|
73
|
+
* Added an ActiveSupport load hook for `:devise_controller`. (by @nakhli)
|
74
|
+
* Location fragments are now preserved between requests. (by @jbourassa)
|
75
|
+
* Added an `after_remembered` callback for the Rememerable module. (by @BM5k)
|
76
|
+
* `RegistrationsController#new` and `SessionsController#new` now yields the
|
77
|
+
current resource. (by @mtarnovan, @deivid-rodriguez)
|
78
|
+
* Password length validation is now limited to 72 characters for newer apps. (by @lleger)
|
79
|
+
* Controllers inheriting from any Devise core controller will now use appropriate translations. The i18n scope can be overridden in `translation_scope`.
|
80
|
+
* Allow the user to set the length of friendly token. (by @Angelmmiguel)
|
81
|
+
|
82
|
+
* bug fixes
|
83
|
+
* Use router_name from scope if one is available to support isolated engines. (by @cipater)
|
84
|
+
* Do not clean up CSRF on rememberable.
|
85
|
+
* Only use flash if it has been configured in failure app. (by @alex88)
|
86
|
+
|
87
|
+
* deprecations
|
88
|
+
* `confirm!` has been deprecated in favor of `confirm`.
|
89
|
+
* `reset_password!` has been deprecated in favor of `reset_password`.
|
90
|
+
* `Devise.bcrypt` has been deprecated in favor of `Devise::Encryptor.digest`".
|
91
|
+
|
92
|
+
### 3.4.1 - 2014-10-29
|
4
93
|
|
5
94
|
* enhancements
|
6
95
|
* Devise default views now have a similar markup to Rails scaffold views. (by @udaysinghcode, @cllns)
|
@@ -10,7 +99,7 @@
|
|
10
99
|
* Fixed an regression with translation of flash messages for when the `authentication_keys`
|
11
100
|
config is a Hash. (by @lucasmazza)
|
12
101
|
|
13
|
-
### 3.4.0
|
102
|
+
### 3.4.0 - 2014-10-03
|
14
103
|
|
15
104
|
* enhancements
|
16
105
|
* Support added for Rails 4.2. Devise now depends on the `responders` gem due
|
@@ -31,7 +120,7 @@
|
|
31
120
|
message for your users. To keep the current behavior, this flag is now `true`
|
32
121
|
by default. (by @lucasmazza)
|
33
122
|
|
34
|
-
### 3.3.0
|
123
|
+
### 3.3.0 - 2014-08-13
|
35
124
|
|
36
125
|
* enhancements
|
37
126
|
* Support multiple warden configuration blocks on devise configuration. (by @rossta)
|
@@ -55,13 +144,13 @@
|
|
55
144
|
* Ensure registration controller block yields happen on failure in addition to success (by @dpehrson)
|
56
145
|
* Only valid paths will be stored for redirections (by @parallel588)
|
57
146
|
|
58
|
-
### 3.2.4
|
147
|
+
### 3.2.4 - 2014-03-17
|
59
148
|
|
60
149
|
* enhancements
|
61
150
|
* `bcrypt` dependency updated due https://github.com/codahale/bcrypt-ruby/pull/86.
|
62
151
|
* View generator now can generate specific views with the `-v` flag, like `rails g devise:views -v sessions` (by @kayline)
|
63
152
|
|
64
|
-
### 3.2.3
|
153
|
+
### 3.2.3 - 2014-02-20
|
65
154
|
|
66
155
|
* enhancements
|
67
156
|
* Devise will use the `secret_key_base` on Rails 4+ applications as its `secret_key`.
|
@@ -70,14 +159,14 @@
|
|
70
159
|
* bug fix
|
71
160
|
* Migrations will be properly generated when using rails 4.1.0.
|
72
161
|
|
73
|
-
### 3.2.2
|
162
|
+
### 3.2.2 - 2013-11-25
|
74
163
|
|
75
164
|
* bug fix
|
76
165
|
* Ensure timeoutable works when `sign_out_all_scopes` is false (by @louman)
|
77
166
|
* Keep the query string when storing location (by @csexton)
|
78
167
|
* Require rails generator base class in devise generators
|
79
168
|
|
80
|
-
### 3.2.1
|
169
|
+
### 3.2.1 - 2013-11-13
|
81
170
|
|
82
171
|
Security announcement: http://blog.plataformatec.com.br/2013/11/e-mail-enumeration-in-devise-in-paranoid-mode
|
83
172
|
|
@@ -89,7 +178,7 @@ Security announcement: http://blog.plataformatec.com.br/2013/11/e-mail-enumerati
|
|
89
178
|
* Bring `password_digest` back to fix compatibility with `devise-encryptable`
|
90
179
|
* Avoid e-mail enumeration on sign in when in paranoid mode
|
91
180
|
|
92
|
-
### 3.2.0
|
181
|
+
### 3.2.0 - 2013-11-06
|
93
182
|
|
94
183
|
* enhancements
|
95
184
|
* Previously deprecated token authenticatable and insecure lookups have been removed
|
@@ -108,13 +197,13 @@ Security announcement: http://blog.plataformatec.com.br/2013/11/e-mail-enumerati
|
|
108
197
|
* deprecations
|
109
198
|
* `expire_session_data_after_sign_in!` has been deprecated in favor of `expire_data_after_sign_in!`
|
110
199
|
|
111
|
-
### 3.1.1
|
200
|
+
### 3.1.1 - 2013-10-01
|
112
201
|
|
113
202
|
* bug fix
|
114
203
|
* Improve default message which asked users to sign in even when they were already signed (by @gregates)
|
115
204
|
* Improve error message for when the config.secret_key is missing
|
116
205
|
|
117
|
-
### 3.1.0
|
206
|
+
### 3.1.0 - 2013-09-05
|
118
207
|
|
119
208
|
Security announcement: http://blog.plataformatec.com.br/2013/08/devise-3-1-now-with-more-secure-defaults/
|
120
209
|
|
@@ -137,12 +226,12 @@ Security announcement: http://blog.plataformatec.com.br/2013/08/devise-3-1-now-w
|
|
137
226
|
* Do not compare directly against confirmation, unlock and reset password tokens
|
138
227
|
* Skip storage for cookies on unverified requests
|
139
228
|
|
140
|
-
### 3.0.2
|
229
|
+
### 3.0.2 - 2013-08-09
|
141
230
|
|
142
231
|
* bug fix
|
143
232
|
* Skip storage for cookies on unverified requests
|
144
233
|
|
145
|
-
### 3.0.1
|
234
|
+
### 3.0.1 - 2013-08-02
|
146
235
|
|
147
236
|
Security announcement: http://blog.plataformatec.com.br/2013/08/csrf-token-fixation-attacks-in-devise/
|
148
237
|
|
@@ -153,7 +242,7 @@ Security announcement: http://blog.plataformatec.com.br/2013/08/csrf-token-fixat
|
|
153
242
|
* When using rails 3.2, the generator adds 'attr_accessible' to the model (by @jcoyne)
|
154
243
|
* Clean up CSRF token after authentication (by @homakov). Notice this change will clean up the CSRF Token after authentication (sign in, sign up, etc). So if you are using AJAX for such features, you will need to fetch a new CSRF token from the server.
|
155
244
|
|
156
|
-
### 3.0.0
|
245
|
+
### 3.0.0 - 2013-07-14
|
157
246
|
|
158
247
|
* enhancements
|
159
248
|
* Rails 4 and Strong Parameters compatibility (by @carlosantoniodasilva, @josevalim, @latortuga, @lucasmazza, @nashby, @rafaelfranca, @spastorino)
|
@@ -163,7 +252,7 @@ Security announcement: http://blog.plataformatec.com.br/2013/08/csrf-token-fixat
|
|
163
252
|
* bug fix
|
164
253
|
* Errors on unlock are now properly reflected on the first `unlock_keys`
|
165
254
|
|
166
|
-
### 2.2.4
|
255
|
+
### 2.2.4 - 2013-05-07
|
167
256
|
|
168
257
|
* enhancements
|
169
258
|
* Add `destroy_with_password` to `DatabaseAuthenticatable`. Allows destroying a record when `:current_password` matches, similarly to how `update_with_password` works. (by @michiel3)
|
@@ -182,25 +271,25 @@ Security announcement: http://blog.plataformatec.com.br/2013/08/csrf-token-fixat
|
|
182
271
|
* backwards incompatible changes
|
183
272
|
* Changes on session storage will expire all existing sessions on upgrade. For those storing the session in the DB, they can be upgraded according to this gist: https://gist.github.com/moll/6417606
|
184
273
|
|
185
|
-
### 2.2.3
|
274
|
+
### 2.2.3 - 2013-01-26
|
186
275
|
|
187
276
|
Security announcement: http://blog.plataformatec.com.br/2013/01/security-announcement-devise-v2-2-3-v2-1-3-v2-0-5-and-v1-5-3-released/
|
188
277
|
|
189
278
|
* bug fix
|
190
279
|
* Require string conversion for all values
|
191
280
|
|
192
|
-
### 2.2.2
|
281
|
+
### 2.2.2 - 2013-01-15
|
193
282
|
|
194
283
|
* bug fix
|
195
284
|
* Fix bug when checking for reconfirmable in templates
|
196
285
|
|
197
|
-
### 2.2.1
|
286
|
+
### 2.2.1 - 2013-01-11
|
198
287
|
|
199
288
|
* bug fix
|
200
289
|
* Fix regression with case_insensitive_keys
|
201
290
|
* Fix regression when password is blank when it is invalid
|
202
291
|
|
203
|
-
### 2.2.0
|
292
|
+
### 2.2.0 - 2013-01-08
|
204
293
|
|
205
294
|
* backwards incompatible changes
|
206
295
|
* `headers_for` is deprecated, customize the mailer directly instead
|
@@ -231,17 +320,17 @@ Security announcement: http://blog.plataformatec.com.br/2013/01/security-announc
|
|
231
320
|
* `update_with_password` doesn't change encrypted password when it is invalid (by @nashby)
|
232
321
|
* Properly handle namespaced models on Active Record generator (by @nashby)
|
233
322
|
|
234
|
-
### 2.1.4
|
323
|
+
### 2.1.4 - 2013-08-18
|
235
324
|
|
236
325
|
* bugfix
|
237
326
|
* Do not confirm account after reset password
|
238
327
|
|
239
|
-
### 2.1.3
|
328
|
+
### 2.1.3 - 2013-01-26
|
240
329
|
|
241
330
|
* bugfix
|
242
331
|
* Require string conversion for all values
|
243
332
|
|
244
|
-
### 2.1.2
|
333
|
+
### 2.1.2 - 2012-06-19
|
245
334
|
|
246
335
|
* enhancements
|
247
336
|
* Handle backwards incompatibility between Rails 3.2.6 and Thor 0.15.x
|
@@ -249,7 +338,7 @@ Security announcement: http://blog.plataformatec.com.br/2013/01/security-announc
|
|
249
338
|
* bug fix
|
250
339
|
* Fix regression on strategy validation on previous release
|
251
340
|
|
252
|
-
### 2.1.1 (yanked)
|
341
|
+
### 2.1.1 - 2012-06-15 (yanked)
|
253
342
|
|
254
343
|
* enhancements
|
255
344
|
* `sign_out_all_scopes` now locks warden and does not allow new logins in the same action
|
@@ -266,7 +355,7 @@ Security announcement: http://blog.plataformatec.com.br/2013/01/security-announc
|
|
266
355
|
* deprecations
|
267
356
|
* Strategy#validate() no longer validates nil resources
|
268
357
|
|
269
|
-
### 2.1.0
|
358
|
+
### 2.1.0 - 2012-05-15
|
270
359
|
|
271
360
|
* enhancements
|
272
361
|
* Add `check_fields!(model_class)` method on Devise::Models to check if the model includes the fields that Devise uses
|
@@ -293,7 +382,7 @@ Security announcement: http://blog.plataformatec.com.br/2013/01/security-announc
|
|
293
382
|
* Return `head :no_content` in SessionsController now that most JS libraries handle it (by @julianvargasalvarez)
|
294
383
|
* Reverted moving devise/shared/_links.erb to devise/_links.erb
|
295
384
|
|
296
|
-
### 2.0.4
|
385
|
+
### 2.0.4 - 2012-02-17
|
297
386
|
|
298
387
|
Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.0
|
299
388
|
|
@@ -301,7 +390,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
301
390
|
* Fix when :host is used with devise_for (by @mreinsch)
|
302
391
|
* Fix a regression that caused Warden to be initialized too late
|
303
392
|
|
304
|
-
### 2.0.3 (yanked)
|
393
|
+
### 2.0.3 - 2012-06-16 (yanked)
|
305
394
|
|
306
395
|
* bug fix
|
307
396
|
* Ensure warning is not shown by mistake on apps with mounted engines
|
@@ -309,7 +398,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
309
398
|
* Ensure serializable_hash does not depend on accessible attributes
|
310
399
|
* Ensure that timeout callback does not run on sign out action
|
311
400
|
|
312
|
-
### 2.0.2
|
401
|
+
### 2.0.2 - 2012-02-14
|
313
402
|
|
314
403
|
* enhancements
|
315
404
|
* Add devise_i18n_options to customize I18n message
|
@@ -321,7 +410,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
321
410
|
* Show a warning in case someone gives a pluralized name to devise generator
|
322
411
|
* Fix test behavior for rspec subject requests (by @sj26)
|
323
412
|
|
324
|
-
### 2.0.1
|
413
|
+
### 2.0.1 - 2012-02-09
|
325
414
|
|
326
415
|
* enhancements
|
327
416
|
* Improved error messages on deprecation warnings
|
@@ -330,7 +419,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
330
419
|
* bug fix
|
331
420
|
* Removed tmp and log files from gem
|
332
421
|
|
333
|
-
### 2.0.0
|
422
|
+
### 2.0.0 - 2012-01-26
|
334
423
|
|
335
424
|
* enhancements
|
336
425
|
* Add support for e-mail reconfirmation on change (by @Mandaryn and @heimidal)
|
@@ -356,14 +445,14 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
356
445
|
* Deprecated support to devise.registrations.reasons and devise.registrations.inactive_signed_up in favor of devise.registrations.signed_up_but_*
|
357
446
|
* Protected method render_with_scope was removed.
|
358
447
|
|
359
|
-
### 1.5.3
|
448
|
+
### 1.5.3 - 2011-12-19
|
360
449
|
|
361
450
|
* bug fix
|
362
451
|
* Ensure delegator converts scope to symbol (by @dmitriy-kiriyenko)
|
363
452
|
* Ensure passing :format => false to devise_for is not permanent
|
364
453
|
* Ensure path checker does not check invalid routes
|
365
454
|
|
366
|
-
### 1.5.2
|
455
|
+
### 1.5.2 - 2011-11-30
|
367
456
|
|
368
457
|
* enhancements
|
369
458
|
* Add support for Rails 3.1 new mass assignment conventions (by @kirs)
|
@@ -372,12 +461,12 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
372
461
|
* bug fix
|
373
462
|
* OmniAuth error message now shows the proper option (:strategy_class instead of :klass)
|
374
463
|
|
375
|
-
### 1.5.1
|
464
|
+
### 1.5.1 - 2011-11-22
|
376
465
|
|
377
466
|
* bug fix
|
378
467
|
* Devise should not attempt to load OmniAuth strategies. Strategies should be loaded before hand by the developer or explicitly given to Devise.
|
379
468
|
|
380
|
-
### 1.5.0
|
469
|
+
### 1.5.0 - 2011-11-13
|
381
470
|
|
382
471
|
* enhancements
|
383
472
|
* Timeoutable also skips tracking if skip_trackable is given
|
@@ -398,12 +487,12 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
398
487
|
* redirect_location is deprecated, please use after_sign_in_path_for
|
399
488
|
* after_sign_in_path_for now redirects to session[scope_return_to] if any value is stored in it
|
400
489
|
|
401
|
-
### 1.4.9
|
490
|
+
### 1.4.9 - 2011-10-19
|
402
491
|
|
403
492
|
* bug fix
|
404
493
|
* url helpers were not being set under some circumstances
|
405
494
|
|
406
|
-
### 1.4.8
|
495
|
+
### 1.4.8 - 2011-10-09
|
407
496
|
|
408
497
|
* enhancements
|
409
498
|
* Add docs for assets pipeline and Heroku
|
@@ -411,12 +500,12 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
411
500
|
* bug fix
|
412
501
|
* confirmation_url was not being set under some circumstances
|
413
502
|
|
414
|
-
### 1.4.7
|
503
|
+
### 1.4.7 - 2011-09-21
|
415
504
|
|
416
505
|
* bug fix
|
417
506
|
* Fix backward incompatible change from 1.4.6 for those using custom controllers
|
418
507
|
|
419
|
-
### 1.4.6 (yanked)
|
508
|
+
### 1.4.6 - 2011-09-19 (yanked)
|
420
509
|
|
421
510
|
* enhancements
|
422
511
|
* Allow devise_for :skip => :all
|
@@ -424,7 +513,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
424
513
|
* Allow --skip-routes to devise generator
|
425
514
|
* Add allow_params_authentication! to make it explicit when params authentication is allowed in a controller
|
426
515
|
|
427
|
-
### 1.4.5
|
516
|
+
### 1.4.5 - 2011-09-07
|
428
517
|
|
429
518
|
* bug fix
|
430
519
|
* Failure app tries the root path if a session one does not exist
|
@@ -432,12 +521,12 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
432
521
|
* Reset password shows proper message if user is not active
|
433
522
|
* `clean_up_passwords` sets the accessors to nil to skip validations
|
434
523
|
|
435
|
-
### 1.4.4
|
524
|
+
### 1.4.4 - 2011-08-30
|
436
525
|
|
437
526
|
* bug fix
|
438
527
|
* Do not always skip helpers, instead provide :skip_helpers as option to trigger it manually
|
439
528
|
|
440
|
-
### 1.4.3
|
529
|
+
### 1.4.3 - 2011-08-29
|
441
530
|
|
442
531
|
* enhancements
|
443
532
|
* Improve Rails 3.1 compatibility
|
@@ -453,12 +542,12 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
453
542
|
* deprecations
|
454
543
|
* Loosened the used email regexp to simply assert the existent of "@". If someone relies on a more strict regexp, they may use https://github.com/SixArm/sixarm_ruby_email_address_validation
|
455
544
|
|
456
|
-
### 1.4.2
|
545
|
+
### 1.4.2 - 2011-06-30
|
457
546
|
|
458
547
|
* bug fix
|
459
548
|
* Provide a more robust behavior to serializers and add :force_except option
|
460
549
|
|
461
|
-
### 1.4.1
|
550
|
+
### 1.4.1 - 2011-06-29
|
462
551
|
|
463
552
|
* enhancements
|
464
553
|
* Add :defaults and :format support on router
|
@@ -469,7 +558,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
469
558
|
* Ensure to_xml is properly white listened
|
470
559
|
* Ensure handle_unverified_request clean up any cached signed-in user
|
471
560
|
|
472
|
-
### 1.4.0
|
561
|
+
### 1.4.0 - 2011-06-23
|
473
562
|
|
474
563
|
* enhancements
|
475
564
|
* Added authenticated and unauthenticated to the router to route the used based on their status (by @sj26)
|
@@ -487,22 +576,22 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
487
576
|
* Devise now honors routes constraints (by @macmartine)
|
488
577
|
* Do not return the user resource when requesting instructions (by @rodrigoflores)
|
489
578
|
|
490
|
-
### 1.3.4
|
579
|
+
### 1.3.4 - 2011-04-28
|
491
580
|
|
492
581
|
* bug fix
|
493
582
|
* Do not add formats if html or "*/*"
|
494
583
|
|
495
|
-
### 1.3.3
|
584
|
+
### 1.3.3 - 2011-04-20
|
496
585
|
|
497
586
|
* bug fix
|
498
587
|
* Explicitly mark the token as expired if so
|
499
588
|
|
500
|
-
### 1.3.2
|
589
|
+
### 1.3.2 - 2011-04-20
|
501
590
|
|
502
591
|
* bug fix
|
503
592
|
* Fix another regression related to reset_password_sent_at (by @alexdreher)
|
504
593
|
|
505
|
-
### 1.3.1
|
594
|
+
### 1.3.1 - 2011-04-18
|
506
595
|
|
507
596
|
* enhancements
|
508
597
|
* Improve failure_app responses (by @indirect)
|
@@ -511,7 +600,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
511
600
|
* bug fix
|
512
601
|
* Fix a regression that occurred if reset_password_sent_at is not present (by @stevehodgkiss)
|
513
602
|
|
514
|
-
### 1.3.0
|
603
|
+
### 1.3.0 - 2011-04-15
|
515
604
|
|
516
605
|
* enhancements
|
517
606
|
* All controllers can now handle different mime types than html using Responders (by @sikachu)
|
@@ -531,19 +620,19 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
531
620
|
* backward incompatible changes
|
532
621
|
* authentication_keys are no longer considered when creating the e-mail validations, the previous behavior was buggy. You must double check if you were relying on such behavior.
|
533
622
|
|
534
|
-
### 1.2.1
|
623
|
+
### 1.2.1 - 2011-03-27
|
535
624
|
|
536
625
|
* enhancements
|
537
626
|
* Improve update path messages
|
538
627
|
|
539
|
-
### 1.2.0
|
628
|
+
### 1.2.0 - 2011-03-24
|
540
629
|
|
541
630
|
* bug fix
|
542
631
|
* Properly ignore path prefix on omniauthable
|
543
632
|
* Faster uniqueness queries
|
544
633
|
* Rename active? to active_for_authentication? to avoid conflicts
|
545
634
|
|
546
|
-
### 1.2.rc2
|
635
|
+
### 1.2.rc2 - 2011-03-10
|
547
636
|
|
548
637
|
* enhancements
|
549
638
|
* Make friendly_token 20 chars long
|
@@ -573,7 +662,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
573
662
|
* Removed --haml and --slim view templates
|
574
663
|
* Devise::OmniAuth helpers were deprecated and removed in favor of Omniauth.config.test_mode
|
575
664
|
|
576
|
-
### 1.2.rc
|
665
|
+
### 1.2.rc - 2010-10-25
|
577
666
|
|
578
667
|
* deprecations
|
579
668
|
* cookie_domain is deprecated in favor of cookie_options
|
@@ -611,13 +700,13 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
611
700
|
* Ensure namespaces has proper scoped views
|
612
701
|
* Ensure Devise does not set empty flash messages (by @sxross)
|
613
702
|
|
614
|
-
### 1.1.6
|
703
|
+
### 1.1.6 - 2011-02-14
|
615
704
|
|
616
705
|
* Use a more secure e-mail regexp
|
617
706
|
* Implement Rails 3.0.4 handle unverified request
|
618
707
|
* Use secure_compare to compare passwords
|
619
708
|
|
620
|
-
### 1.1.5
|
709
|
+
### 1.1.5 - 2010-11-26
|
621
710
|
|
622
711
|
* bugfix
|
623
712
|
* Ensure to convert keys on indifferent hash
|
@@ -625,12 +714,12 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
625
714
|
* defaults
|
626
715
|
* Set config.http_authenticatable to false to avoid confusion
|
627
716
|
|
628
|
-
### 1.1.4
|
717
|
+
### 1.1.4 - 2010-11-25
|
629
718
|
|
630
719
|
* bugfix
|
631
720
|
* Avoid session fixation attacks
|
632
721
|
|
633
|
-
### 1.1.3
|
722
|
+
### 1.1.3 - 2010-09-23
|
634
723
|
|
635
724
|
* bugfix
|
636
725
|
* Add reply-to to e-mail headers by default
|
@@ -641,17 +730,17 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
641
730
|
* Fix for failed first-ever logins on PostgreSQL where column default is nil (by @bensie)
|
642
731
|
* :default options is now honored in migrations
|
643
732
|
|
644
|
-
### 1.1.2
|
733
|
+
### 1.1.2 - 2010-08-25
|
645
734
|
|
646
735
|
* bugfix
|
647
736
|
* Compatibility with latest Rails routes schema
|
648
737
|
|
649
|
-
### 1.1.1
|
738
|
+
### 1.1.1 - 2010-07-26
|
650
739
|
|
651
740
|
* bugfix
|
652
741
|
* Fix a small bug where generated locale file was empty on devise:install
|
653
742
|
|
654
|
-
### 1.1.0
|
743
|
+
### 1.1.0 - 2010-07-25
|
655
744
|
|
656
745
|
* enhancements
|
657
746
|
* Rememberable module allows user to be remembered across browsers and is enabled by default (by @trevorturk)
|
@@ -671,7 +760,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
671
760
|
* deprecations
|
672
761
|
* use_default_scope is deprecated and has no effect. Use :as or :devise_scope in the router instead
|
673
762
|
|
674
|
-
### 1.1.rc2
|
763
|
+
### 1.1.rc2 - 2010-06-22
|
675
764
|
|
676
765
|
* enhancements
|
677
766
|
* Allow to set cookie domain for the remember token. (by @mantas)
|
@@ -689,7 +778,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
689
778
|
* devise.mailer.user.confirmations_instructions now should be devise.mailer.confirmations_instructions.user_subject
|
690
779
|
* Generators now use Rails 3 syntax (devise:install) instead of devise_install
|
691
780
|
|
692
|
-
### 1.1.rc1
|
781
|
+
### 1.1.rc1 - 2010-04-14
|
693
782
|
|
694
783
|
* enhancements
|
695
784
|
* Rails 3 compatibility
|
@@ -721,7 +810,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
721
810
|
* All messages under devise.sessions, except :signed_in and :signed_out, should be moved to devise.failure
|
722
811
|
* :as and :scope in routes is deprecated. Use :path and :singular instead
|
723
812
|
|
724
|
-
### 1.0.8
|
813
|
+
### 1.0.8 - 2010-06-22
|
725
814
|
|
726
815
|
* enhancements
|
727
816
|
* Support for latest MongoMapper
|
@@ -730,7 +819,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
730
819
|
* bug fix
|
731
820
|
* confirmation_required? is properly honored on active? calls. (by @paulrosania)
|
732
821
|
|
733
|
-
### 1.0.7
|
822
|
+
### 1.0.7 - 2010-05-02
|
734
823
|
|
735
824
|
* bug fix
|
736
825
|
* Ensure password confirmation is always required
|
@@ -739,14 +828,14 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
739
828
|
* authenticatable was deprecated and renamed to database_authenticatable
|
740
829
|
* confirmable is not included by default on generation
|
741
830
|
|
742
|
-
### 1.0.6
|
831
|
+
### 1.0.6 - 2010-04-02
|
743
832
|
|
744
833
|
* bug fix
|
745
834
|
* Do not allow unlockable strategies based on time to access a controller.
|
746
835
|
* Do not send unlockable email several times.
|
747
836
|
* Allow controller to upstram custom! failures to Warden.
|
748
837
|
|
749
|
-
### 1.0.5
|
838
|
+
### 1.0.5 - 2010-03-25
|
750
839
|
|
751
840
|
* bug fix
|
752
841
|
* Use prepend_before_filter in require_no_authentication.
|
@@ -754,19 +843,19 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
754
843
|
* Fix a bug when giving an association proxy to devise.
|
755
844
|
* Do not use lock! on lockable since it's part of ActiveRecord API.
|
756
845
|
|
757
|
-
### 1.0.4
|
846
|
+
### 1.0.4 - 2010-03-02
|
758
847
|
|
759
848
|
* bug fix
|
760
849
|
* Fixed a bug when deleting an account with rememberable
|
761
850
|
* Fixed a bug with custom controllers
|
762
851
|
|
763
|
-
### 1.0.3
|
852
|
+
### 1.0.3 - 2010-02-22
|
764
853
|
|
765
854
|
* enhancements
|
766
855
|
* HTML e-mails now have proper formatting
|
767
856
|
* Do not remove MongoMapper options in find
|
768
857
|
|
769
|
-
### 1.0.2
|
858
|
+
### 1.0.2 - 2010-02-17
|
770
859
|
|
771
860
|
* enhancements
|
772
861
|
* Allows you set mailer content type (by @glennr)
|
@@ -774,7 +863,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
774
863
|
* bug fix
|
775
864
|
* Uses the same content type as request on http authenticatable 401 responses
|
776
865
|
|
777
|
-
### 1.0.1
|
866
|
+
### 1.0.1 - 2010-02-16
|
778
867
|
|
779
868
|
* enhancements
|
780
869
|
* HttpAuthenticatable is not added by default automatically.
|
@@ -783,7 +872,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
783
872
|
* bug fix
|
784
873
|
* Fixed encryptors autoload
|
785
874
|
|
786
|
-
### 1.0.0
|
875
|
+
### 1.0.0 - 2010-02-08
|
787
876
|
|
788
877
|
* deprecation
|
789
878
|
* :old_password in update_with_password is deprecated, use :current_password instead
|
@@ -794,7 +883,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
794
883
|
* Allow scoped_views to be customized per controller/mailer class
|
795
884
|
* Allow authenticatable to used in change_table statements
|
796
885
|
|
797
|
-
### 0.9.2
|
886
|
+
### 0.9.2 - 2010-02-04
|
798
887
|
|
799
888
|
* bug fix
|
800
889
|
* Ensure inactive user cannot sign in
|
@@ -804,13 +893,13 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
804
893
|
* Added gemspec to repo
|
805
894
|
* Added token authenticatable (by @grimen)
|
806
895
|
|
807
|
-
### 0.9.1
|
896
|
+
### 0.9.1 - 2010-01-24
|
808
897
|
|
809
898
|
* bug fix
|
810
899
|
* Allow bigger salt size (by @jgeiger)
|
811
900
|
* Fix relative url root
|
812
901
|
|
813
|
-
### 0.9.0
|
902
|
+
### 0.9.0 - 2010-01-20
|
814
903
|
|
815
904
|
* deprecation
|
816
905
|
* devise :all is deprecated
|
@@ -827,7 +916,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
827
916
|
* Accept path prefix not starting with slash
|
828
917
|
* url helpers should rely on find_scope!
|
829
918
|
|
830
|
-
### 0.8.2
|
919
|
+
### 0.8.2 - 2010-01-12
|
831
920
|
|
832
921
|
* enhancements
|
833
922
|
* Allow Devise.mailer_sender to be a proc (by @grimen)
|
@@ -835,7 +924,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
835
924
|
* bug fix
|
836
925
|
* Fix bug with passenger, update is required to anyone deploying on passenger (by @dvdpalm)
|
837
926
|
|
838
|
-
### 0.8.1
|
927
|
+
### 0.8.1 - 2010-01-07
|
839
928
|
|
840
929
|
* enhancements
|
841
930
|
* Move salt to encryptors
|
@@ -845,7 +934,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
845
934
|
* bug fix
|
846
935
|
* Bcrypt generator was not being loaded neither setting the proper salt
|
847
936
|
|
848
|
-
### 0.8.0
|
937
|
+
### 0.8.0 - 2010-01-06
|
849
938
|
|
850
939
|
* enhancements
|
851
940
|
* Warden 0.8.0 compatibility
|
@@ -859,19 +948,19 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
859
948
|
* deprecation
|
860
949
|
* Removed DeviseMailer.sender
|
861
950
|
|
862
|
-
### 0.7.5
|
951
|
+
### 0.7.5 - 2010-01-01
|
863
952
|
|
864
953
|
* enhancements
|
865
954
|
* Set a default value for mailer to avoid find_template issues
|
866
955
|
* Add models configuration to MongoMapper::EmbeddedDocument as well
|
867
956
|
|
868
|
-
### 0.7.4
|
957
|
+
### 0.7.4 - 2009-12-21
|
869
958
|
|
870
959
|
* enhancements
|
871
960
|
* Extract Activatable from Confirmable
|
872
961
|
* Decouple Serializers from Devise modules
|
873
962
|
|
874
|
-
### 0.7.3
|
963
|
+
### 0.7.3 - 2009-12-15
|
875
964
|
|
876
965
|
* bug fix
|
877
966
|
* Give scope to the proper model validation
|
@@ -881,7 +970,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
881
970
|
* Added update_with_password for authenticatable
|
882
971
|
* Allow render_with_scope to accept :controller option
|
883
972
|
|
884
|
-
### 0.7.2
|
973
|
+
### 0.7.2 - 2009-12-14
|
885
974
|
|
886
975
|
* deprecation
|
887
976
|
* Renamed reset_confirmation! to resend_confirmation!
|
@@ -891,12 +980,12 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
891
980
|
* Fixed render_with_scope to work with all controllers
|
892
981
|
* Allow sign in with two different users in Devise::TestHelpers
|
893
982
|
|
894
|
-
### 0.7.1
|
983
|
+
### 0.7.1 - 2009-12-09
|
895
984
|
|
896
985
|
* enhancements
|
897
986
|
* Small enhancements for other plugins compatibility (by @grimen)
|
898
987
|
|
899
|
-
### 0.7.0
|
988
|
+
### 0.7.0 - 2009-12-08
|
900
989
|
|
901
990
|
* deprecations
|
902
991
|
* :authenticatable is not included by default anymore
|
@@ -905,25 +994,25 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
905
994
|
* Improve loading process
|
906
995
|
* Extract SessionSerializer from Authenticatable
|
907
996
|
|
908
|
-
### 0.6.3
|
997
|
+
### 0.6.3 - 2009-12-02
|
909
998
|
|
910
999
|
* bug fix
|
911
1000
|
* Added trackable to migrations
|
912
1001
|
* Allow inflections to work
|
913
1002
|
|
914
|
-
### 0.6.2
|
1003
|
+
### 0.6.2 - 2009-11-25
|
915
1004
|
|
916
1005
|
* enhancements
|
917
1006
|
* More DataMapper compatibility
|
918
1007
|
* Devise::Trackable - track sign in count, timestamps and ips
|
919
1008
|
|
920
|
-
### 0.6.1
|
1009
|
+
### 0.6.1 - 2009-11-24
|
921
1010
|
|
922
1011
|
* enhancements
|
923
1012
|
* Devise::Timeoutable - timeout sessions without activity
|
924
1013
|
* DataMapper now accepts conditions
|
925
1014
|
|
926
|
-
### 0.6.0
|
1015
|
+
### 0.6.0 - 2009-11-22
|
927
1016
|
|
928
1017
|
* deprecations
|
929
1018
|
* :authenticatable is still included by default, but yields a deprecation warning
|
@@ -934,19 +1023,19 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
934
1023
|
* Allow a strategy to be placed after authenticatable
|
935
1024
|
* Do not rely attribute? methods, since they are not added on Datamapper
|
936
1025
|
|
937
|
-
### 0.5.6
|
1026
|
+
### 0.5.6 - 2009-11-21
|
938
1027
|
|
939
1028
|
* enhancements
|
940
1029
|
* Do not send nil to build (DataMapper compatibility)
|
941
1030
|
* Allow to have scoped views
|
942
1031
|
|
943
|
-
### 0.5.5
|
1032
|
+
### 0.5.5 - 2009-11-20
|
944
1033
|
|
945
1034
|
* enhancements
|
946
1035
|
* Allow overwriting find for authentication method
|
947
1036
|
* Remove Ruby 1.8.7 dependency
|
948
1037
|
|
949
|
-
### 0.5.4
|
1038
|
+
### 0.5.4 - 2009-11-19
|
950
1039
|
|
951
1040
|
* deprecations
|
952
1041
|
* Deprecate :singular in devise_for and use :scope instead
|
@@ -957,7 +1046,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
957
1046
|
* Create sign_in_and_redirect and sign_out_and_redirect helpers
|
958
1047
|
* Warden::Manager.default_scope is automatically configured to the first given scope
|
959
1048
|
|
960
|
-
### 0.5.3
|
1049
|
+
### 0.5.3 - 2009-11-18
|
961
1050
|
|
962
1051
|
* bug fix
|
963
1052
|
* MongoMapper now converts DateTime to Time
|
@@ -969,20 +1058,20 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
969
1058
|
* Added Devise.apply_schema, so you can turn it to false in Datamapper or MongoMapper
|
970
1059
|
in cases you don't want it be handlded automatically
|
971
1060
|
|
972
|
-
### 0.5.2
|
1061
|
+
### 0.5.2 - 2009-11-17
|
973
1062
|
|
974
1063
|
* enhancements
|
975
1064
|
* Improved sign_in and sign_out helpers to accepts resources
|
976
1065
|
* Added stored_location_for as a helper
|
977
1066
|
* Added test helpers
|
978
1067
|
|
979
|
-
### 0.5.1
|
1068
|
+
### 0.5.1 - 2009-11-15
|
980
1069
|
|
981
1070
|
* enhancements
|
982
1071
|
* Added serializers based on Warden ones
|
983
1072
|
* Allow authentication keys to be set
|
984
1073
|
|
985
|
-
### 0.5.0
|
1074
|
+
### 0.5.0 - 2009-11-13
|
986
1075
|
|
987
1076
|
* bug fix
|
988
1077
|
* Fixed a bug where remember me module was not working properly
|
@@ -992,13 +1081,13 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
992
1081
|
* Implemented encryptors for Clearance, Authlogic and Restful-Authentication (by @mhfs)
|
993
1082
|
* Added support for MongoMapper (by @shingara)
|
994
1083
|
|
995
|
-
### 0.4.3
|
1084
|
+
### 0.4.3 - 2009-11-10
|
996
1085
|
|
997
1086
|
* bug fix
|
998
1087
|
* Authentication just fails if user cannot be serialized from session, without raising errors;
|
999
1088
|
* Default configuration values should not overwrite user values;
|
1000
1089
|
|
1001
|
-
### 0.4.2
|
1090
|
+
### 0.4.2 - 2009-11-06
|
1002
1091
|
|
1003
1092
|
* deprecations
|
1004
1093
|
* Renamed mail_sender to mailer_sender
|
@@ -1010,12 +1099,12 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
1010
1099
|
* Allow :path_prefix to be given to devise_for
|
1011
1100
|
* Allow default_url_options to be configured through devise (:path_prefix => "/:locale" is now supported)
|
1012
1101
|
|
1013
|
-
### 0.4.1
|
1102
|
+
### 0.4.1 - 2009-11-04
|
1014
1103
|
|
1015
1104
|
* bug fix
|
1016
1105
|
* Ensure options can be set even if models were not loaded
|
1017
1106
|
|
1018
|
-
### 0.4.0
|
1107
|
+
### 0.4.0 - 2009-11-03
|
1019
1108
|
|
1020
1109
|
* deprecations
|
1021
1110
|
* Notifier is deprecated, use DeviseMailer instead. Remember to rename
|
@@ -1028,7 +1117,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
1028
1117
|
* Allow Warden::Manager to be configured through Devise
|
1029
1118
|
* Created a generator which creates an initializer
|
1030
1119
|
|
1031
|
-
### 0.3.0
|
1120
|
+
### 0.3.0 - 2009-10-30
|
1032
1121
|
|
1033
1122
|
* bug fix
|
1034
1123
|
* Allow yml messages to be configured by not using engine locales
|
@@ -1038,7 +1127,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
1038
1127
|
* Do not send confirmation messages when user changes their e-mail
|
1039
1128
|
* Renamed authenticable to authenticatable and added deprecation warnings
|
1040
1129
|
|
1041
|
-
### 0.2.3
|
1130
|
+
### 0.2.3 - 2009-10-29
|
1042
1131
|
|
1043
1132
|
* enhancements
|
1044
1133
|
* Ensure fail! works inside strategies
|
@@ -1048,12 +1137,12 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
1048
1137
|
* Do not redirect on invalid authenticate
|
1049
1138
|
* Allow model configuration to be set to nil
|
1050
1139
|
|
1051
|
-
### 0.2.2
|
1140
|
+
### 0.2.2 - 2009-10-28
|
1052
1141
|
|
1053
1142
|
* bug fix
|
1054
1143
|
* Fix a bug when using customized resources
|
1055
1144
|
|
1056
|
-
### 0.2.1
|
1145
|
+
### 0.2.1 - 2009-10-27
|
1057
1146
|
|
1058
1147
|
* refactor
|
1059
1148
|
* Clean devise_views generator to use devise existing views
|
@@ -1065,7 +1154,7 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
1065
1154
|
* bug fix
|
1066
1155
|
* Fix a bug with Mongrel and Ruby 1.8.6
|
1067
1156
|
|
1068
|
-
### 0.2.0
|
1157
|
+
### 0.2.0 - 2009-10-24
|
1069
1158
|
|
1070
1159
|
* enhancements
|
1071
1160
|
* Allow option :null => true in authenticable migration
|
@@ -1080,12 +1169,12 @@ Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.
|
|
1080
1169
|
* bug fixes
|
1081
1170
|
* Fixed requiring devise strategies
|
1082
1171
|
|
1083
|
-
### 0.1.1
|
1172
|
+
### 0.1.1 - 2009-10-21
|
1084
1173
|
|
1085
1174
|
* bug fixes
|
1086
1175
|
* Fixed requiring devise mapping
|
1087
1176
|
|
1088
|
-
### 0.1.0
|
1177
|
+
### 0.1.0 - 2009-10-21
|
1089
1178
|
|
1090
1179
|
* Devise::Authenticable
|
1091
1180
|
* Devise::Confirmable
|