You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
react-rails is using before_filter, which is deprecated in Rails 5 and will disappear in 5.1 :
DEPRECATION WARNING: before_filter is deprecated and will be removed in Rails 5.1. Use before_action instead. (called from block in <module:ControllerLifecycle> at gems/react-rails-290765a1ac14/lib/react/rails/controller_lifecycle.rb:8)
DEPRECATION WARNING: after_filter is deprecated and will be removed in Rails 5.1. Use after_action instead. (called from block in <module:ControllerLifecycle> at gems/react-rails-290765a1ac14/lib/react/rails/controller_lifecycle.rb:9)
before_filter has been renamed to before_action in Rails 4. I dont know what your policy is regarding deprecations like this on not-yet released versions, but I think it might be worth it to switch to the new name and have a compatibility alias for Rails 3.2.
The text was updated successfully, but these errors were encountered:
react-rails is using
before_filter
, which is deprecated in Rails 5 and will disappear in 5.1 :before_filter
has been renamed tobefore_action
in Rails 4. I dont know what your policy is regarding deprecations like this on not-yet released versions, but I think it might be worth it to switch to the new name and have a compatibility alias for Rails 3.2.The text was updated successfully, but these errors were encountered: