Skip to content

Latest commit

 

History

History
142 lines (123 loc) · 6.97 KB

CHANGELOG.md

File metadata and controls

142 lines (123 loc) · 6.97 KB

Changelog

1.0.0

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 [#4467][] by [@stereoscott[]]

Security Fixes

Bug Fixes

  • Fixes filters for has_many :through relationships #2541 by @shekibobo
  • "New" action item now only shows up on the index page bf659bc by @seanlinsley
  • Fixes comment creation bug with aliased resources 9a082486 by @seanlinsley
  • Fixes the deletion of :if and :unless from filters #2523 by @PChambino

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"

Previous Changes

Please check 0-6-stable for previous changes.