Skip to content

1.0.0

Compare
Choose a tag to compare
@varyonic varyonic released this 25 Apr 11:58
· 3758 commits to master since this release

Breaking Changes

Enhancements

Major

Minor

    controller do
      # Redirects to index page instead of rendering updated resource
      def update
        update!{ collection_path }
      end
    end
index download_links: ->{ can?(:view_all_download_links) || [:pdf] }
  • Comments menu can be customized via configuration passed to config.comments_menu. #4187 by @drn
  • Added config.route_options to namespace to customize routes. #4731 by [@stereoscott]

Security Fixes

Bug Fixes

Deprecations

  • ActiveAdmin::Event (ActiveAdmin::EventDispatcher). #3435 by @timoschilling
    ActiveAdmin::Event will be removed in a future version, ActiveAdmin switched
    to use ActiveSupport::Notifications
    NOTE: The blog parameters has changed:
ActiveSupport::Notifications.subscribe ActiveAdmin::Application::BeforeLoadEvent do |event, *args|
  # some code
end

ActiveSupport::Notifications.publish ActiveAdmin::Application::BeforeLoadEvent, "some data"